diff --git a/packages/chain-registry/chain-registry-additions/juno/assetlist.json b/packages/chain-registry/chain-registry-additions/juno/assetlist.json deleted file mode 100644 index 7d4bdc10f..000000000 --- a/packages/chain-registry/chain-registry-additions/juno/assetlist.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "$schema": "../assetlist.schema.json", - "chain_name": "juno", - "assets": [ - { - "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" - } - ] -} \ No newline at end of file diff --git a/packages/chain-registry/chain-registry-additions/osmosis/chain.json b/packages/chain-registry/chain-registry-additions/osmosis/chain.json deleted file mode 100644 index 590664aed..000000000 --- a/packages/chain-registry/chain-registry-additions/osmosis/chain.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "$schema": "../chain.schema.json", - "chain_name": "osmosis", - "apis": { - "rest": [ - { - "address": "https://osmosis.stakesystems.io/", - "provider": "stakesystems" - } - ] - } -} \ No newline at end of file diff --git a/packages/chain-registry/scripts/build.js b/packages/chain-registry/scripts/build.js index 209515706..4cc4d01d7 100644 --- a/packages/chain-registry/scripts/build.js +++ b/packages/chain-registry/scripts/build.js @@ -1,12 +1,12 @@ -const fs = require('fs'); -const deepmerge = require('deepmerge'); -const glob = require('glob').sync; -const path = require('path'); +const fs = require("fs"); +const deepmerge = require("deepmerge"); +const glob = require("glob").sync; +const path = require("path"); -const NON_INFO_DIRS = ['_memo_keys', '_scripts', '_template', '.github']; +const NON_INFO_DIRS = ["_memo_keys", "_scripts", "_template", ".github"]; const paths = glob(`${__dirname}/../chain-registry/**/*.json`).filter((a) => { - let dir = a.split('chain-registry/chain-registry')[1]; + let dir = a.split("chain-registry/chain-registry")[1]; dir = path.basename(path.dirname(dir)); return !NON_INFO_DIRS.includes(dir); }); @@ -15,56 +15,34 @@ const assets = []; const chains = []; const ibcs = []; paths.forEach((file) => { - const data = JSON.parse(fs.readFileSync(file, 'utf-8')); + const data = JSON.parse(fs.readFileSync(file, "utf-8")); if (!data.$schema) { - console.warn('problematic data:'); + console.warn("problematic data:"); console.log(data); return; } - if (data.$schema.endsWith('assetlist.schema.json')) assets.push(data); - if (data.$schema.endsWith('chain.schema.json')) chains.push(data); - if (data.$schema.endsWith('ibc_data.schema.json')) ibcs.push(data); -}); - -const addPaths = glob(`${__dirname}/../chain-registry-additions/**/*.json`); -const addAssets = []; -const addChains = []; -addPaths.forEach((file) => { - const data = JSON.parse(fs.readFileSync(file, 'utf-8')); - if (data.$schema === '../assetlist.schema.json') addAssets.push(data); - if (data.$schema === '../chain.schema.json') addChains.push(data); -}); - -addChains.forEach((chain) => { - const existingChainIndex = chains.findIndex( - (c) => c.chain_name === chain.chain_name - ); - if (existingChainIndex > -1) { - const existingChain = chains[existingChainIndex]; - chains[existingChainIndex] = deepmerge(existingChain, chain); - } else { - chains.push(chain); - } + if (data.$schema.endsWith("assetlist.schema.json")) assets.push(data); + if (data.$schema.endsWith("chain.schema.json")) chains.push(data); + if (data.$schema.endsWith("ibc_data.schema.json")) ibcs.push(data); }); chains.forEach((chain) => { if (!chain.slip44) chain.slip44 = 118; -}); -addAssets.forEach((asset) => { - const existingIndex = assets.findIndex( - (c) => c.chain_name === asset.chain_name - ); - if (existingIndex > -1) { - assets[existingIndex] = deepmerge(assets[existingIndex], asset); - } else { - assets.push(asset); + if (chain.codebase) { + chain.codebase = { + cosmos_sdk_version: chain.codebase.cosmos_sdk_version, + cosmwasm_enabled: chain.codebase.cosmwasm_enabled, + cosmwasm_version: chain.codebase.cosmwasm_version, + }; } + + delete chain.peers; }); const write = (file, json, TypeName, isArray = false) => { const strfy = JSON.stringify(json, null, 2); - const exportType = isArray ? TypeName + '[]' : TypeName; + const exportType = isArray ? TypeName + "[]" : TypeName; fs.writeFileSync( `${__dirname}/../src/${file}.ts`, `import { ${TypeName} } from '@chain-registry/types'; @@ -74,6 +52,6 @@ export default ${file}; ); }; -write(`assets`, assets, 'AssetList', true); -write(`chains`, chains, 'Chain', true); -write(`ibc`, ibcs, 'IBCInfo', true); +write(`assets`, assets, "AssetList", true); +write(`chains`, chains, "Chain", true); +write(`ibc`, ibcs, "IBCInfo", true); diff --git a/packages/chain-registry/src/assets.ts b/packages/chain-registry/src/assets.ts index 2c8a83713..6b48c2194 100644 --- a/packages/chain-registry/src/assets.ts +++ b/packages/chain-registry/src/assets.ts @@ -1,39 +1,40 @@ import { AssetList } from '@chain-registry/types'; const assets: AssetList[] = [ { - $schema: '../assetlist.schema.json', - chain_name: 'aptos', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "aptos", + "assets": [ { - description: - 'Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.', - denom_units: [ + "description": "Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.", + "denom_units": [ { - denom: '0x1::aptos_coin::AptosCoin', - exponent: 0, - aliases: ['Octa'] + "denom": "0x1::aptos_coin::AptosCoin", + "exponent": 0, + "aliases": [ + "Octa" + ] }, { - denom: 'APT', - exponent: 8 + "denom": "APT", + "exponent": 8 } ], - base: '0x1::aptos_coin::AptosCoin', - name: 'Aptos Coin', - display: 'APT', - symbol: 'APT', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + "base": "0x1::aptos_coin::AptosCoin", + "name": "Aptos Coin", + "display": "APT", + "symbol": "APT", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg" }, - coingecko_id: 'aptos', - images: [ + "coingecko_id": "aptos", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg" }, { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg', - theme: { - dark_mode: true + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg", + "theme": { + "dark_mode": true } } ] @@ -41,2297 +42,2336 @@ const assets: AssetList[] = [ ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'arbitrum', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "arbitrum", + "assets": [ { - description: 'Native token of Arbitrum', - type_asset: 'erc20', - address: '0x912CE59144191C1204E64559FE8253a0e49E6548', - denom_units: [ + "description": "Native token of Arbitrum", + "type_asset": "erc20", + "address": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "denom_units": [ { - denom: '0x912CE59144191C1204E64559FE8253a0e49E6548', - exponent: 0, - aliases: ['arb-wei'] + "denom": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "exponent": 0, + "aliases": [ + "arb-wei" + ] }, { - denom: 'arb', - exponent: 18 + "denom": "arb", + "exponent": 18 } ], - base: '0x912CE59144191C1204E64559FE8253a0e49E6548', - name: 'Arbitrum', - display: 'arb', - symbol: 'ARB', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + "base": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "name": "Arbitrum", + "display": "arb", + "symbol": "ARB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" }, - coingecko_id: 'arbitrum', - images: [ + "coingecko_id": "arbitrum", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'avalanche', - 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', - images: [ + "coingecko_id": "avalanche-2", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg" } ] }, { - description: - 'The 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', - traces: [ + "base": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", + "name": "Wrapped AVAX", + "display": "wavax", + "symbol": "WAVAX", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'avalanche', - base_denom: 'wei' + "type": "wrapped", + "counterparty": { + "chain_name": "avalanche", + "base_denom": "wei" }, - provider: 'Avalanche' + "provider": "Avalanche" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" }, - coingecko_id: 'wrapped-avax', - images: [ + "coingecko_id": "wrapped-avax", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.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: '0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E', - 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": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "denom_units": [ { - denom: '0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E', - exponent: 0, - aliases: ['uusdc'] + "denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - base: '0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E', - name: 'USD Coin', - display: 'usdc', - symbol: 'USDC', - traces: [ + "base": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'additional-mintage', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - provider: 'Circle' + "provider": "Circle" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - coingecko_id: 'usd-coin', - images: [ + "coingecko_id": "usd-coin", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.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: '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', - traces: [ + "base": "0xc5fa5669e326da8b2c35540257cd48811f40a36b", + "name": "Axelar Wrapped DAI", + "display": "axldai", + "symbol": "axlDAI", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'dai-wei' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "dai-wei" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_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', - traces: [ + "base": "0x4914886dbb8aad7a7456d471eaab10b06d42348d", + "name": "Axelar Wrapped Frax", + "display": "axlfrax", + "symbol": "axlFRAX", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'frax-wei' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "frax-wei" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/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', - traces: [ + "base": "0xfab550568C688d5d8a52c7d794cb93edc26ec0ec", + "name": "Axelar Wrapped USDC", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'uusdc' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdc" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_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', - traces: [ + "base": "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66", + "name": "Axelar Wrapped USDT", + "display": "axlusdt", + "symbol": "axlUSDT", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'uusdt' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdt" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'binancesmartchain', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "binancesmartchain", + "assets": [ { - description: - 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.', - denom_units: [ + "description": "BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.", + "denom_units": [ { - denom: 'wei', - exponent: 0 + "denom": "wei", + "exponent": 0 }, { - denom: 'bnb', - exponent: 18 + "denom": "bnb", + "exponent": 18 } ], - base: 'wei', - name: 'Binance Coin', - display: 'bnb', - symbol: 'BNB', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + "base": "wei", + "name": "Binance Coin", + "display": "bnb", + "symbol": "BNB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" }, - coingecko_id: 'binancecoin', - images: [ + "coingecko_id": "binancecoin", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" } ] }, { - description: - 'Wrapped BNB. As the native coin of Binance Chain, BNB has multiple use cases: fueling transactions on the Chain, paying for transaction fees on Binance Exchange, making in-store payments, and many more.', - type_asset: 'erc20', - address: '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c', - denom_units: [ + "description": "Wrapped BNB. As the native coin of Binance Chain, BNB has multiple use cases: fueling transactions on the Chain, paying for transaction fees on Binance Exchange, making in-store payments, and many more.", + "type_asset": "erc20", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "denom_units": [ { - denom: '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c', - exponent: 0 + "denom": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "exponent": 0 }, { - denom: 'wbnb', - exponent: 18 + "denom": "wbnb", + "exponent": 18 } ], - base: '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c', - name: 'Wrapped BNB', - display: 'wbnb', - symbol: 'WBNB', - traces: [ + "base": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'binancesmartchain', - base_denom: 'wei' + "type": "wrapped", + "counterparty": { + "chain_name": "binancesmartchain", + "base_denom": "wei" }, - chain: { - contract: '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c' + "chain": { + "contract": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c" }, - provider: 'Binance' + "provider": "Binance" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" }, - coingecko_id: 'wbnb', - images: [ + "coingecko_id": "wbnb", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" } ] }, { - description: - 'BUSD is a 1:1 USD-backed stablecoin approved by NYDFS and issued by Paxos on Ethereum. Binance provides Binance-Peg BUSD on other chains by locking an equivalent amount of assets on Ethereum. Note that Binance-Peg BUSD is provided by Binance, which is not issued by Paxos nor regulated by the NYDFS.', - denom_units: [ + "description": "BUSD is a 1:1 USD-backed stablecoin approved by NYDFS and issued by Paxos on Ethereum. Binance provides Binance-Peg BUSD on other chains by locking an equivalent amount of assets on Ethereum. Note that Binance-Peg BUSD is provided by Binance, which is not issued by Paxos nor regulated by the NYDFS.", + "denom_units": [ { - denom: '0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56', - exponent: 0 + "denom": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "exponent": 0 }, { - denom: 'busd', - exponent: 18 + "denom": "busd", + "exponent": 18 } ], - type_asset: 'erc20', - address: '0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56', - base: '0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56', - name: 'Binance-Peg BUSD Token', - display: 'busd', - symbol: 'BUSD', - traces: [ + "type_asset": "erc20", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "base": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "name": "Binance-Peg BUSD Token", + "display": "busd", + "symbol": "BUSD", + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + "type": "synthetic", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - provider: 'Binance' + "provider": "Binance" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" } ] }, { - description: - 'USD Coin (known by its ticker USDC) is a stablecoin that is pegged to the U.S. dollar on a 1:1 basis.', - denom_units: [ + "description": "USD Coin (known by its ticker USDC) is a stablecoin that is pegged to the U.S. dollar on a 1:1 basis.", + "denom_units": [ { - denom: '0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d', - exponent: 0 + "denom": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d", + "exponent": 0 }, { - denom: 'usdc', - exponent: 18 + "denom": "usdc", + "exponent": 18 } ], - type_asset: 'erc20', - address: '0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d', - base: '0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d', - name: 'Binance-Peg USD Coin', - display: 'usdc', - symbol: 'USDC', - traces: [ + "type_asset": "erc20", + "address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d", + "base": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d", + "name": "Binance-Peg USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x4fabb145d64652a948d72533023f6e7a623c7c53' + "type": "synthetic", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x4fabb145d64652a948d72533023f6e7a623c7c53" }, - provider: 'Binance' + "provider": "Binance" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] }, { - description: 'PURSE Token', - denom_units: [ + "description": "PURSE Token", + "denom_units": [ { - denom: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C', - exponent: 0 + "denom": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", + "exponent": 0 }, { - denom: 'PURSE', - exponent: 18 + "denom": "PURSE", + "exponent": 18 } ], - type_asset: 'erc20', - address: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C', - base: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C', - name: 'PURSE Token', - display: 'PURSE', - symbol: 'PURSE', - coingecko_id: 'pundi-x-purse', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + "type_asset": "erc20", + "address": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", + "base": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", + "name": "PURSE Token", + "display": "PURSE", + "symbol": "PURSE", + "coingecko_id": "pundi-x-purse", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'bitcoin', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "bitcoin", + "assets": [ { - description: 'Bitcoin', - denom_units: [ + "description": "Bitcoin", + "denom_units": [ { - denom: 'sat', - exponent: 0 + "denom": "sat", + "exponent": 0 }, { - denom: 'btc', - exponent: 8 + "denom": "btc", + "exponent": 8 } ], - base: 'sat', - name: 'Bitcoin', - display: 'btc', - symbol: 'BTC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png' + "base": "sat", + "name": "Bitcoin", + "display": "btc", + "symbol": "BTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png" }, - coingecko_id: 'bitcoin', - images: [ + "coingecko_id": "bitcoin", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'composablepolkadot', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "composablepolkadot", + "assets": [ { - denom_units: [ + "denom_units": [ { - denom: '79228162514264337593543950342', - exponent: 0 + "denom": "79228162514264337593543950342", + "exponent": 0 }, { - denom: 'dot', - exponent: 10 + "denom": "dot", + "exponent": 10 } ], - base: '79228162514264337593543950342', - name: 'Polkadot', - display: 'dot', - symbol: 'DOT', - traces: [ + "base": "79228162514264337593543950342", + "name": "Polkadot", + "display": "dot", + "symbol": "DOT", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'polkadot', - base_denom: 'Planck' + "type": "bridge", + "counterparty": { + "chain_name": "polkadot", + "base_denom": "Planck" }, - provider: 'Polkadot Relay' + "provider": "Polkadot Relay" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'polkadot', - base_denom: 'Planck' + "image_sync": { + "chain_name": "polkadot", + "base_denom": "Planck" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'ethereum', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "ethereum", + "assets": [ { - description: - "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", - denom_units: [ + "description": "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", + "denom_units": [ { - denom: '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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + "base": "wei", + "name": "Ether", + "display": "eth", + "symbol": "ETH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" }, - coingecko_id: 'ethereum', - images: [ + "coingecko_id": "ethereum", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" } ] }, { - description: - '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', - images: [ + "coingecko_id": "aave", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" } ] }, { - 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', - images: [ + "coingecko_id": "apecoin", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" } ] }, { - 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', - images: [ + "coingecko_id": "axie-infinity", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.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: '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', - traces: [ + "base": "0x6b175474e89094c44da98b954eedeac495271d0f", + "name": "Dai Stablecoin", + "display": "dai", + "symbol": "DAI", + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'forex', - base_denom: 'USD' + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" }, - provider: 'MakerDAO' + "provider": "MakerDAO" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" }, - coingecko_id: 'dai', - images: [ + "coingecko_id": "dai", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" } ] }, { - description: - 'sDAI is a liquid representation of DAI deposited in the Dai savings rate contract.', - type_asset: 'erc20', - address: '0x83F20F44975D03b1b09e64809B757c47f942BEeA', - denom_units: [ + "description": "sDAI is a liquid representation of DAI deposited in the Dai savings rate contract.", + "type_asset": "erc20", + "address": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "denom_units": [ { - denom: '0x83F20F44975D03b1b09e64809B757c47f942BEeA', - exponent: 0, - aliases: ['sdai-wei'] + "denom": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "exponent": 0, + "aliases": [ + "sdai-wei" + ] }, { - denom: 'sdai', - exponent: 18 + "denom": "sdai", + "exponent": 18 } ], - base: '0x83F20F44975D03b1b09e64809B757c47f942BEeA', - name: 'Savings Dai', - display: 'sdai', - symbol: 'sDAI', - traces: [ + "base": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "name": "Savings Dai", + "display": "sdai", + "symbol": "sDAI", + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x6b175474e89094c44da98b954eedeac495271d0f' + "type": "synthetic", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" }, - provider: 'MakerDAO' + "provider": "MakerDAO" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg" }, - coingecko_id: 'dai', - images: [ + "coingecko_id": "dai", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.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: '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', - traces: [ + "base": "0x853d955acef822db058eb8505911ed77f175b99e", + "name": "Frax", + "display": "frax", + "symbol": "FRAX", + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'forex', - base_denom: 'USD' + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" }, - provider: 'Frax Protocol' + "provider": "Frax Protocol" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" }, - coingecko_id: 'frax', - images: [ + "coingecko_id": "frax", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" } ] }, { - 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', - images: [ + "coingecko_id": "chainlink", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" } ] }, { - 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', - images: [ + "coingecko_id": "maker", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" } ] }, { - description: - "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", - 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', - traces: [ + "base": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", + "name": "Rai Reflex Index", + "display": "rai", + "symbol": "RAI", + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'forex', - base_denom: 'USD' + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" }, - provider: 'RAI Finance' + "provider": "RAI Finance" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" }, - coingecko_id: 'rai', - images: [ + "coingecko_id": "rai", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" } ] }, { - 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', - images: [ + "coingecko_id": "shiba-inu", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" } ] }, { - 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', - traces: [ + "base": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", + "name": "Lido Staked Ether", + "display": "steth", + "symbol": "stETH", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'ethereum', - base_denom: 'wei' + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" }, - provider: 'Lido' + "provider": "Lido" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" }, - coingecko_id: 'staked-ether', - images: [ + "coingecko_id": "staked-ether", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" } ] }, { - description: - 'wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.', - type_asset: 'erc20', - address: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', - denom_units: [ + "description": "wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.", + "type_asset": "erc20", + "address": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "denom_units": [ { - denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', - exponent: 0, - aliases: ['wsteth-wei'] + "denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "exponent": 0, + "aliases": [ + "wsteth-wei" + ] }, { - denom: 'wsteth', - exponent: 18 + "denom": "wsteth", + "exponent": 18 } ], - base: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0', - name: 'Wrapped Lido Staked Ether', - display: 'wsteth', - symbol: 'wstETH', - traces: [ + "base": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "name": "Wrapped Lido Staked Ether", + "display": "wsteth", + "symbol": "wstETH", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xae7ab96520de3a18e5e111b5eaab095312d7fe84' + "type": "wrapped", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84" }, - provider: 'Lido' + "provider": "Lido" } ], - coingecko_id: 'wrapped-steth', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + "coingecko_id": "wrapped-steth", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" } ] }, { - description: - "Frax Ether is a liquid ETH staking derivative designed to uniquely leverage the Frax Finance ecosystem. frxETH acts as a stablecoin loosely pegged to ETH, leveraging Frax's winning playbook on stablecoins and onboarding ETH into the Frax ecosystem.", - type_asset: 'erc20', - address: '0x5e8422345238f34275888049021821e8e08caa1f', - denom_units: [ + "description": "Frax Ether is a liquid ETH staking derivative designed to uniquely leverage the Frax Finance ecosystem. frxETH acts as a stablecoin loosely pegged to ETH, leveraging Frax's winning playbook on stablecoins and onboarding ETH into the Frax ecosystem.", + "type_asset": "erc20", + "address": "0x5e8422345238f34275888049021821e8e08caa1f", + "denom_units": [ { - denom: '0x5e8422345238f34275888049021821e8e08caa1f', - exponent: 0, - aliases: ['frxeth-wei'] + "denom": "0x5e8422345238f34275888049021821e8e08caa1f", + "exponent": 0, + "aliases": [ + "frxeth-wei" + ] }, { - denom: 'frxeth', - exponent: 18 + "denom": "frxeth", + "exponent": 18 } ], - base: '0x5e8422345238f34275888049021821e8e08caa1f', - name: 'Frax Ether', - display: 'frxeth', - symbol: 'frxETH', - traces: [ + "base": "0x5e8422345238f34275888049021821e8e08caa1f", + "name": "Frax Ether", + "display": "frxeth", + "symbol": "frxETH", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'ethereum', - base_denom: 'wei' + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" }, - provider: 'Frax' + "provider": "Frax" } ], - coingecko_id: 'frax-ether', - images: [ + "coingecko_id": "frax-ether", + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: 'wei' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "wei" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" } }, { - description: - "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", - type_asset: 'erc20', - address: '0xac3e018457b222d93114458476f3e3416abbe38f', - denom_units: [ + "description": "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", + "type_asset": "erc20", + "address": "0xac3e018457b222d93114458476f3e3416abbe38f", + "denom_units": [ { - denom: '0xac3e018457b222d93114458476f3e3416abbe38f', - exponent: 0, - aliases: ['sfrxeth-wei'] + "denom": "0xac3e018457b222d93114458476f3e3416abbe38f", + "exponent": 0, + "aliases": [ + "sfrxeth-wei" + ] }, { - denom: 'sfrxeth', - exponent: 18 + "denom": "sfrxeth", + "exponent": 18 } ], - base: '0xac3e018457b222d93114458476f3e3416abbe38f', - name: 'Staked Frax Ether', - display: 'sfrxeth', - symbol: 'sfrxETH', - traces: [ + "base": "0xac3e018457b222d93114458476f3e3416abbe38f", + "name": "Staked Frax Ether", + "display": "sfrxeth", + "symbol": "sfrxETH", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x5e8422345238f34275888049021821e8e08caa1f' + "type": "wrapped", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x5e8422345238f34275888049021821e8e08caa1f" }, - provider: 'Frax' + "provider": "Frax" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" }, - coingecko_id: 'staked-frax-ether', - images: [ + "coingecko_id": "staked-frax-ether", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" } ] }, { - description: - 'Rocket Pool is a decentralised Ethereum Proof of Stake pool.', - type_asset: 'erc20', - address: '0xae78736cd615f374d3085123a210448e74fc6393', - denom_units: [ + "description": "Rocket Pool is a decentralised Ethereum Proof of Stake pool.", + "type_asset": "erc20", + "address": "0xae78736cd615f374d3085123a210448e74fc6393", + "denom_units": [ { - denom: '0xae78736cd615f374d3085123a210448e74fc6393', - exponent: 0, - aliases: ['reth-wei'] + "denom": "0xae78736cd615f374d3085123a210448e74fc6393", + "exponent": 0, + "aliases": [ + "reth-wei" + ] }, { - denom: 'reth', - exponent: 18 + "denom": "reth", + "exponent": 18 } ], - base: '0xae78736cd615f374d3085123a210448e74fc6393', - name: 'Rocket Pool Ether', - display: 'reth', - symbol: 'rETH', - traces: [ + "base": "0xae78736cd615f374d3085123a210448e74fc6393", + "name": "Rocket Pool Ether", + "display": "reth", + "symbol": "rETH", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'ethereum', - base_denom: 'wei' + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" }, - provider: 'Rocket Pool' + "provider": "Rocket Pool" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" }, - coingecko_id: 'rocket-pool-eth', - images: [ + "coingecko_id": "rocket-pool-eth", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" } ] }, { - description: - 'Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.', - type_asset: 'erc20', - address: '0xbe9895146f7af43049ca1c1ae358b0541ea49704', - denom_units: [ + "description": "Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.", + "type_asset": "erc20", + "address": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "denom_units": [ { - denom: '0xbe9895146f7af43049ca1c1ae358b0541ea49704', - exponent: 0, - aliases: ['cbeth-wei'] + "denom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "exponent": 0, + "aliases": [ + "cbeth-wei" + ] }, { - denom: 'cbeth', - exponent: 18 + "denom": "cbeth", + "exponent": 18 } ], - base: '0xbe9895146f7af43049ca1c1ae358b0541ea49704', - name: 'Coinbase Wrapped Staked ETH', - display: 'cbeth', - symbol: 'cbETH', - traces: [ + "base": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "name": "Coinbase Wrapped Staked ETH", + "display": "cbeth", + "symbol": "cbETH", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'ethereum', - base_denom: 'wei' + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" }, - provider: 'Coinbase' + "provider": "Coinbase" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" }, - coingecko_id: 'coinbase-wrapped-staked-eth', - images: [ + "coingecko_id": "coinbase-wrapped-staked-eth", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" } ] }, { - 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', - images: [ + "coingecko_id": "uniswap", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.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: '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', - traces: [ + "base": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'forex', - base_denom: 'USD' + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" }, - provider: 'Circle' + "provider": "Circle" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - coingecko_id: 'usd-coin', - images: [ + "coingecko_id": "usd-coin", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_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: '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', - traces: [ + "base": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'forex', - base_denom: 'USD' + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" }, - provider: 'Tether' + "provider": "Tether" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" }, - coingecko_id: 'tether', - images: [ + "coingecko_id": "tether", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ] }, { - 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', - traces: [ + "base": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "name": "Wrapped Bitcoin", + "display": "wbtc", + "symbol": "WBTC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'bitcoin', - base_denom: 'sat' + "type": "bridge", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" }, - provider: 'BitGo, Kyber, and Ren' + "provider": "BitGo, Kyber, and Ren" } ], - 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' + "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', - images: [ + "coingecko_id": "wrapped-bitcoin", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" } ] }, { - description: "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', - traces: [ + "base": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "WETH", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'ethereum', - base_denom: 'wei' + "type": "wrapped", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" }, - provider: 'Ethereum' + "provider": "Ethereum" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" }, - coingecko_id: 'weth', - images: [ + "coingecko_id": "weth", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } ] }, { - 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', - images: [ + "coingecko_id": "chain-2", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" } ] }, { - description: - 'Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.', - type_asset: 'erc20', - address: '0x4fabb145d64652a948d72533023f6e7a623c7c53', - denom_units: [ + "description": "Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.", + "type_asset": "erc20", + "address": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "denom_units": [ { - denom: '0x4fabb145d64652a948d72533023f6e7a623c7c53', - exponent: 0, - aliases: ['busd-wei'] + "denom": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "exponent": 0, + "aliases": [ + "busd-wei" + ] }, { - denom: 'busd', - exponent: 18 + "denom": "busd", + "exponent": 18 } ], - base: '0x4fabb145d64652a948d72533023f6e7a623c7c53', - name: 'Binance USD', - display: 'busd', - symbol: 'BUSD', - traces: [ + "base": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "name": "Binance USD", + "display": "busd", + "symbol": "BUSD", + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'forex', - base_denom: 'USD' + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" }, - provider: 'Binance' + "provider": "Binance" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg" }, - coingecko_id: 'binance-usd', - images: [ + "coingecko_id": "binance-usd", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg" } ] }, { - description: '', - type_asset: 'erc20', - address: '0x6982508145454Ce325dDbE47a25d4ec3d2311933', - denom_units: [ + "description": "", + "type_asset": "erc20", + "address": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "denom_units": [ { - denom: '0x6982508145454Ce325dDbE47a25d4ec3d2311933', - exponent: 0, - aliases: ['pepe-wei'] + "denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "exponent": 0, + "aliases": [ + "pepe-wei" + ] }, { - denom: 'pepe', - exponent: 18 + "denom": "pepe", + "exponent": 18 } ], - base: '0x6982508145454Ce325dDbE47a25d4ec3d2311933', - name: 'Pepe', - display: 'pepe', - symbol: 'PEPE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + "base": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "name": "Pepe", + "display": "pepe", + "symbol": "PEPE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg" }, - coingecko_id: 'pepe', - images: [ + "coingecko_id": "pepe", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg" } ] }, { - description: - 'Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.', - type_asset: 'erc20', - address: '0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec', - denom_units: [ + "description": "Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.", + "type_asset": "erc20", + "address": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec", + "denom_units": [ { - denom: '0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec', - exponent: 0 + "denom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec", + "exponent": 0 }, { - denom: 'YieldETH', - exponent: 18 + "denom": "YieldETH", + "exponent": 18 } ], - base: '0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec', - name: 'Real Yield ETH', - display: 'YieldETH', - symbol: 'YieldETH', - traces: [ + "base": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec", + "name": "Real Yield ETH", + "display": "YieldETH", + "symbol": "YieldETH", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'ethereum', - base_denom: 'wei' + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" }, - provider: 'Seven Seas & DeFine Logic Labs' + "provider": "Seven Seas & DeFine Logic Labs" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg" }, - coingecko_id: 'yieldeth-sommelier', - images: [ + "coingecko_id": "yieldeth-sommelier", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg" } ] }, { - description: - 'TBTC replaces centralized intermediaries with a randomly selected group of nodes on the Threshold Network. This group of independent nodes works together to secure your deposited Bitcoin through threshold cryptography. TBTC allows anyone to use Bitcoin in the expanding DeFi and Web3 universe.', - denom_units: [ + "description": "TBTC replaces centralized intermediaries with a randomly selected group of nodes on the Threshold Network. This group of independent nodes works together to secure your deposited Bitcoin through threshold cryptography. TBTC allows anyone to use Bitcoin in the expanding DeFi and Web3 universe.", + "denom_units": [ { - denom: '0x18084fba666a33d37592fa2633fd49a74dd93a88', - exponent: 0, - aliases: [] + "denom": "0x18084fba666a33d37592fa2633fd49a74dd93a88", + "exponent": 0, + "aliases": [] }, { - denom: 'tBTC', - exponent: 18, - aliases: [] + "denom": "tBTC", + "exponent": 18, + "aliases": [] } ], - type_asset: 'erc20', - address: '0x18084fba666a33d37592fa2633fd49a74dd93a88', - base: '0x18084fba666a33d37592fa2633fd49a74dd93a88', - display: 'tBTC', - name: 'tBTC v2', - symbol: 'tBTC', - traces: [ + "type_asset": "erc20", + "address": "0x18084fba666a33d37592fa2633fd49a74dd93a88", + "base": "0x18084fba666a33d37592fa2633fd49a74dd93a88", + "display": "tBTC", + "name": "tBTC v2", + "symbol": "tBTC", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'bitcoin', - base_denom: 'sat' + "type": "wrapped", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" }, - provider: 'Threshold Network' + "provider": "Threshold Network" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg" }, - coingecko_id: 'tbtc', - images: [ + "coingecko_id": "tbtc", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg" } ] }, { - description: - 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets. Stakers of PoS tokens can stake their assets while maintaining the liquidity of these assets. Users earn staking rewards + receive 1:1 pegged staked representative tokens which can be used to generate additional yield.', - denom_units: [ + "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets. Stakers of PoS tokens can stake their assets while maintaining the liquidity of these assets. Users earn staking rewards + receive 1:1 pegged staked representative tokens which can be used to generate additional yield.", + "denom_units": [ { - denom: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006', - exponent: 0, - aliases: [] + "denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "exponent": 0, + "aliases": [] }, { - denom: 'pstake', - exponent: 18, - aliases: [] + "denom": "pstake", + "exponent": 18, + "aliases": [] } ], - type_asset: 'erc20', - address: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006', - base: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006', - display: 'pstake', - name: 'pSTAKE Finance', - symbol: 'PSTAKE', - traces: [ + "type_asset": "erc20", + "address": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "base": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "display": "pstake", + "name": "pSTAKE Finance", + "symbol": "PSTAKE", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'persistence', - base_denom: 'uxprt' + "type": "liquid-stake", + "counterparty": { + "chain_name": "persistence", + "base_denom": "uxprt" }, - provider: 'Persistence' + "provider": "Persistence" } ], - 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', - images: [ + "coingecko_id": "pstake-finance", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" } ] }, { - description: - 'The OCC token acts as the fuel for the OccamRazer launchpad and it is indirectly used as well on the DAO governance layer.', - type_asset: 'erc20', - address: '0x2F109021aFe75B949429fe30523Ee7C0D5B27207', - denom_units: [ + "description": "The OCC token acts as the fuel for the OccamRazer launchpad and it is indirectly used as well on the DAO governance layer.", + "type_asset": "erc20", + "address": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "denom_units": [ { - denom: '0x2F109021aFe75B949429fe30523Ee7C0D5B27207', - exponent: 0, - aliases: [] + "denom": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "exponent": 0, + "aliases": [] }, { - denom: 'occ', - exponent: 18 + "denom": "occ", + "exponent": 18 } ], - base: '0x2F109021aFe75B949429fe30523Ee7C0D5B27207', - name: 'OccamFi', - display: 'occ', - symbol: 'OCC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png' + "base": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "name": "OccamFi", + "display": "occ", + "symbol": "OCC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png" }, - coingecko_id: 'occamfi', - images: [ + "coingecko_id": "occamfi", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png" } ] }, { - description: - 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', - type_asset: 'erc20', - address: '0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e', - denom_units: [ + "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", + "type_asset": "erc20", + "address": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "denom_units": [ { - denom: '0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e', - exponent: 0, - aliases: [] + "denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "exponent": 0, + "aliases": [] }, { - denom: 'page', - exponent: 8 + "denom": "page", + "exponent": 8 } ], - base: '0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e', - name: 'Page', - display: 'page', - symbol: 'PAGE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + "base": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "name": "Page", + "display": "page", + "symbol": "PAGE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'fantom', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "fantom", + "assets": [ { - description: - "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", - denom_units: [ + "description": "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", + "denom_units": [ { - denom: 'wei', - exponent: 0 + "denom": "wei", + "exponent": 0 }, { - denom: 'ftm', - exponent: 18 + "denom": "ftm", + "exponent": 18 } ], - base: 'wei', - name: 'Fantom', - display: 'ftm', - symbol: 'FTM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + "base": "wei", + "name": "Fantom", + "display": "ftm", + "symbol": "FTM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg" }, - coingecko_id: 'fantom', - images: [ + "coingecko_id": "fantom", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg" } ] }, { - description: 'ERC20 wrapped version of FTM', - type_asset: 'erc20', - address: '0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83', - denom_units: [ + "description": "ERC20 wrapped version of FTM", + "type_asset": "erc20", + "address": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "denom_units": [ { - denom: '0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83', - exponent: 0 + "denom": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "exponent": 0 }, { - denom: 'wftm', - exponent: 18 + "denom": "wftm", + "exponent": 18 } ], - base: '0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83', - name: 'Wrapped Fantom', - display: 'wftm', - symbol: 'WFTM', - traces: [ + "base": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "name": "Wrapped Fantom", + "display": "wftm", + "symbol": "WFTM", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'fantom', - base_denom: 'wei' + "type": "wrapped", + "counterparty": { + "chain_name": "fantom", + "base_denom": "wei" }, - chain: { - contract: '0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83' + "chain": { + "contract": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" }, - provider: 'Fantom' + "provider": "Fantom" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'fantom', - base_denom: 'wei' + "image_sync": { + "chain_name": "fantom", + "base_denom": "wei" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'filecoin', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "filecoin", + "assets": [ { - description: - "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", - denom_units: [ + "description": "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", + "denom_units": [ { - denom: 'attoFIL', - exponent: 0, - aliases: ['fil-wei'] + "denom": "attoFIL", + "exponent": 0, + "aliases": [ + "fil-wei" + ] }, { - denom: 'fil', - exponent: 18 + "denom": "fil", + "exponent": 18 } ], - base: 'attoFIL', - name: 'Filecoin', - display: 'fil', - symbol: 'FIL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + "base": "attoFIL", + "name": "Filecoin", + "display": "fil", + "symbol": "FIL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg" }, - coingecko_id: 'filecoin', - images: [ + "coingecko_id": "filecoin", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg" } ] }, { - description: 'Wrapped Filecoin, ERC20 Wrapper over Filecoin', - address: '0x60E1773636CF5E4A227d9AC24F20fEca034ee25A', - denom_units: [ + "description": "Wrapped Filecoin, ERC20 Wrapper over Filecoin", + "address": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A", + "denom_units": [ { - denom: '0x60E1773636CF5E4A227d9AC24F20fEca034ee25A', - exponent: 0, - aliases: ['wfil-wei'] + "denom": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A", + "exponent": 0, + "aliases": [ + "wfil-wei" + ] }, { - denom: 'wfil', - exponent: 18 + "denom": "wfil", + "exponent": 18 } ], - type_asset: 'erc20', - base: '0x60E1773636CF5E4A227d9AC24F20fEca034ee25A', - name: 'Wrapped FIL', - display: 'wfil', - symbol: 'WFIL', - traces: [ + "type_asset": "erc20", + "base": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A", + "name": "Wrapped FIL", + "display": "wfil", + "symbol": "WFIL", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'filecoin', - base_denom: 'attoFIL' + "type": "wrapped", + "counterparty": { + "chain_name": "filecoin", + "base_denom": "attoFIL" }, - provider: 'Filecoin' + "provider": "Filecoin" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'kusama', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "kusama", + "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 + "denom": "Planck", + "exponent": 0 }, { - denom: 'Point', - exponent: 3 + "denom": "Point", + "exponent": 3 }, { - denom: 'uKSM', - exponent: 3, - aliases: ['MicroKSM'] + "denom": "uKSM", + "exponent": 3, + "aliases": [ + "MicroKSM" + ] }, { - denom: 'uKSM', - exponent: 3, - aliases: ['MilliKSM'] + "denom": "uKSM", + "exponent": 3, + "aliases": [ + "MilliKSM" + ] }, { - denom: 'KSM', - exponent: 12 + "denom": "KSM", + "exponent": 12 } ], - base: 'Planck', - name: 'Kusama', - display: 'KSM', - symbol: 'KSM', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + "base": "Planck", + "name": "Kusama", + "display": "KSM", + "symbol": "KSM", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg" }, - coingecko_id: 'kusama', - images: [ + "coingecko_id": "kusama", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "moonbeam", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" } ] }, { - 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', - traces: [ + "base": "0xacc15dc74880c9944775448304b263d191c6077f", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WGLMR", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'moonbeam', - base_denom: 'Wei' + "type": "wrapped", + "counterparty": { + "chain_name": "moonbeam", + "base_denom": "Wei" }, - provider: 'Moonbeam' + "provider": "Moonbeam" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" }, - coingecko_id: 'wrapped-moonbeam', - images: [ + "coingecko_id": "wrapped-moonbeam", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" } ] }, { - 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', - traces: [ + "base": "0xffffffff1fcacbd218edc0eba20fc2308c778080", + "name": "Wrapped Polkadot", + "display": "xcdot", + "symbol": "xcDOT", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'polkadot', - base_denom: 'Planck' + "type": "bridge", + "counterparty": { + "chain_name": "polkadot", + "base_denom": "Planck" }, - provider: 'Polkadot Parachain' + "provider": "Polkadot Parachain" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } ] }, { - description: - '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', - traces: [ + "base": "0x14df360966a1c4582d2b18edbdae432ea0a27575", + "name": "Axelar Wrapped Dai Stablecoin", + "display": "axldai", + "symbol": "axlDAI", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'dai-wei' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "dai-wei" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_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', - traces: [ + "base": "0x61C82805453a989E99B544DFB7031902e9bac448", + "name": "Axelar Wrapped Frax", + "display": "axlfrax", + "symbol": "axlFRAX", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'frax-wei' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "frax-wei" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/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', - traces: [ + "base": "0xca01a1d0993565291051daff390892518acfad3a", + "name": "Axelar Wrapped USD Coin", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'uusdc' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdc" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_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', - traces: [ + "base": "0xdfd74af792bc6d45d1803f425ce62dd16f8ae038", + "name": "Axelar Wrapped Tether USD", + "display": "axlusdt", + "symbol": "axlUSDT", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'uusdt' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdt" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'picasso', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "picasso", + "assets": [ { - description: 'The native staking and governance token of Picasso.', - denom_units: [ + "description": "The native staking and governance token of Picasso.", + "denom_units": [ { - denom: 'ppica', - exponent: 0 + "denom": "ppica", + "exponent": 0 }, { - denom: 'pica', - exponent: 12 + "denom": "pica", + "exponent": 12 } ], - base: 'ppica', - name: 'Pica', - display: 'pica', - symbol: 'PICA', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + "base": "ppica", + "name": "Pica", + "display": "pica", + "symbol": "PICA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: '4', - exponent: 0 + "denom": "4", + "exponent": 0 }, { - denom: 'ksm', - exponent: 12 + "denom": "ksm", + "exponent": 12 } ], - base: '4', - name: 'Kusama', - display: 'ksm', - symbol: 'KSM', - traces: [ + "base": "4", + "name": "Kusama", + "display": "ksm", + "symbol": "KSM", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'kusama', - base_denom: 'Planck' + "type": "bridge", + "counterparty": { + "chain_name": "kusama", + "base_denom": "Planck" }, - provider: 'Kusama Parachain' + "provider": "Kusama Parachain" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'kusama', - base_denom: 'Planck' + "image_sync": { + "chain_name": "kusama", + "base_denom": "Planck" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: '79228162514264337593543950342', - exponent: 0 + "denom": "79228162514264337593543950342", + "exponent": 0 }, { - denom: 'dot', - exponent: 10 + "denom": "dot", + "exponent": 10 } ], - base: '79228162514264337593543950342', - name: 'Polkadot', - display: 'dot', - symbol: 'DOT', - traces: [ + "base": "79228162514264337593543950342", + "name": "Polkadot", + "display": "dot", + "symbol": "DOT", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'composablepolkadot', - base_denom: '79228162514264337593543950342', - channel_id: 'channel-15' + "type": "ibc", + "counterparty": { + "chain_name": "composablepolkadot", + "base_denom": "79228162514264337593543950342", + "channel_id": "channel-15" }, - chain: { - channel_id: 'channel-15', - path: 'transfer/channel-15/79228162514264337593543950342' + "chain": { + "channel_id": "channel-15", + "path": "transfer/channel-15/79228162514264337593543950342" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'composablepolkadot', - base_denom: '79228162514264337593543950342' + "image_sync": { + "chain_name": "composablepolkadot", + "base_denom": "79228162514264337593543950342" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: '130', - exponent: 0 + "denom": "130", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - base: '130', - name: 'Statemine', - display: 'usdt', - symbol: 'USDT', - traces: [ + "base": "130", + "name": "Statemine", + "display": "usdt", + "symbol": "USDT", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'statemine', - base_denom: '130' + "type": "bridge", + "counterparty": { + "chain_name": "statemine", + "base_denom": "130" }, - provider: 'Kusama Parachain' + "provider": "Kusama Parachain" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'statemine', - base_denom: '130' + "image_sync": { + "chain_name": "statemine", + "base_denom": "130" } } ] @@ -2339,4846 +2379,4918 @@ const assets: AssetList[] = [ ] }, { - $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', - images: [ + "coingecko_id": "polkadot", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } ] } ] }, { - $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-purple.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.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-purple.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg" }, - coingecko_id: 'matic-network', - images: [ + "coingecko_id": "matic-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg" } ] }, { - 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', - traces: [ + "base": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'polygon', - base_denom: 'wei' + "type": "wrapped", + "counterparty": { + "chain_name": "polygon", + "base_denom": "wei" }, - provider: 'Polygon' + "provider": "Polygon" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" }, - coingecko_id: 'wmatic', - images: [ + "coingecko_id": "wmatic", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.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: '0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174', - 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": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "denom_units": [ { - denom: '0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174', - exponent: 0, - aliases: ['uusdc'] + "denom": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - base: '0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174', - name: 'USD Coin', - display: 'usdc', - symbol: 'USDC', - traces: [ + "base": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'additional-mintage', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - provider: 'Circle' + "provider": "Circle" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - coingecko_id: 'usd-coin', - images: [ + "coingecko_id": "usd-coin", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.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: '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', - traces: [ + "base": "0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9", + "name": "Axelar Wrapped Dai Stablecoin", + "display": "axldai", + "symbol": "axlDAI", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'dai-wei' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "dai-wei" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_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', - traces: [ + "base": "0x53adc464b488be8c5d7269b9abbce8ba74195c3a", + "name": "Axelar Wrapped Frax", + "display": "axlfrax", + "symbol": "axlFRAX", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'frax-wei' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "frax-wei" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/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', - traces: [ + "base": "0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed", + "name": "Axelar Wrapped USD Coin", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'uusdc' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdc" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_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', - traces: [ + "base": "0xceed2671d8634e3ee65000edbbee66139b132fbf", + "name": "Axelar Wrapped Tether USD", + "display": "axlusdt", + "symbol": "axlUSDT", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelar', - base_denom: 'uusdt' + "type": "bridge", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdt" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ] }, { - description: - 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', - type_asset: 'erc20', - address: '0x9ceE70895726B0ea14E6019C961dAf32222a7C2f', - denom_units: [ + "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", + "type_asset": "erc20", + "address": "0x9ceE70895726B0ea14E6019C961dAf32222a7C2f", + "denom_units": [ { - denom: '0x9ceE70895726B0ea14E6019C961dAf32222a7C2f', - exponent: 0, - aliases: [] + "denom": "0x9ceE70895726B0ea14E6019C961dAf32222a7C2f", + "exponent": 0, + "aliases": [] }, { - denom: 'page', - exponent: 8 + "denom": "page", + "exponent": 8 } ], - base: '0x9ceE70895726B0ea14E6019C961dAf32222a7C2f', - name: 'Page', - display: 'page', - symbol: 'PAGE', - traces: [ + "base": "0x9ceE70895726B0ea14E6019C961dAf32222a7C2f", + "name": "Page", + "display": "page", + "symbol": "PAGE", + "traces": [ { - type: 'additional-mintage', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" }, - provider: 'PageDAO' + "provider": "PageDAO" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" }, - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'solana', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "solana", + "assets": [ { - description: - 'Solana (SOL) is the native asset of the Solana blockchain.', - denom_units: [ + "description": "Solana (SOL) is the native asset of the Solana blockchain.", + "denom_units": [ { - denom: 'Lamport', - exponent: 0 + "denom": "Lamport", + "exponent": 0 }, { - denom: 'SOL', - exponent: 9 + "denom": "SOL", + "exponent": 9 } ], - base: 'Lamport', - name: 'Solana', - display: 'SOL', - symbol: 'SOL', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + "base": "Lamport", + "name": "Solana", + "display": "SOL", + "symbol": "SOL", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" }, - coingecko_id: 'solana', - images: [ + "coingecko_id": "solana", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" } ] }, { - description: '', - type_asset: 'erc20', - address: 'So11111111111111111111111111111111111111112', - denom_units: [ + "description": "", + "type_asset": "erc20", + "address": "So11111111111111111111111111111111111111112", + "denom_units": [ { - denom: 'So11111111111111111111111111111111111111112', - exponent: 0 + "denom": "So11111111111111111111111111111111111111112", + "exponent": 0 }, { - denom: 'wsol', - exponent: 9 + "denom": "wsol", + "exponent": 9 } ], - base: 'So11111111111111111111111111111111111111112', - name: 'Wrapped SOL', - display: 'wsol', - symbol: 'WSOL', - traces: [ + "base": "So11111111111111111111111111111111111111112", + "name": "Wrapped SOL", + "display": "wsol", + "symbol": "WSOL", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'solana', - base_denom: 'Lamport' + "type": "wrapped", + "counterparty": { + "chain_name": "solana", + "base_denom": "Lamport" }, - provider: 'Solana' + "provider": "Solana" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" }, - coingecko_id: 'wrapped-solana', - images: [ + "coingecko_id": "wrapped-solana", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" } ] }, { - description: 'The Official Bonk Inu token', - type_asset: 'erc20', - address: 'DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263', - denom_units: [ + "description": "The Official Bonk Inu token", + "type_asset": "erc20", + "address": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", + "denom_units": [ { - denom: 'DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263', - exponent: 0 + "denom": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", + "exponent": 0 }, { - denom: 'bonk', - exponent: 5 + "denom": "bonk", + "exponent": 5 } ], - base: 'DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263', - name: 'Bonk', - display: 'bonk', - symbol: 'BONK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + "base": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", + "name": "Bonk", + "display": "bonk", + "symbol": "BONK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png" }, - coingecko_id: 'bonk', - images: [ + "coingecko_id": "bonk", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png" } ] }, { - description: - "Pyth is a protocol that allows market participants to publish pricing information on-chain for others to use. The protocol is an interaction between three parties:\n-Publishers submit pricing information to Pyth's oracle program. Pyth has multiple data publishers for every product to improve the accuracy and robustness of the system.\n-Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval.\nConsumers read the price information produced by the oracle program.\n\nPyth's oracle program runs simultaneously on both Solana mainnet and Pythnet. Each instance of the program is responsible for its own set of price feeds. Solana Price Feeds are available for use by Solana protocols. In this case, since the oracle program itself runs on Solana, the resulting prices are immediately available to consumers without requiring any additional work. Pythnet Price Feeds are available on 12+ blockchains. The prices constructed on Pythnet are transferred cross-chain to reach consumers on these blockchains.\n\nIn both cases, the critical component of the system is the oracle program that combines the data from each individual publisher. This program maintains a number of different Solana accounts that list the products on Pyth and their current price data. Publishers publish their price and confidence by interacting with the oracle program on every slot. The program stores this information in its accounts. The first price update in a slot additionally triggers price aggregation, which combines the price data from the previous slot into a single aggregate price and confidence interval. This aggregate price is written to the Solana account where it is readable by other on-chain programs and available for transmission to other blockchains.", - type_asset: 'erc20', - address: 'HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3', - denom_units: [ + "description": "Pyth is a protocol that allows market participants to publish pricing information on-chain for others to use. The protocol is an interaction between three parties:\n-Publishers submit pricing information to Pyth's oracle program. Pyth has multiple data publishers for every product to improve the accuracy and robustness of the system.\n-Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval.\nConsumers read the price information produced by the oracle program.\n\nPyth's oracle program runs simultaneously on both Solana mainnet and Pythnet. Each instance of the program is responsible for its own set of price feeds. Solana Price Feeds are available for use by Solana protocols. In this case, since the oracle program itself runs on Solana, the resulting prices are immediately available to consumers without requiring any additional work. Pythnet Price Feeds are available on 12+ blockchains. The prices constructed on Pythnet are transferred cross-chain to reach consumers on these blockchains.\n\nIn both cases, the critical component of the system is the oracle program that combines the data from each individual publisher. This program maintains a number of different Solana accounts that list the products on Pyth and their current price data. Publishers publish their price and confidence by interacting with the oracle program on every slot. The program stores this information in its accounts. The first price update in a slot additionally triggers price aggregation, which combines the price data from the previous slot into a single aggregate price and confidence interval. This aggregate price is written to the Solana account where it is readable by other on-chain programs and available for transmission to other blockchains.", + "type_asset": "erc20", + "address": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "denom_units": [ { - denom: 'HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3', - exponent: 0 + "denom": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "exponent": 0 }, { - denom: 'pyth', - exponent: 6 + "denom": "pyth", + "exponent": 6 } ], - base: 'HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3', - name: 'Pyth Network', - display: 'pyth', - symbol: 'PYTH', - coingecko_id: 'pyth-network', - images: [ + "base": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "name": "Pyth Network", + "display": "pyth", + "symbol": "PYTH", + "coingecko_id": "pyth-network", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'statemine', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "statemine", + "assets": [ { - denom_units: [ + "denom_units": [ { - denom: '130', - exponent: 0 + "denom": "130", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - base: '130', - name: 'Statemine', - display: 'usdt', - symbol: 'USDT', - coingecko_id: 'tether' + "base": "130", + "name": "Statemine", + "display": "usdt", + "symbol": "USDT", + "coingecko_id": "tether" } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'sui', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "sui", + "assets": [ { - description: 'Sui’s native asset is called SUI.', - denom_units: [ + "description": "Sui’s native asset is called SUI.", + "denom_units": [ { - denom: '0x2::sui::SUI', - exponent: 0, - aliases: ['MIST'] + "denom": "0x2::sui::SUI", + "exponent": 0, + "aliases": [ + "MIST" + ] }, { - denom: 'SUI', - exponent: 9 + "denom": "SUI", + "exponent": 9 } ], - base: '0x2::sui::SUI', - name: 'Sui', - display: 'SUI', - symbol: 'SUI', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + "base": "0x2::sui::SUI", + "name": "Sui", + "display": "SUI", + "symbol": "SUI", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg" }, - coingecko_id: 'sui', - images: [ + "coingecko_id": "sui", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: '8ball', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "8ball", + "assets": [ { - description: 'The native staking token of 8ball.', - denom_units: [ + "description": "The native staking token of 8ball.", + "denom_units": [ { - denom: 'uebl', - exponent: 0 + "denom": "uebl", + "exponent": 0 }, { - denom: 'ebl', - exponent: 6 + "denom": "ebl", + "exponent": 6 } ], - base: 'uebl', - name: '8ball', - display: 'ebl', - symbol: 'EBL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + "base": "uebl", + "name": "8ball", + "display": "ebl", + "symbol": "EBL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'acrechain', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "acrechain", + "assets": [ { - description: - 'The native EVM, governance and staking token of the Acrechain', - denom_units: [ + "description": "The native EVM, governance and staking token of the Acrechain", + "denom_units": [ { - denom: 'aacre', - exponent: 0 + "denom": "aacre", + "exponent": 0 }, { - denom: 'acre', - exponent: 18 + "denom": "acre", + "exponent": 18 } ], - base: 'aacre', - name: 'Acre', - display: 'acre', - symbol: 'ACRE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + "base": "aacre", + "name": "Acre", + "display": "acre", + "symbol": "ACRE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg" }, - coingecko_id: 'arable-protocol', - images: [ + "coingecko_id": "arable-protocol", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg" } ] }, { - description: 'Overcollateralized stable coin for Arable derivatives v1', - denom_units: [ + "description": "Overcollateralized stable coin for Arable derivatives v1", + "denom_units": [ { - denom: 'erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c', - exponent: 0 + "denom": "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c", + "exponent": 0 }, { - denom: 'arusd', - exponent: 18 + "denom": "arusd", + "exponent": 18 } ], - base: 'erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c', - name: 'Arable USD', - display: 'arusd', - symbol: 'arUSD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + "base": "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c", + "name": "Arable USD", + "display": "arusd", + "symbol": "arUSD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg" }, - coingecko_id: 'arable-usd', - images: [ + "coingecko_id": "arable-usd", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg" } ] }, { - description: 'Ciento Exchange Token', - denom_units: [ + "description": "Ciento Exchange Token", + "denom_units": [ { - denom: 'erc20/0xAE6D3334989a22A65228732446731438672418F2', - exponent: 0 + "denom": "erc20/0xAE6D3334989a22A65228732446731438672418F2", + "exponent": 0 }, { - denom: 'cnto', - exponent: 18 + "denom": "cnto", + "exponent": 18 } ], - base: 'erc20/0xAE6D3334989a22A65228732446731438672418F2', - name: 'Ciento Token', - display: 'cnto', - symbol: 'CNTO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + "base": "erc20/0xAE6D3334989a22A65228732446731438672418F2", + "name": "Ciento Token", + "display": "cnto", + "symbol": "CNTO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.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 Inter Protocol.', - denom_units: [ + "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", + "denom_units": [ { - denom: 'ubld', - exponent: 0 + "denom": "ubld", + "exponent": 0 }, { - denom: 'bld', - exponent: 6 + "denom": "bld", + "exponent": 6 } ], - base: 'ubld', - name: 'Agoric', - display: 'bld', - symbol: 'BLD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + "base": "ubld", + "name": "Agoric", + "display": "bld", + "symbol": "BLD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg" }, - coingecko_id: 'agoric', - images: [ + "coingecko_id": "agoric", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg" } ] }, { - description: - 'IST is the stable token used by the Agoric chain for execution fees and commerce.', - denom_units: [ + "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", + "denom_units": [ { - denom: 'uist', - exponent: 0 + "denom": "uist", + "exponent": 0 }, { - denom: 'ist', - exponent: 6 + "denom": "ist", + "exponent": 6 } ], - base: 'uist', - name: 'Inter Stable Token', - display: 'ist', - symbol: 'IST', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + "base": "uist", + "name": "Inter Stable Token", + "display": "ist", + "symbol": "IST", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg" }, - coingecko_id: 'inter-stable-token', - images: [ + "coingecko_id": "inter-stable-token", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg" } ] } ] }, { - $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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg' + "base": "attoaioz", + "name": "AIOZ", + "display": "aioz", + "symbol": "AIOZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg" }, - coingecko_id: 'aioz-network', - images: [ + "coingecko_id": "aioz-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "akash-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg" } ] }, { - description: 'Tether USDt on Akash', - denom_units: [ + "description": "Tether USDt on Akash", + "denom_units": [ { - denom: - 'ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5', - exponent: 0 + "denom": "ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5', - name: 'Tether USDt', - display: 'usdt', - symbol: 'USDt', - traces: [ + "type_asset": "ics20", + "base": "ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5", + "name": "Tether USDt", + "display": "usdt", + "symbol": "USDt", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt', - channel_id: 'channel-130' + "type": "ibc", + "counterparty": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt", + "channel_id": "channel-130" }, - chain: { - channel_id: 'channel-2', - path: 'transfer/channel-2/erc20/tether/usdt' + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/erc20/tether/usdt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'andromeda', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "andromeda", + "assets": [ { - description: 'The native staking and governance token of Andromeda', - denom_units: [ + "description": "The native staking and governance token of Andromeda", + "denom_units": [ { - denom: 'uandr', - exponent: 0 + "denom": "uandr", + "exponent": 0 }, { - denom: 'andr', - exponent: 6 + "denom": "andr", + "exponent": 6 } ], - coingecko_id: 'andromeda-2', - base: 'uandr', - name: 'Andr', - display: 'andr', - symbol: 'ANDR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png' + "coingecko_id": "andromeda-2", + "base": "uandr", + "name": "Andr", + "display": "andr", + "symbol": "ANDR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'archway', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "archway", + "assets": [ { - description: 'The native token of Archway network', - denom_units: [ + "description": "The native token of Archway network", + "denom_units": [ { - denom: 'aarch', - exponent: 0 + "denom": "aarch", + "exponent": 0 }, { - denom: 'uarch', - exponent: 12 + "denom": "uarch", + "exponent": 12 }, { - denom: 'arch', - exponent: 18 + "denom": "arch", + "exponent": 18 } ], - base: 'aarch', - name: 'Archway', - display: 'arch', - symbol: 'ARCH', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + "base": "aarch", + "name": "Archway", + "display": "arch", + "symbol": "ARCH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" }, - coingecko_id: 'archway', - images: [ + "coingecko_id": "archway", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" } ] }, { - description: 'ERIS liquid staked ARCH', - type_asset: 'cw20', - address: - 'archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5', - denom_units: [ + "description": "ERIS liquid staked ARCH", + "type_asset": "cw20", + "address": "archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5", + "denom_units": [ { - denom: - 'cw20:archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5', - exponent: 0 + "denom": "cw20:archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5", + "exponent": 0 }, { - denom: 'ampARCH', - exponent: 6 + "denom": "ampARCH", + "exponent": 6 } ], - base: 'cw20:archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5', - name: 'ERIS Amplified ARCH', - display: 'ampARCH', - symbol: 'ampARCH', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/amparch.png' + "base": "cw20:archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5", + "name": "ERIS Amplified ARCH", + "display": "ampARCH", + "symbol": "ampARCH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/amparch.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/amparch.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/amparch.png" } ] } ] }, { - $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: 'arkh', - exponent: 0 + "denom": "arkh", + "exponent": 0 }, { - denom: 'ARKH', - exponent: 6 + "denom": "ARKH", + "exponent": 6 } ], - base: 'arkh', - name: 'Arkh', - display: 'ARKH', - symbol: 'ARKH', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + "base": "arkh", + "name": "Arkh", + "display": "ARKH", + "symbol": "ARKH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + "base": "umntl", + "name": "AssetMantle", + "display": "mntl", + "symbol": "MNTL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg" }, - coingecko_id: 'assetmantle', - images: [ + "coingecko_id": "assetmantle", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'aura', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "aura", + "assets": [ { - description: 'The native token of Aura Network', - denom_units: [ + "description": "The native token of Aura Network", + "denom_units": [ { - denom: 'uaura', - exponent: 0 + "denom": "uaura", + "exponent": 0 }, { - denom: 'aura', - exponent: 6 + "denom": "aura", + "exponent": 6 } ], - base: 'uaura', - name: 'Aura', - display: 'aura', - symbol: 'AURA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg' + "base": "uaura", + "name": "Aura", + "display": "aura", + "symbol": "AURA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" }, - coingecko_id: 'aura-network', - images: [ + "coingecko_id": "aura-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "axelar", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" } ] }, { - description: "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', - traces: [ + "base": "uusdc", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" }, - coingecko_id: 'axlusdc', - images: [ + "coingecko_id": "axlusdc", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } ] }, { - description: "Frax's fractional-algorithmic stablecoin on Axelar", - denom_units: [ + "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', - traces: [ + "base": "frax-wei", + "name": "Frax", + "display": "frax", + "symbol": "FRAX", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x853d955acef822db058eb8505911ed77f175b99e' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x853d955acef822db058eb8505911ed77f175b99e" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" } ] }, { - 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', - traces: [ + "base": "dai-wei", + "name": "Dai Stablecoin", + "display": "dai", + "symbol": "DAI", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x6b175474e89094c44da98b954eedeac495271d0f' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg" } ] }, { - description: "Tether's USD stablecoin on Axelar", - denom_units: [ + "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', - traces: [ + "base": "uusdt", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg" } ] }, { - description: 'Wrapped Ether on Axelar', - denom_units: [ + "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', - traces: [ + "base": "weth-wei", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "WETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" } ] }, { - 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', - traces: [ + "base": "wbtc-satoshi", + "name": "Wrapped Bitcoin", + "display": "wbtc", + "symbol": "WBTC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" } ] }, { - 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', - traces: [ + "base": "aave-wei", + "name": "Aave", + "display": "aave", + "symbol": "AAVE", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" } ] }, { - 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', - traces: [ + "base": "ape-wei", + "name": "ApeCoin", + "display": "ape", + "symbol": "APE", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x4d224452801aced8b2f0aebe155379bb5d594381' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x4d224452801aced8b2f0aebe155379bb5d594381" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" } ] }, { - description: 'Axie Infinity Shard on Axelar', - denom_units: [ + "description": "Axie Infinity Shard on Axelar", + "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', - traces: [ + "base": "axs-wei", + "name": "Axie Infinity Shard", + "display": "axs", + "symbol": "AXS", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xbb0e17ef65f82ab018d8edd776e8dd940327b28b' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" } ] }, { - 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', - traces: [ + "base": "link-wei", + "name": "Chainlink", + "display": "link", + "symbol": "LINK", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x514910771af9ca656af840dff83e8264ecf986ca' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x514910771af9ca656af840dff83e8264ecf986ca" }, - provider: 'Axelar' + "provider": "Axelar" } ], - 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' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" } ] }, { - description: 'Maker on Axelar', - denom_units: [ + "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', - traces: [ + "base": "mkr-wei", + "name": "Maker", + "display": "mkr", + "symbol": "MKR", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" } ] }, { - 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', - traces: [ + "base": "rai-wei", + "name": "Rai Reflex Index", + "display": "rai", + "symbol": "RAI", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x03ab458634910aad20ef5f1c8ee96f1d6ac54919' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" } ] }, { - 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', - traces: [ + "base": "shib-wei", + "name": "Shiba Inu", + "display": "shib", + "symbol": "SHIB", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" } ] }, { - 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', - traces: [ + "base": "steth-wei", + "name": "Lido Staked Ether", + "display": "steth", + "symbol": "stETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xae7ab96520de3a18e5e111b5eaab095312d7fe84' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" } ] }, { - 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', - traces: [ + "base": "uni-wei", + "name": "Uniswap", + "display": "uni", + "symbol": "UNI", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x1f9840a85d5af5bf1d1762f925bdaddc4201f984' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" } ] }, { - 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', - traces: [ + "base": "xcn-wei", + "name": "Chain", + "display": "xcn", + "symbol": "XCN", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" } ] }, { - 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', - traces: [ + "base": "dot-planck", + "name": "Wrapped Polkadot", + "display": "dot", + "symbol": "DOT", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'moonbeam', - base_denom: '0xffffffff1fcacbd218edc0eba20fc2308c778080' + "type": "bridge", + "counterparty": { + "chain_name": "moonbeam", + "base_denom": "0xffffffff1fcacbd218edc0eba20fc2308c778080" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } ] }, { - description: 'Wrapped Moonbeam on Axelar', - denom_units: [ + "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', - traces: [ + "base": "wglmr-wei", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WGLMR", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'moonbeam', - base_denom: '0xacc15dc74880c9944775448304b263d191c6077f' + "type": "bridge", + "counterparty": { + "chain_name": "moonbeam", + "base_denom": "0xacc15dc74880c9944775448304b263d191c6077f" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" } ] }, { - description: 'Wrapped Matic on Axelar', - denom_units: [ + "description": "Wrapped Matic on Axelar", + "denom_units": [ { - denom: 'wmatic-wei', - exponent: 0 + "denom": "wmatic-wei", + "exponent": 0 }, { - denom: 'wmatic', - exponent: 18 + "denom": "wmatic", + "exponent": 18 } ], - base: 'wmatic-wei', - name: 'Wrapped Matic', - display: 'wmatic', - symbol: 'WMATIC', - traces: [ + "base": "wmatic-wei", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'polygon', - base_denom: '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270' + "type": "bridge", + "counterparty": { + "chain_name": "polygon", + "base_denom": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" } ] }, { - description: 'Wrapped BNB on Axelar', - denom_units: [ + "description": "Wrapped BNB on Axelar", + "denom_units": [ { - denom: 'wbnb-wei', - exponent: 0 + "denom": "wbnb-wei", + "exponent": 0 }, { - denom: 'wbnb', - exponent: 18 + "denom": "wbnb", + "exponent": 18 } ], - base: 'wbnb-wei', - name: 'Wrapped BNB', - display: 'wbnb', - symbol: 'WBNB', - traces: [ + "base": "wbnb-wei", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'binancesmartchain', - base_denom: '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c' + "type": "bridge", + "counterparty": { + "chain_name": "binancesmartchain", + "base_denom": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" } ] }, { - description: 'Binance USD on Axelar.', - denom_units: [ + "description": "Binance USD on Axelar.", + "denom_units": [ { - denom: 'busd-wei', - exponent: 0 + "denom": "busd-wei", + "exponent": 0 }, { - denom: 'busd', - exponent: 18 + "denom": "busd", + "exponent": 18 } ], - base: 'busd-wei', - name: 'Binance USD', - display: 'busd', - symbol: 'BUSD', - traces: [ + "base": "busd-wei", + "name": "Binance USD", + "display": "busd", + "symbol": "BUSD", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x4fabb145d64652a948d72533023f6e7a623c7c53' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x4fabb145d64652a948d72533023f6e7a623c7c53" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" } ] }, { - description: 'Wrapped AVAX on Axelar.', - denom_units: [ + "description": "Wrapped AVAX on Axelar.", + "denom_units": [ { - denom: 'wavax-wei', - exponent: 0 + "denom": "wavax-wei", + "exponent": 0 }, { - denom: 'avax', - exponent: 18 + "denom": "avax", + "exponent": 18 } ], - base: 'wavax-wei', - name: 'Wrapped AVAX', - display: 'avax', - symbol: 'WAVAX', - traces: [ + "base": "wavax-wei", + "name": "Wrapped AVAX", + "display": "avax", + "symbol": "WAVAX", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'avalanche', - base_denom: '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7' + "type": "bridge", + "counterparty": { + "chain_name": "avalanche", + "base_denom": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" } ] }, { - description: 'Wrapped FTM on Axelar.', - denom_units: [ + "description": "Wrapped FTM on Axelar.", + "denom_units": [ { - denom: 'wftm-wei', - exponent: 0 + "denom": "wftm-wei", + "exponent": 0 }, { - denom: 'ftm', - exponent: 18 + "denom": "ftm", + "exponent": 18 } ], - base: 'wftm-wei', - name: 'Wrapped FTM', - display: 'ftm', - symbol: 'WFTM', - traces: [ + "base": "wftm-wei", + "name": "Wrapped FTM", + "display": "ftm", + "symbol": "WFTM", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'fantom', - base_denom: '0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83' + "type": "bridge", + "counterparty": { + "chain_name": "fantom", + "base_denom": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" } ] }, { - description: "Circle's stablecoin from Polygon on Axelar", - denom_units: [ + "description": "Circle's stablecoin from Polygon on Axelar", + "denom_units": [ { - denom: 'polygon-uusdc', - exponent: 0 + "denom": "polygon-uusdc", + "exponent": 0 }, { - denom: 'polygon-usdc', - exponent: 6 + "denom": "polygon-usdc", + "exponent": 6 } ], - base: 'polygon-uusdc', - name: 'USD Coin from Polygon', - display: 'polygon-usdc', - symbol: 'USDC', - traces: [ + "base": "polygon-uusdc", + "name": "USD Coin from Polygon", + "display": "polygon-usdc", + "symbol": "USDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'polygon', - base_denom: '0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174' + "type": "bridge", + "counterparty": { + "chain_name": "polygon", + "base_denom": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } ] }, { - description: "Circle's stablecoin from Avalanche on Axelar", - denom_units: [ + "description": "Circle's stablecoin from Avalanche on Axelar", + "denom_units": [ { - denom: 'avalanche-uusdc', - exponent: 0 + "denom": "avalanche-uusdc", + "exponent": 0 }, { - denom: 'avalanche-usdc', - exponent: 6 + "denom": "avalanche-usdc", + "exponent": 6 } ], - base: 'avalanche-uusdc', - name: 'USD Coin from Avalanche', - display: 'avalanche-usdc', - symbol: 'USDC', - traces: [ + "base": "avalanche-uusdc", + "name": "USD Coin from Avalanche", + "display": "avalanche-usdc", + "symbol": "USDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'avalanche', - base_denom: '0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E' + "type": "bridge", + "counterparty": { + "chain_name": "avalanche", + "base_denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } ] }, { - description: 'Wrapped FIL on Axelar', - denom_units: [ + "description": "Wrapped FIL on Axelar", + "denom_units": [ { - denom: 'wfil-wei', - exponent: 0 + "denom": "wfil-wei", + "exponent": 0 }, { - denom: 'fil', - exponent: 18 + "denom": "fil", + "exponent": 18 } ], - base: 'wfil-wei', - name: 'Wrapped FIL from Filecoin', - display: 'fil', - symbol: 'axlFIL', - traces: [ + "base": "wfil-wei", + "name": "Wrapped FIL from Filecoin", + "display": "fil", + "symbol": "axlFIL", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'filecoin', - base_denom: '0x60E1773636CF5E4A227d9AC24F20fEca034ee25A' + "type": "bridge", + "counterparty": { + "chain_name": "filecoin", + "base_denom": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg" } ] }, { - description: 'Arbitrum on Axelar', - denom_units: [ + "description": "Arbitrum on Axelar", + "denom_units": [ { - denom: 'arb-wei', - exponent: 0 + "denom": "arb-wei", + "exponent": 0 }, { - denom: 'arb', - exponent: 18 + "denom": "arb", + "exponent": 18 } ], - base: 'arb-wei', - name: 'Arbitrum', - display: 'arb', - symbol: 'ARB', - traces: [ + "base": "arb-wei", + "name": "Arbitrum", + "display": "arb", + "symbol": "ARB", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'arbitrum', - base_denom: '0x912CE59144191C1204E64559FE8253a0e49E6548' + "type": "bridge", + "counterparty": { + "chain_name": "arbitrum", + "base_denom": "0x912CE59144191C1204E64559FE8253a0e49E6548" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'pepe-wei', - exponent: 0, - aliases: ['0x6982508145454Ce325dDbE47a25d4ec3d2311933'] + "denom": "pepe-wei", + "exponent": 0, + "aliases": [ + "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + ] }, { - denom: 'pepe', - exponent: 18 + "denom": "pepe", + "exponent": 18 } ], - base: 'pepe-wei', - name: 'Pepe', - display: 'pepe', - symbol: 'PEPE', - traces: [ + "base": "pepe-wei", + "name": "Pepe", + "display": "pepe", + "symbol": "PEPE", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x6982508145454Ce325dDbE47a25d4ec3d2311933' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x6982508145454Ce325dDbE47a25d4ec3d2311933' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: 'cbeth-wei', - exponent: 0, - aliases: ['0xbe9895146f7af43049ca1c1ae358b0541ea49704'] + "denom": "cbeth-wei", + "exponent": 0, + "aliases": [ + "0xbe9895146f7af43049ca1c1ae358b0541ea49704" + ] }, { - denom: 'cbeth', - exponent: 18 + "denom": "cbeth", + "exponent": 18 } ], - base: 'cbeth-wei', - name: 'Coinbase Wrapped Staked ETH', - display: 'cbeth', - symbol: 'cbETH', - traces: [ + "base": "cbeth-wei", + "name": "Coinbase Wrapped Staked ETH", + "display": "cbeth", + "symbol": "cbETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xbe9895146f7af43049ca1c1ae358b0541ea49704' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0xbe9895146f7af43049ca1c1ae358b0541ea49704' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png" } }, { - denom_units: [ + "denom_units": [ { - denom: 'reth-wei', - exponent: 0, - aliases: ['0xae78736cd615f374d3085123a210448e74fc6393'] + "denom": "reth-wei", + "exponent": 0, + "aliases": [ + "0xae78736cd615f374d3085123a210448e74fc6393" + ] }, { - denom: 'reth', - exponent: 18 + "denom": "reth", + "exponent": 18 } ], - base: 'reth-wei', - name: 'Rocket Pool Ether', - display: 'reth', - symbol: 'rETH', - traces: [ + "base": "reth-wei", + "name": "Rocket Pool Ether", + "display": "reth", + "symbol": "rETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xae78736cd615f374d3085123a210448e74fc6393' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xae78736cd615f374d3085123a210448e74fc6393" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0xae78736cd615f374d3085123a210448e74fc6393' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xae78736cd615f374d3085123a210448e74fc6393" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png" } }, { - denom_units: [ + "denom_units": [ { - denom: 'sfrxeth-wei', - exponent: 0, - aliases: ['0xac3e018457b222d93114458476f3e3416abbe38f'] + "denom": "sfrxeth-wei", + "exponent": 0, + "aliases": [ + "0xac3e018457b222d93114458476f3e3416abbe38f" + ] }, { - denom: 'sfrxeth', - exponent: 18 + "denom": "sfrxeth", + "exponent": 18 } ], - base: 'sfrxeth-wei', - name: 'Staked Frax Ether', - display: 'sfrxeth', - symbol: 'sfrxETH', - traces: [ + "base": "sfrxeth-wei", + "name": "Staked Frax Ether", + "display": "sfrxeth", + "symbol": "sfrxETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xac3e018457b222d93114458476f3e3416abbe38f' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0xac3e018457b222d93114458476f3e3416abbe38f' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xac3e018457b222d93114458476f3e3416abbe38f" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: 'wsteth-wei', - exponent: 0, - aliases: ['0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0'] + "denom": "wsteth-wei", + "exponent": 0, + "aliases": [ + "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" + ] }, { - denom: 'wsteth', - exponent: 18 + "denom": "wsteth", + "exponent": 18 } ], - base: 'wsteth-wei', - name: 'Wrapped Lido Staked Ether', - display: 'wsteth', - symbol: 'wstETH', - traces: [ + "base": "wsteth-wei", + "name": "Wrapped Lido Staked Ether", + "display": "wsteth", + "symbol": "wstETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: 'yieldeth-wei', - exponent: 0, - aliases: ['0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec'] + "denom": "yieldeth-wei", + "exponent": 0, + "aliases": [ + "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" + ] }, { - denom: 'YieldETH', - exponent: 18 + "denom": "YieldETH", + "exponent": 18 } ], - base: 'yieldeth-wei', - name: 'Real Yield Eth', - display: 'YieldETH', - symbol: 'YieldETH', - traces: [ + "base": "yieldeth-wei", + "name": "Real Yield Eth", + "display": "YieldETH", + "symbol": "YieldETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg" } } ] }, { - $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', - images: [ + "coingecko_id": "band-protocol", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'beezee', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "beezee", + "assets": [ { - description: 'BeeZee native blockchain', - denom_units: [ + "description": "BeeZee native blockchain", + "denom_units": [ { - denom: 'ubze', - exponent: 0 + "denom": "ubze", + "exponent": 0 }, { - denom: 'bze', - exponent: 6 + "denom": "bze", + "exponent": 6 } ], - base: 'ubze', - name: 'BeeZee', - display: 'bze', - symbol: 'BZE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + "base": "ubze", + "name": "BeeZee", + "display": "bze", + "symbol": "BZE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg" }, - coingecko_id: 'bzedge', - images: [ + "coingecko_id": "bzedge", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "bitcanna", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg" } ] } ] }, { - $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', - images: [ + "type_asset": "sdk.coin", + "coingecko_id": "bitsong", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg" } ] }, { - 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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png" } ] }, { - description: 'L DON a BitSong Music FanToken', - denom_units: [ + "description": "L DON a BitSong Music FanToken", + "denom_units": [ { - denom: 'ft347B1612A2B7659913679CF6CD45B8B130C50A00', - exponent: 0 + "denom": "ft347B1612A2B7659913679CF6CD45B8B130C50A00", + "exponent": 0 }, { - denom: 'ldon', - exponent: 6 + "denom": "ldon", + "exponent": 6 } ], - base: 'ft347B1612A2B7659913679CF6CD45B8B130C50A00', - name: 'L DON Fantoken', - display: 'ldon', - symbol: 'LDON', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft347B1612A2B7659913679CF6CD45B8B130C50A00.png' + "base": "ft347B1612A2B7659913679CF6CD45B8B130C50A00", + "name": "L DON Fantoken", + "display": "ldon", + "symbol": "LDON", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft347B1612A2B7659913679CF6CD45B8B130C50A00.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft347B1612A2B7659913679CF6CD45B8B130C50A00.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft347B1612A2B7659913679CF6CD45B8B130C50A00.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'bluzelle', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "bluzelle", + "assets": [ { - description: 'The native token of Bluzelle', - denom_units: [ + "description": "The native token of Bluzelle", + "denom_units": [ { - denom: 'ubnt', - exponent: 0 + "denom": "ubnt", + "exponent": 0 }, { - denom: 'bnt', - exponent: 6, - aliases: ['blz'] + "denom": "bnt", + "exponent": 6, + "aliases": [ + "blz" + ] } ], - base: 'ubnt', - name: 'Bluzelle', - display: 'bnt', - symbol: 'BLZ', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + "base": "ubnt", + "name": "Bluzelle", + "display": "bnt", + "symbol": "BLZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg" }, - coingecko_id: 'bluzelle', - keywords: ['bluzelle', 'game'], - images: [ + "coingecko_id": "bluzelle", + "keywords": [ + "bluzelle", + "game" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg" } ] }, { - description: "The ELT token of Bluzelle's Gamma 4 Gaming Ecosystem", - denom_units: [ + "description": "The ELT token of Bluzelle's Gamma 4 Gaming Ecosystem", + "denom_units": [ { - denom: 'uelt', - exponent: 0 + "denom": "uelt", + "exponent": 0 }, { - denom: 'elt', - exponent: 6 + "denom": "elt", + "exponent": 6 } ], - base: 'uelt', - name: 'ELT', - display: 'elt', - symbol: 'ELT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/elt.png' + "base": "uelt", + "name": "ELT", + "display": "elt", + "symbol": "ELT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/elt.png" }, - coingecko_id: '', - keywords: ['elt'], - images: [ + "coingecko_id": "", + "keywords": [ + "elt" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/elt.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/elt.png" } ] }, { - description: "The game token of Bluzelle's Gamma 4 Gaming Ecosystem", - denom_units: [ + "description": "The game token of Bluzelle's Gamma 4 Gaming Ecosystem", + "denom_units": [ { - denom: 'ug4', - exponent: 0 + "denom": "ug4", + "exponent": 0 }, { - denom: 'g4', - exponent: 6 + "denom": "g4", + "exponent": 6 } ], - base: 'ug4', - name: 'G4', - display: 'g4', - symbol: 'G4', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/g4.png' + "base": "ug4", + "name": "G4", + "display": "g4", + "symbol": "G4", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/g4.png" }, - coingecko_id: '', - keywords: ['g4'], - images: [ + "coingecko_id": "", + "keywords": [ + "g4" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/g4.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/g4.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, - aliases: ['boot'] + "denom": "boot", + "exponent": 0, + "aliases": [ + "boot" + ] } ], - base: 'boot', - name: 'Bostrom', - display: 'boot', - symbol: 'BOOT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + "base": "boot", + "name": "Bostrom", + "display": "boot", + "symbol": "BOOT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg" }, - coingecko_id: 'bostrom', - images: [ + "coingecko_id": "bostrom", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg" } ] }, { - description: 'The liquid staking token of Bostrom', - denom_units: [ + "description": "The liquid staking token of Bostrom", + "denom_units": [ { - denom: 'hydrogen', - exponent: 0, - aliases: ['hydrogen'] + "denom": "hydrogen", + "exponent": 0, + "aliases": [ + "hydrogen" + ] } ], - base: 'hydrogen', - name: 'Bostrom Hydrogen', - display: 'hydrogen', - symbol: 'HYDROGEN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + "base": "hydrogen", + "name": "Bostrom Hydrogen", + "display": "hydrogen", + "symbol": "HYDROGEN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg" } ] }, { - description: 'The resource token of Bostrom', - denom_units: [ + "description": "The resource token of Bostrom", + "denom_units": [ { - denom: 'milliampere', - exponent: 0, - aliases: ['milliampere'] + "denom": "milliampere", + "exponent": 0, + "aliases": [ + "milliampere" + ] }, { - denom: 'ampere', - exponent: 3, - aliases: ['ampere'] + "denom": "ampere", + "exponent": 3, + "aliases": [ + "ampere" + ] } ], - base: 'milliampere', - name: 'Bostrom Ampere', - display: 'ampere', - symbol: 'A', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + "base": "milliampere", + "name": "Bostrom Ampere", + "display": "ampere", + "symbol": "A", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg" } ] }, { - description: 'The resource token of Bostrom', - denom_units: [ + "description": "The resource token of Bostrom", + "denom_units": [ { - denom: 'millivolt', - exponent: 0, - aliases: ['millivolt'] + "denom": "millivolt", + "exponent": 0, + "aliases": [ + "millivolt" + ] }, { - denom: 'volt', - exponent: 3, - aliases: ['volt'] + "denom": "volt", + "exponent": 3, + "aliases": [ + "volt" + ] } ], - base: 'millivolt', - name: 'Bostrom Volt', - display: 'volt', - symbol: 'V', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + "base": "millivolt", + "name": "Bostrom Volt", + "display": "volt", + "symbol": "V", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg" } ] }, { - description: 'The staking token of Cyber', - denom_units: [ + "description": "The staking token of Cyber", + "denom_units": [ { - denom: 'tocyb', - exponent: 0, - aliases: ['tocyb'] + "denom": "tocyb", + "exponent": 0, + "aliases": [ + "tocyb" + ] } ], - base: 'tocyb', - name: 'Bostrom Tocyb', - display: 'tocyb', - symbol: 'TOCYB', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + "base": "tocyb", + "name": "Bostrom Tocyb", + "display": "tocyb", + "symbol": "TOCYB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'canto', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "canto", + "assets": [ { - description: - 'Canto is a Layer-1 blockchain built to deliver on the promise of DeFi', - denom_units: [ + "description": "Canto is a Layer-1 blockchain built to deliver on the promise of DeFi", + "denom_units": [ { - denom: 'acanto', - exponent: 0 + "denom": "acanto", + "exponent": 0 }, { - denom: 'canto', - exponent: 18 + "denom": "canto", + "exponent": 18 } ], - base: 'acanto', - name: 'Canto', - display: 'canto', - symbol: 'CANTO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + "base": "acanto", + "name": "Canto", + "display": "canto", + "symbol": "CANTO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg" }, - coingecko_id: 'canto', - images: [ + "coingecko_id": "canto", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg" } ] }, { - description: 'Tether USDt on Canto', - denom_units: [ + "description": "Tether USDt on Canto", + "denom_units": [ { - denom: - 'ibc/FAFF3F7B2FE30447544A27910DF77069763CF25472BFCF63A9E7C81F0AD545AC', - exponent: 0 + "denom": "ibc/FAFF3F7B2FE30447544A27910DF77069763CF25472BFCF63A9E7C81F0AD545AC", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/FAFF3F7B2FE30447544A27910DF77069763CF25472BFCF63A9E7C81F0AD545AC', - name: 'Tether USDt', - display: 'usdt', - symbol: 'USDt', - traces: [ + "type_asset": "ics20", + "base": "ibc/FAFF3F7B2FE30447544A27910DF77069763CF25472BFCF63A9E7C81F0AD545AC", + "name": "Tether USDt", + "display": "usdt", + "symbol": "USDt", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt', - channel_id: 'channel-87' + "type": "ibc", + "counterparty": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt", + "channel_id": "channel-87" }, - chain: { - channel_id: 'channel-13', - path: 'transfer/channel-13/erc20/tether/usdt' + "chain": { + "channel_id": "channel-13", + "path": "transfer/channel-13/erc20/tether/usdt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'carbon', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "carbon", + "assets": [ { - description: 'The native governance token of Carbon', - denom_units: [ + "description": "The native governance token of Carbon", + "denom_units": [ { - denom: 'swth', - exponent: 0 + "denom": "swth", + "exponent": 0 }, { - denom: 'dswth', - exponent: 8, - aliases: ['SWTH'] + "denom": "dswth", + "exponent": 8, + "aliases": [ + "SWTH" + ] } ], - type_asset: 'sdk.coin', - 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' + "type_asset": "sdk.coin", + "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', - images: [ + "coingecko_id": "switcheo", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg" } ] }, { - description: 'The native stablecoin of Carbon', - denom_units: [ + "description": "The native stablecoin of Carbon", + "denom_units": [ { - denom: 'usc', - exponent: 0 + "denom": "usc", + "exponent": 0 }, { - denom: 'dusc', - exponent: 8, - aliases: ['USC'] + "denom": "dusc", + "exponent": 8, + "aliases": [ + "USC" + ] } ], - type_asset: 'sdk.coin', - base: 'usc', - name: 'Carbon USD Coin', - display: 'dusc', - symbol: 'USC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.svg' + "type_asset": "sdk.coin", + "base": "usc", + "name": "Carbon USD Coin", + "display": "dusc", + "symbol": "USC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.svg" }, - coingecko_id: 'carbon-usd', - images: [ + "coingecko_id": "carbon-usd", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.svg" } ] }, { - description: 'BNB token on Carbon', - denom_units: [ + "description": "BNB token on Carbon", + "denom_units": [ { - denom: 'bnb.1.6.773edb', - exponent: 0 + "denom": "bnb.1.6.773edb", + "exponent": 0 }, { - denom: 'bnb', - exponent: 18, - aliases: ['BNB'] + "denom": "bnb", + "exponent": 18, + "aliases": [ + "BNB" + ] } ], - base: 'bnb.1.6.773edb', - name: 'Binance Coin', - display: 'bnb', - symbol: 'BNB', - traces: [ + "base": "bnb.1.6.773edb", + "name": "Binance Coin", + "display": "bnb", + "symbol": "BNB", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'binancesmartchain', - base_denom: 'wei', - contract: '0xb5D4f343412dC8efb6ff599d790074D0f1e8D430' + "type": "bridge", + "counterparty": { + "chain_name": "binancesmartchain", + "base_denom": "wei", + "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" }, - chain: { - contract: '0xb5D4f343412dC8efb6ff599d790074D0f1e8D430' + "chain": { + "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" }, - provider: 'PolyNetwork' + "provider": "PolyNetwork" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" } ] }, { - description: 'bNEO token on Carbon', - denom_units: [ + "description": "bNEO token on Carbon", + "denom_units": [ { - denom: 'bneo.1.14.e2e5f6', - exponent: 0 + "denom": "bneo.1.14.e2e5f6", + "exponent": 0 }, { - denom: 'bneo', - exponent: 8, - aliases: ['bNEO'] + "denom": "bneo", + "exponent": 8, + "aliases": [ + "bNEO" + ] } ], - base: 'bneo.1.14.e2e5f6', - name: 'BurgerNEO', - display: 'bneo', - symbol: 'bNEO', - traces: [ + "base": "bneo.1.14.e2e5f6", + "name": "BurgerNEO", + "display": "bneo", + "symbol": "bNEO", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'neo', - base_denom: '0x48c40d4666f93408be1bef038b6722404d9a4c2a', - contract: '0x8eb3bdf5ed4ac1516d316c6b1b207a3cf5eb7567' + "type": "bridge", + "counterparty": { + "chain_name": "neo", + "base_denom": "0x48c40d4666f93408be1bef038b6722404d9a4c2a", + "contract": "0x8eb3bdf5ed4ac1516d316c6b1b207a3cf5eb7567" }, - chain: { - contract: '0x8eb3bdf5ed4ac1516d316c6b1b207a3cf5eb7567' + "chain": { + "contract": "0x8eb3bdf5ed4ac1516d316c6b1b207a3cf5eb7567" }, - provider: 'PolyNetwork' + "provider": "PolyNetwork" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.svg" } ] }, { - description: 'BUSD (BEP-20) token on Carbon', - denom_units: [ + "description": "BUSD (BEP-20) token on Carbon", + "denom_units": [ { - denom: 'busd.1.6.754a80', - exponent: 0 + "denom": "busd.1.6.754a80", + "exponent": 0 }, { - denom: 'busd', - exponent: 18, - aliases: ['BUSD'] + "denom": "busd", + "exponent": 18, + "aliases": [ + "BUSD" + ] } ], - base: 'busd.1.6.754a80', - name: 'BUSD (BEP-20)', - display: 'busd', - symbol: 'BUSD', - traces: [ + "base": "busd.1.6.754a80", + "name": "BUSD (BEP-20)", + "display": "busd", + "symbol": "BUSD", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'binancesmartchain', - base_denom: '0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56', - contract: '0xb5D4f343412dC8efb6ff599d790074D0f1e8D430' + "type": "bridge", + "counterparty": { + "chain_name": "binancesmartchain", + "base_denom": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" }, - chain: { - contract: '0xb5D4f343412dC8efb6ff599d790074D0f1e8D430' + "chain": { + "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" }, - provider: 'PolyNetwork' + "provider": "PolyNetwork" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" } ] }, { - description: 'Carbon Wrapped GLP on Carbon', - denom_units: [ + "description": "Carbon Wrapped GLP on Carbon", + "denom_units": [ { - denom: 'cglp.1.19.1698d3', - exponent: 0 + "denom": "cglp.1.19.1698d3", + "exponent": 0 }, { - denom: 'cglp', - exponent: 18, - aliases: ['CGLP'] + "denom": "cglp", + "exponent": 18, + "aliases": [ + "CGLP" + ] } ], - base: 'cglp.1.19.1698d3', - name: 'Carbon Wrapped GLP', - display: 'cglp', - symbol: 'CGLP', - traces: [ + "base": "cglp.1.19.1698d3", + "name": "Carbon Wrapped GLP", + "display": "cglp", + "symbol": "CGLP", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'arbitrum', - base_denom: '0xab19bdaeb37242fa0f30486195f45b9cf5361b78', - contract: '0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad' + "type": "wrapped", + "counterparty": { + "chain_name": "arbitrum", + "base_denom": "0xab19bdaeb37242fa0f30486195f45b9cf5361b78", + "contract": "0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad" }, - chain: { - contract: '0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad' + "chain": { + "contract": "0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad" }, - provider: 'PolyNetwork' + "provider": "PolyNetwork" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.svg" } ] }, { - description: 'Grouped USD on Carbon', - denom_units: [ + "description": "Grouped USD on Carbon", + "denom_units": [ { - denom: 'cgt/1', - exponent: 0 + "denom": "cgt/1", + "exponent": 0 }, { - denom: 'usd', - exponent: 18, - aliases: ['USD'] + "denom": "usd", + "exponent": 18, + "aliases": [ + "USD" + ] } ], - base: 'cgt/1', - name: 'Carbon Grouped USD', - display: 'usd', - symbol: 'USD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.svg' + "base": "cgt/1", + "name": "Carbon Grouped USD", + "display": "usd", + "symbol": "USD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.svg" } ] }, { - description: 'ETH (Arbitrum) token on Carbon', - denom_units: [ + "description": "ETH (Arbitrum) token on Carbon", + "denom_units": [ { - denom: 'eth.1.19.c3b805', - exponent: 0 + "denom": "eth.1.19.c3b805", + "exponent": 0 }, { - denom: 'eth', - exponent: 18, - aliases: ['ETH'] + "denom": "eth", + "exponent": 18, + "aliases": [ + "ETH" + ] } ], - base: 'eth.1.19.c3b805', - name: 'Ethereum (Arbitrum)', - display: 'eth', - symbol: 'ETH', - traces: [ + "base": "eth.1.19.c3b805", + "name": "Ethereum (Arbitrum)", + "display": "eth", + "symbol": "ETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'arbitrum', - base_denom: 'wei', - contract: '0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad' + "type": "bridge", + "counterparty": { + "chain_name": "arbitrum", + "base_denom": "wei", + "contract": "0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad" }, - chain: { - contract: '0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad' + "chain": { + "contract": "0xb1e6f8820826491fcc5519f84ff4e2bdbb6e3cad" }, - provider: 'PolyNetwork' + "provider": "PolyNetwork" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" } ] }, { - description: 'ETH (ERC20) token on Carbon', - denom_units: [ + "description": "ETH (ERC20) token on Carbon", + "denom_units": [ { - denom: 'eth.1.2.942d87', - exponent: 0 + "denom": "eth.1.2.942d87", + "exponent": 0 }, { - denom: 'eth', - exponent: 18, - aliases: ['ETH'] + "denom": "eth", + "exponent": 18, + "aliases": [ + "ETH" + ] } ], - base: 'eth.1.2.942d87', - name: 'Ethereum (ERC20)', - display: 'eth', - symbol: 'ETH', - traces: [ + "base": "eth.1.2.942d87", + "name": "Ethereum (ERC20)", + "display": "eth", + "symbol": "ETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: 'wei', - contract: '0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei", + "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" }, - chain: { - contract: '0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54' + "chain": { + "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" }, - provider: 'PolyNetwork' + "provider": "PolyNetwork" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" } ] }, { - description: 'STARS token on Carbon', - denom_units: [ + "description": "STARS token on Carbon", + "denom_units": [ { - denom: - 'ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C', - exponent: 0 + "denom": "ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C", + "exponent": 0 }, { - denom: 'stars', - exponent: 6, - aliases: ['STARS'] + "denom": "stars", + "exponent": 6, + "aliases": [ + "STARS" + ] } ], - type_asset: 'ics20', - base: 'ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C', - name: 'Stargaze Staking Coin', - display: 'stars', - symbol: 'STARS', - traces: [ + "type_asset": "ics20", + "base": "ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C", + "name": "Stargaze Staking Coin", + "display": "stars", + "symbol": "STARS", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'stargaze', - base_denom: 'ustars', - channel_id: 'channel-123' + "type": "ibc", + "counterparty": { + "chain_name": "stargaze", + "base_denom": "ustars", + "channel_id": "channel-123" }, - chain: { - channel_id: 'channel-15', - path: 'transfer/channel-15/ustars' + "chain": { + "channel_id": "channel-15", + "path": "transfer/channel-15/ustars" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" } ] }, { - description: 'LUNA token on Carbon', - denom_units: [ + "description": "LUNA token on Carbon", + "denom_units": [ { - denom: - 'ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5', - exponent: 0 + "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", + "exponent": 0 }, { - denom: 'luna', - exponent: 6, - aliases: ['LUNA'] + "denom": "luna", + "exponent": 6, + "aliases": [ + "LUNA" + ] } ], - type_asset: 'ics20', - base: 'ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5', - name: 'Terra Staking Coin', - display: 'luna', - symbol: 'LUNA', - traces: [ + "type_asset": "ics20", + "base": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", + "name": "Terra Staking Coin", + "display": "luna", + "symbol": "LUNA", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'terra2', - base_denom: 'uluna', - channel_id: 'channel-36' + "type": "ibc", + "counterparty": { + "chain_name": "terra2", + "base_denom": "uluna", + "channel_id": "channel-36" }, - chain: { - channel_id: 'channel-12', - path: 'transfer/channel-12/uluna' + "chain": { + "channel_id": "channel-12", + "path": "transfer/channel-12/uluna" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png" } ] }, { - description: 'STRD token on Carbon', - denom_units: [ + "description": "STRD token on Carbon", + "denom_units": [ { - denom: - 'ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5', - exponent: 0 + "denom": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "exponent": 0 }, { - denom: 'strd', - exponent: 6, - aliases: ['STRD'] + "denom": "strd", + "exponent": 6, + "aliases": [ + "STRD" + ] } ], - type_asset: 'ics20', - base: 'ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5', - name: 'Stride', - display: 'strd', - symbol: 'STRD', - traces: [ + "type_asset": "ics20", + "base": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "name": "Stride", + "display": "strd", + "symbol": "STRD", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'stride', - base_denom: 'ustrd', - channel_id: 'channel-47' + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "ustrd", + "channel_id": "channel-47" }, - chain: { - channel_id: 'channel-8', - path: 'transfer/channel-8/ustrd' + "chain": { + "channel_id": "channel-8", + "path": "transfer/channel-8/ustrd" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } ] }, { - description: 'EVMOS token on Carbon', - denom_units: [ + "description": "EVMOS token on Carbon", + "denom_units": [ { - denom: - 'ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364', - exponent: 0 + "denom": "ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364", + "exponent": 0 }, { - denom: 'evmos', - exponent: 18, - aliases: ['EVMOS'] + "denom": "evmos", + "exponent": 18, + "aliases": [ + "EVMOS" + ] } ], - type_asset: 'ics20', - base: 'ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364', - name: 'Evmos', - display: 'evmos', - symbol: 'EVMOS', - traces: [ + "type_asset": "ics20", + "base": "ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364", + "name": "Evmos", + "display": "evmos", + "symbol": "EVMOS", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'evmos', - base_denom: 'aevmos', - channel_id: 'channel-23' + "type": "ibc", + "counterparty": { + "chain_name": "evmos", + "base_denom": "aevmos", + "channel_id": "channel-23" }, - chain: { - channel_id: 'channel-6', - path: 'transfer/channel-6/aevmos' + "chain": { + "channel_id": "channel-6", + "path": "transfer/channel-6/aevmos" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" } ] }, { - description: 'IRIS token on Carbon', - denom_units: [ + "description": "IRIS token on Carbon", + "denom_units": [ { - denom: - 'ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118', - exponent: 0 + "denom": "ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118", + "exponent": 0 }, { - denom: 'iris', - exponent: 6, - aliases: ['IRIS'] + "denom": "iris", + "exponent": 6, + "aliases": [ + "IRIS" + ] } ], - type_asset: 'ics20', - base: 'ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118', - name: 'IRIS Hub Staking Coin', - display: 'iris', - symbol: 'IRIS', - traces: [ + "type_asset": "ics20", + "base": "ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118", + "name": "IRIS Hub Staking Coin", + "display": "iris", + "symbol": "IRIS", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'irisnet', - base_denom: 'uiris', - channel_id: 'channel-68' + "type": "ibc", + "counterparty": { + "chain_name": "irisnet", + "base_denom": "uiris", + "channel_id": "channel-68" }, - chain: { - channel_id: 'channel-28', - path: 'transfer/channel-28/uiris' + "chain": { + "channel_id": "channel-28", + "path": "transfer/channel-28/uiris" } } ], - 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' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" } ] }, { - description: 'KUJI token on Carbon', - denom_units: [ + "description": "KUJI token on Carbon", + "denom_units": [ { - denom: - 'ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5', - exponent: 0 + "denom": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", + "exponent": 0 }, { - denom: 'kuji', - exponent: 6, - aliases: ['KUJI'] + "denom": "kuji", + "exponent": 6, + "aliases": [ + "KUJI" + ] } ], - type_asset: 'ics20', - base: 'ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5', - name: 'Kujira', - display: 'kuji', - symbol: 'KUJI', - traces: [ + "type_asset": "ics20", + "base": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", + "name": "Kujira", + "display": "kuji", + "symbol": "KUJI", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kujira', - base_denom: 'ukuji', - channel_id: 'channel-46' + "type": "ibc", + "counterparty": { + "chain_name": "kujira", + "base_denom": "ukuji", + "channel_id": "channel-46" }, - chain: { - channel_id: 'channel-9', - path: 'transfer/channel-9/ukuji' + "chain": { + "channel_id": "channel-9", + "path": "transfer/channel-9/ukuji" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png" } ] }, { - description: 'stOSMO token on Carbon', - denom_units: [ + "description": "stOSMO token on Carbon", + "denom_units": [ { - denom: - 'ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93', - exponent: 0 + "denom": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", + "exponent": 0 }, { - denom: 'stosmo', - exponent: 6, - aliases: ['stOSMO'] + "denom": "stosmo", + "exponent": 6, + "aliases": [ + "stOSMO" + ] } ], - type_asset: 'ics20', - base: 'ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93', - name: 'Stride Staked OSMO', - display: 'stosmo', - symbol: 'stOSMO', - traces: [ + "type_asset": "ics20", + "base": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", + "name": "Stride Staked OSMO", + "display": "stosmo", + "symbol": "stOSMO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'stride', - base_denom: 'stuosmo', - channel_id: 'channel-47' + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stuosmo", + "channel_id": "channel-47" }, - chain: { - channel_id: 'channel-8', - path: 'transfer/channel-8/stuosmo' + "chain": { + "channel_id": "channel-8", + "path": "transfer/channel-8/stuosmo" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" } ] }, { - description: 'CANTO token on Carbon', - denom_units: [ + "description": "CANTO token on Carbon", + "denom_units": [ { - denom: - 'ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861', - exponent: 0 + "denom": "ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861", + "exponent": 0 }, { - denom: 'canto', - exponent: 18, - aliases: ['CANTO'] + "denom": "canto", + "exponent": 18, + "aliases": [ + "CANTO" + ] } ], - type_asset: 'ics20', - base: 'ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861', - name: 'Canto', - display: 'canto', - symbol: 'CANTO', - traces: [ + "type_asset": "ics20", + "base": "ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861", + "name": "Canto", + "display": "canto", + "symbol": "CANTO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'canto', - base_denom: 'acanto', - channel_id: 'channel-6' + "type": "ibc", + "counterparty": { + "chain_name": "canto", + "base_denom": "acanto", + "channel_id": "channel-6" }, - chain: { - channel_id: 'channel-18', - path: 'transfer/channel-18/acanto' + "chain": { + "channel_id": "channel-18", + "path": "transfer/channel-18/acanto" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png" } ] }, { - description: 'Cosmos governance token on Carbon', - denom_units: [ + "description": "Cosmos governance token on Carbon", + "denom_units": [ { - denom: - 'ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701', - exponent: 0 + "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", + "exponent": 0 }, { - denom: 'atom', - exponent: 6, - aliases: ['ATOM'] + "denom": "atom", + "exponent": 6, + "aliases": [ + "ATOM" + ] } ], - type_asset: 'ics20', - base: 'ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701', - name: 'Cosmos', - display: 'atom', - symbol: 'ATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", + "name": "Cosmos", + "display": "atom", + "symbol": "ATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'cosmoshub', - base_denom: 'uatom', - channel_id: 'channel-342' + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-342" }, - chain: { - channel_id: 'channel-3', - path: 'transfer/channel-3/uatom' + "chain": { + "channel_id": "channel-3", + "path": "transfer/channel-3/uatom" } } ], - 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' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ] }, { - description: 'stATOM token on Carbon', - denom_units: [ + "description": "stATOM token on Carbon", + "denom_units": [ { - denom: - 'ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C', - exponent: 0 + "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "exponent": 0 }, { - denom: 'statom', - exponent: 6, - aliases: ['stATOM'] + "denom": "statom", + "exponent": 6, + "aliases": [ + "stATOM" + ] } ], - type_asset: 'ics20', - base: 'ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C', - name: 'Stride Staked ATOM', - display: 'statom', - symbol: 'stATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "name": "Stride Staked ATOM", + "display": "statom", + "symbol": "stATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'stride', - base_denom: 'stuatom', - channel_id: 'channel-47' + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stuatom", + "channel_id": "channel-47" }, - chain: { - channel_id: 'channel-8', - path: 'transfer/channel-8/stuatom' + "chain": { + "channel_id": "channel-8", + "path": "transfer/channel-8/stuatom" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" } ] }, { - description: 'OSMO token on Carbon', - denom_units: [ + "description": "OSMO token on Carbon", + "denom_units": [ { - denom: - 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', - exponent: 0 + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "exponent": 0 }, { - denom: 'osmo', - exponent: 6, - aliases: ['OSMO'] + "denom": "osmo", + "exponent": 6, + "aliases": [ + "OSMO" + ] } ], - type_asset: 'ics20', - base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', - name: 'Osmosis', - display: 'osmo', - symbol: 'OSMO', - traces: [ + "type_asset": "ics20", + "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: 'uosmo', - channel_id: 'channel-188' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo", + "channel_id": "channel-188" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/uosmo' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uosmo" } } ], - 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' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } ] }, { - description: 'USDC (ERC20) token on Carbon', - denom_units: [ + "description": "USDC (ERC20) token on Carbon", + "denom_units": [ { - denom: 'usdc.1.2.343151', - exponent: 0 + "denom": "usdc.1.2.343151", + "exponent": 0 }, { - denom: 'usdc', - exponent: 6, - aliases: ['USDC'] + "denom": "usdc", + "exponent": 6, + "aliases": [ + "USDC" + ] } ], - base: 'usdc.1.2.343151', - name: 'Circle USD', - display: 'usdc', - symbol: 'USDC', - traces: [ + "base": "usdc.1.2.343151", + "name": "Circle USD", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48', - contract: '0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" }, - chain: { - contract: '0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54' + "chain": { + "contract": "0x9a016ce184a22dbf6c17daa59eb7d3140dbd1c54" }, - provider: 'PolyNetwork' + "provider": "PolyNetwork" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] }, { - description: 'USD Coin (BEP-20) token on Carbon', - denom_units: [ + "description": "USD Coin (BEP-20) token on Carbon", + "denom_units": [ { - denom: 'usdc.1.6.53ff75', - exponent: 0 + "denom": "usdc.1.6.53ff75", + "exponent": 0 }, { - denom: 'usdc', - exponent: 18, - aliases: ['USDC'] + "denom": "usdc", + "exponent": 18, + "aliases": [ + "USDC" + ] } ], - base: 'usdc.1.6.53ff75', - name: 'USD Coin (BEP-20)', - display: 'usdc', - symbol: 'USDC', - traces: [ + "base": "usdc.1.6.53ff75", + "name": "USD Coin (BEP-20)", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'binancesmartchain', - base_denom: '0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d', - contract: '0xb5D4f343412dC8efb6ff599d790074D0f1e8D430' + "type": "bridge", + "counterparty": { + "chain_name": "binancesmartchain", + "base_denom": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d", + "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" }, - chain: { - contract: '0xb5D4f343412dC8efb6ff599d790074D0f1e8D430' + "chain": { + "contract": "0xb5D4f343412dC8efb6ff599d790074D0f1e8D430" }, - provider: 'PolyNetwork' + "provider": "PolyNetwork" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] }, { - description: 'ZIL token on Carbon', - denom_units: [ + "description": "ZIL token on Carbon", + "denom_units": [ { - denom: 'zil.1.18.1a4a06', - exponent: 0 + "denom": "zil.1.18.1a4a06", + "exponent": 0 }, { - denom: 'zil', - exponent: 12, - aliases: ['ZIL'] + "denom": "zil", + "exponent": 12, + "aliases": [ + "ZIL" + ] } ], - base: 'zil.1.18.1a4a06', - name: 'Zilliqa', - display: 'zil', - symbol: 'ZIL', - traces: [ + "base": "zil.1.18.1a4a06", + "name": "Zilliqa", + "display": "zil", + "symbol": "ZIL", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'zilliqa', - base_denom: 'wei', - contract: '0xd73c6b871b4d0e130d64581993b745fc938a5be7' + "type": "bridge", + "counterparty": { + "chain_name": "zilliqa", + "base_denom": "wei", + "contract": "0xd73c6b871b4d0e130d64581993b745fc938a5be7" }, - chain: { - contract: '0xd73c6b871b4d0e130d64581993b745fc938a5be7' + "chain": { + "contract": "0xd73c6b871b4d0e130d64581993b745fc938a5be7" }, - provider: 'PolyNetwork' + "provider": "PolyNetwork" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/zil.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/zil.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/zil.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/zil.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/zil.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/zil.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/zil.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/zil.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'celestia', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "celestia", + "assets": [ { - description: '', - denom_units: [ + "description": "", + "denom_units": [ { - denom: 'utia', - exponent: 0 + "denom": "utia", + "exponent": 0 }, { - denom: 'tia', - exponent: 6 + "denom": "tia", + "exponent": 6 } ], - base: 'utia', - name: 'Celestia', - display: 'tia', - symbol: 'TIA', - coingecko_id: 'celestia', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + "base": "utia", + "name": "Celestia", + "display": "tia", + "symbol": "TIA", + "coingecko_id": "celestia", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg', - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + "base": "ucrbrus", + "name": "Cerberus", + "display": "crbrus", + "symbol": "CRBRUS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg" }, - coingecko_id: 'cerberus-2', - images: [ + "coingecko_id": "cerberus-2", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'chain4energy', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "chain4energy", + "assets": [ { - description: 'The native token of Chain4Energy', - denom_units: [ + "description": "The native token of Chain4Energy", + "denom_units": [ { - denom: 'uc4e', - exponent: 0 + "denom": "uc4e", + "exponent": 0 }, { - denom: 'c4e', - exponent: 6 + "denom": "c4e", + "exponent": 6 } ], - base: 'uc4e', - name: 'Chain4Energy', - display: 'c4e', - symbol: 'C4E', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' + "base": "uc4e", + "name": "Chain4Energy", + "display": "c4e", + "symbol": "C4E", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" } ] } ] }, { - $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', - images: [ + "coingecko_id": "cheqd-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + "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" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + "base": "uhuahua", + "name": "Chihuahua", + "display": "huahua", + "symbol": "HUAHUA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg" }, - coingecko_id: 'chihuahua-token', - images: [ + "coingecko_id": "chihuahua-token", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg" } ] }, { - description: 'Puppy', - denom_units: [ + "description": "Puppy", + "denom_units": [ { - denom: - 'cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef', - exponent: 0 + "denom": "cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef", + "exponent": 0 }, { - denom: 'puppy', - exponent: 6 + "denom": "puppy", + "exponent": 6 } ], - type_asset: 'cw20', - address: - 'chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef', - base: 'cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef', - name: 'Puppy', - display: 'puppy', - symbol: 'PUPPY', - images: [ + "type_asset": "cw20", + "address": "chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef", + "base": "cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef", + "name": "Puppy", + "display": "puppy", + "symbol": "PUPPY", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png" } }, { - description: 'has a hat', - denom_units: [ + "description": "has a hat", + "denom_units": [ { - denom: - 'factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat', - exponent: 0 + "denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", + "exponent": 0 }, { - denom: 'achihuahuawifhat', - exponent: 6 + "denom": "achihuahuawifhat", + "exponent": 6 } ], - base: 'factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat', - name: 'Chihuahuawifhat', - display: 'achihuahuawifhat', - symbol: 'BADDOG', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + "base": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", + "name": "Chihuahuawifhat", + "display": "achihuahuawifhat", + "symbol": "BADDOG", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png" } ] }, { - description: 'Woof', - denom_units: [ + "description": "Woof", + "denom_units": [ { - denom: - 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof', - exponent: 0 + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", + "exponent": 0 }, { - denom: 'WOOF', - exponent: 6 + "denom": "WOOF", + "exponent": 6 } ], - base: 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof', - name: 'WOOF', - display: 'WOOF', - symbol: 'WOOF', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + "base": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", + "name": "WOOF", + "display": "WOOF", + "symbol": "WOOF", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png" } ] }, { - description: 'Tacos', - denom_units: [ + "description": "Tacos", + "denom_units": [ { - denom: - 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos', - exponent: 0 + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", + "exponent": 0 }, { - denom: 'TACOS', - exponent: 6 + "denom": "TACOS", + "exponent": 6 } ], - base: 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos', - name: 'TACOS', - display: 'TACOS', - symbol: 'TACOS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png' + "base": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", + "name": "TACOS", + "display": "TACOS", + "symbol": "TACOS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png" } ] }, { - description: 'Weed', - denom_units: [ + "description": "Weed", + "denom_units": [ { - denom: - 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed', - exponent: 0 + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed", + "exponent": 0 }, { - denom: 'WEED', - exponent: 6 + "denom": "WEED", + "exponent": 6 } ], - base: 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed', - name: 'WEED', - display: 'WEED', - symbol: 'WEED', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png' + "base": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed", + "name": "WEED", + "display": "WEED", + "symbol": "WEED", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png" } ] }, { - description: 'Bulldog', - denom_units: [ + "description": "Bulldog", + "denom_units": [ { - denom: - 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog', - exponent: 0 + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", + "exponent": 0 }, { - denom: 'BDOG', - exponent: 6 + "denom": "BDOG", + "exponent": 6 } ], - base: 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog', - name: 'BDOG', - display: 'BDOG', - symbol: 'BDOG', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png' + "base": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", + "name": "BDOG", + "display": "BDOG", + "symbol": "BDOG", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png" } ] }, { - description: 'CaneCorso', - denom_units: [ + "description": "CaneCorso", + "denom_units": [ { - denom: - 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso', - exponent: 0 + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", + "exponent": 0 }, { - denom: 'CORSO', - exponent: 6 + "denom": "CORSO", + "exponent": 6 } ], - base: 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso', - name: 'CORSO', - display: 'CORSO', - symbol: 'CORSO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png' + "base": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", + "name": "CORSO", + "display": "CORSO", + "symbol": "CORSO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'chimba', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "chimba", + "assets": [ { - description: 'The first blokchain in colombia', - denom_units: [ + "description": "The first blokchain in colombia", + "denom_units": [ { - denom: 'ucmba', - exponent: 0 + "denom": "ucmba", + "exponent": 0 }, { - denom: 'chimba', - exponent: 6 + "denom": "chimba", + "exponent": 6 } ], - base: 'ucmba', - name: 'Chimba', - display: 'chimba', - symbol: 'CMBA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg' + "base": "ucmba", + "name": "Chimba", + "display": "chimba", + "symbol": "CMBA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "cht", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chronicnetwork/images/cht.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chronicnetwork/images/cht.png" } ] }, { - 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', - images: [ + "coingecko_id": "cgas", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chronicnetwork/images/cgas.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chronicnetwork/images/cgas.png" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + "base": "ucmdx", + "name": "Comdex", + "display": "cmdx", + "symbol": "CMDX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" }, - coingecko_id: 'comdex', - images: [ + "coingecko_id": "comdex", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" } ] }, { - description: 'Governance Token of Harbor protocol on Comdex network', - denom_units: [ + "description": "Governance Token of Harbor protocol on Comdex network", + "denom_units": [ { - denom: 'uharbor', - exponent: 0 + "denom": "uharbor", + "exponent": 0 }, { - denom: 'harbor', - exponent: 6 + "denom": "harbor", + "exponent": 6 } ], - base: 'uharbor', - name: 'Harbor', - display: 'harbor', - symbol: 'HARBOR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + "base": "uharbor", + "name": "Harbor", + "display": "harbor", + "symbol": "HARBOR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg" }, - coingecko_id: 'harbor-2', - images: [ + "coingecko_id": "harbor-2", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg" } ] }, { - description: 'Stable Token of Harbor protocol on Comdex network', - denom_units: [ + "description": "Stable Token of Harbor protocol on Comdex network", + "denom_units": [ { - denom: 'ucmst', - exponent: 0 + "denom": "ucmst", + "exponent": 0 }, { - denom: 'cmst', - exponent: 6 + "denom": "cmst", + "exponent": 6 } ], - base: 'ucmst', - name: 'CMST', - display: 'cmst', - symbol: 'CMST', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + "base": "ucmst", + "name": "CMST", + "display": "cmst", + "symbol": "CMST", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg" }, - coingecko_id: 'composite', - images: [ + "coingecko_id": "composite", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'commercionetwork', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "commercionetwork", + "assets": [ { - description: 'The native token of Commercio.network', - denom_units: [ + "description": "The native token of Commercio.network", + "denom_units": [ { - denom: 'ucommercio', - exponent: 0, - aliases: [] + "denom": "ucommercio", + "exponent": 0, + "aliases": [] }, { - denom: 'commercio', - exponent: 6, - aliases: [] + "denom": "commercio", + "exponent": 6, + "aliases": [] } ], - base: 'ucommercio', - display: 'commercio', - name: 'Commercio', - symbol: 'COM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.svg' + "base": "ucommercio", + "display": "commercio", + "name": "Commercio", + "symbol": "COM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.svg" } ] }, { - description: 'The cash credit token of Commercio.network', - denom_units: [ + "description": "The cash credit token of Commercio.network", + "denom_units": [ { - denom: 'uccc', - exponent: 0, - aliases: [] + "denom": "uccc", + "exponent": 0, + "aliases": [] }, { - denom: 'ccc', - exponent: 6, - aliases: [] + "denom": "ccc", + "exponent": 6, + "aliases": [] } ], - base: 'uccc', - display: 'ccc', - name: 'Commercio Cash Credit', - symbol: 'CCC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/ccc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/ccc.svg' + "base": "uccc", + "display": "ccc", + "name": "Commercio Cash Credit", + "symbol": "CCC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/ccc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/ccc.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/ccc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/ccc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/ccc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/ccc.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'composable', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "composable", + "assets": [ { - description: 'The native staking and governance token of Composable.', - denom_units: [ + "description": "The native staking and governance token of Composable.", + "denom_units": [ { - denom: 'ppica', - exponent: 0 + "denom": "ppica", + "exponent": 0 }, { - denom: 'pica', - exponent: 12 + "denom": "pica", + "exponent": 12 } ], - base: 'ppica', - name: 'Pica', - display: 'pica', - symbol: 'PICA', - coingecko_id: 'picasso', - traces: [ + "base": "ppica", + "name": "Pica", + "display": "pica", + "symbol": "PICA", + "coingecko_id": "picasso", + "traces": [ { - type: 'additional-mintage', - counterparty: { - chain_name: 'picasso', - base_denom: 'ppica' + "type": "additional-mintage", + "counterparty": { + "chain_name": "picasso", + "base_denom": "ppica" }, - provider: 'Composable Finance' + "provider": "Composable Finance" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'picasso', - base_denom: 'ppica' + "image_sync": { + "chain_name": "picasso", + "base_denom": "ppica" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" } }, { - description: - 'The native staking and governance token of Kusama Relay Chain.', - denom_units: [ + "description": "The native staking and governance token of Kusama Relay Chain.", + "denom_units": [ { - denom: - 'ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9', - exponent: 0, - aliases: ['4'] + "denom": "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9", + "exponent": 0, + "aliases": [ + "4" + ] }, { - denom: 'ksm', - exponent: 12 + "denom": "ksm", + "exponent": 12 } ], - type_asset: 'ics20', - base: 'ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9', - name: 'KSM', - display: 'ksm', - symbol: 'KSM', - traces: [ + "type_asset": "ics20", + "base": "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9", + "name": "KSM", + "display": "ksm", + "symbol": "KSM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'picasso', - base_denom: '4', - channel_id: 'channel-17' + "type": "ibc", + "counterparty": { + "chain_name": "picasso", + "base_denom": "4", + "channel_id": "channel-17" }, - chain: { - channel_id: 'channel-2', - path: 'transfer/channel-2/4' + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/4" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'picasso', - base_denom: '4' + "image_sync": { + "chain_name": "picasso", + "base_denom": "4" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg" } }, { - description: - 'The native staking and governance token of Polkadot Relay Chain.', - denom_units: [ + "description": "The native staking and governance token of Polkadot Relay Chain.", + "denom_units": [ { - denom: - 'ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366', - exponent: 0, - aliases: ['79228162514264337593543950342'] + "denom": "ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366", + "exponent": 0, + "aliases": [ + "79228162514264337593543950342" + ] }, { - denom: 'dot', - exponent: 10 + "denom": "dot", + "exponent": 10 } ], - type_asset: 'ics20', - base: 'ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366', - name: 'DOT', - display: 'dot', - symbol: 'DOT', - traces: [ + "type_asset": "ics20", + "base": "ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366", + "name": "DOT", + "display": "dot", + "symbol": "DOT", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'picasso', - base_denom: '79228162514264337593543950342', - channel_id: 'channel-17' + "type": "ibc", + "counterparty": { + "chain_name": "picasso", + "base_denom": "79228162514264337593543950342", + "channel_id": "channel-17" }, - chain: { - channel_id: 'channel-2', - path: 'transfer/channel-2/transfer/channel-15/79228162514264337593543950342' + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/transfer/channel-15/79228162514264337593543950342" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'picasso', - base_denom: '79228162514264337593543950342' + "image_sync": { + "chain_name": "picasso", + "base_denom": "79228162514264337593543950342" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } }, { - description: - 'The native staking and governance token of Statemine parachain.', - denom_units: [ + "description": "The native staking and governance token of Statemine parachain.", + "denom_units": [ { - denom: - 'ibc/F3EC9F834E57DF704FA3AEAF14E8391C2E58397FE56960AD70E67562990D8265', - exponent: 0, - aliases: ['130'] + "denom": "ibc/F3EC9F834E57DF704FA3AEAF14E8391C2E58397FE56960AD70E67562990D8265", + "exponent": 0, + "aliases": [ + "130" + ] }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/F3EC9F834E57DF704FA3AEAF14E8391C2E58397FE56960AD70E67562990D8265', - name: 'USDT', - display: 'usdt', - symbol: 'USDT', - traces: [ + "type_asset": "ics20", + "base": "ibc/F3EC9F834E57DF704FA3AEAF14E8391C2E58397FE56960AD70E67562990D8265", + "name": "USDT", + "display": "usdt", + "symbol": "USDT", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'picasso', - base_denom: '130', - channel_id: 'channel-17' + "type": "ibc", + "counterparty": { + "chain_name": "picasso", + "base_denom": "130", + "channel_id": "channel-17" }, - chain: { - channel_id: 'channel-2', - path: 'transfer/channel-2/130' + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/130" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'picasso', - base_denom: '130' + "image_sync": { + "chain_name": "picasso", + "base_denom": "130" } } ] @@ -7186,25795 +7298,25659 @@ const assets: AssetList[] = [ ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'conscious', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "conscious", + "assets": [ { - description: - 'Cvn is a Layer-1 blockchain built to deliver on the promise of DeFi', - denom_units: [ + "description": "Cvn is a Layer-1 blockchain built to deliver on the promise of DeFi", + "denom_units": [ { - denom: 'acvnt', - exponent: 0 + "denom": "acvnt", + "exponent": 0 }, { - denom: 'cvnt', - exponent: 18 + "denom": "cvnt", + "exponent": 18 } ], - base: 'acvnt', - name: 'Cvn', - display: 'cvnt', - symbol: 'CVN', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg', - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png' + "base": "acvnt", + "name": "Cvn", + "display": "cvnt", + "symbol": "CVN", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png" }, - coingecko_id: 'consciousdao' + "coingecko_id": "consciousdao" } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'coreum', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "coreum", + "assets": [ { - description: 'The native token of Coreum', - denom_units: [ + "description": "The native token of Coreum", + "denom_units": [ { - denom: 'ucore', - exponent: 0 + "denom": "ucore", + "exponent": 0 }, { - denom: 'core', - exponent: 6 + "denom": "core", + "exponent": 6 } ], - base: 'ucore', - name: 'Coreum', - display: 'core', - symbol: 'COREUM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + "base": "ucore", + "name": "Coreum", + "display": "core", + "symbol": "COREUM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg" }, - coingecko_id: 'coreum', - keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'], - images: [ + "coingecko_id": "coreum", + "keywords": [ + "dex", + "staking", + "wasm", + "assets", + "nft" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg" } ] } ] }, { - $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 Hub Atom', - display: 'atom', - symbol: 'ATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "base": "uatom", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" }, - coingecko_id: 'cosmos', - images: [ + "coingecko_id": "cosmos", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ] }, { - description: 'Tether USDt on the Cosmos Hub', - denom_units: [ + "description": "Tether USDt on the Cosmos Hub", + "denom_units": [ { - denom: - 'ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0', - exponent: 0 + "denom": "ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0', - name: 'Tether USDt', - display: 'usdt', - symbol: 'USDt', - traces: [ + "type_asset": "ics20", + "base": "ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0", + "name": "Tether USDt", + "display": "usdt", + "symbol": "USDt", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt', - channel_id: 'channel-0' + "type": "ibc", + "counterparty": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt", + "channel_id": "channel-0" }, - chain: { - channel_id: 'channel-277', - path: 'transfer/channel-277/erc20/tether/usdt' + "chain": { + "channel_id": "channel-277", + "path": "transfer/channel-277/erc20/tether/usdt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } }, { - description: 'FX on Cosmos Hub', - denom_units: [ + "description": "FX on Cosmos Hub", + "denom_units": [ { - denom: - 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729', - exponent: 0, - aliases: ['FX'] + "denom": "ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729", + "exponent": 0, + "aliases": [ + "FX" + ] } ], - type_asset: 'ics20', - base: 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729', - name: 'Function X', - display: 'FX', - symbol: 'FX', - traces: [ + "type_asset": "ics20", + "base": "ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729", + "name": "Function X", + "display": "FX", + "symbol": "FX", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'fxcore', - base_denom: 'FX', - channel_id: 'channel-10' + "type": "ibc", + "counterparty": { + "chain_name": "fxcore", + "base_denom": "FX", + "channel_id": "channel-10" }, - chain: { - channel_id: 'channel-585', - path: 'transfer/channel-585/FX' + "chain": { + "channel_id": "channel-585", + "path": "transfer/channel-585/FX" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'fxcore', - base_denom: 'FX' + "image_sync": { + "chain_name": "fxcore", + "base_denom": "FX" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'coss', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "coss", + "assets": [ { - description: 'The native staking and governance token of the COSS.', - denom_units: [ + "description": "The native staking and governance token of the COSS.", + "denom_units": [ { - denom: 'ucgas', - exponent: 0 + "denom": "ucgas", + "exponent": 0 }, { - denom: 'cgas', - exponent: 6 + "denom": "cgas", + "exponent": 6 } ], - base: 'ucgas', - name: 'CGAS', - display: 'cgas', - symbol: 'CGAS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/cgas.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/cgas.svg' + "base": "ucgas", + "name": "CGAS", + "display": "cgas", + "symbol": "CGAS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/cgas.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/cgas.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/cgas.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/cgas.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/cgas.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/cgas.svg" } ] }, { - description: 'The inscription token of the COSS.', - denom_units: [ + "description": "The inscription token of the COSS.", + "denom_units": [ { - denom: 'ucoss', - exponent: 0 + "denom": "ucoss", + "exponent": 0 }, { - denom: 'coss', - exponent: 6 + "denom": "coss", + "exponent": 6 } ], - base: 'ucoss', - name: 'COSS', - display: 'coss', - symbol: 'COSS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.svg' + "base": "ucoss", + "name": "COSS", + "display": "coss", + "symbol": "COSS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.svg" } ] } ] }, { - $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 + "denom": "ucre", + "exponent": 0 }, { - denom: 'cre', - exponent: 6 + "denom": "cre", + "exponent": 6 } ], - 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', - images: [ + "coingecko_id": "crescent-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg" } ] }, { - description: 'The bonded token of Crescent', - denom_units: [ + "description": "The bonded token of Crescent", + "denom_units": [ { - denom: 'ubcre', - exponent: 0 + "denom": "ubcre", + "exponent": 0 }, { - denom: 'bcre', - exponent: 6 + "denom": "bcre", + "exponent": 6 } ], - 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: 'liquid-staking-crescent', - images: [ + "coingecko_id": "liquid-staking-crescent", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg' + "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" } ] } ] }, { - $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', - traces: [ + "base": "basecro", + "name": "Cronos", + "display": "cro", + "symbol": "CRO", + "traces": [ { - type: 'additional-mintage', - counterparty: { - chain_name: 'cryptoorgchain', - base_denom: 'basecro' + "type": "additional-mintage", + "counterparty": { + "chain_name": "cryptoorgchain", + "base_denom": "basecro" }, - provider: 'Cronos' + "provider": "Cronos" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'cryptoorgchain', - base_denom: 'basecro' + "image_sync": { + "chain_name": "cryptoorgchain", + "base_denom": "basecro" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" } }, { - description: 'Tether USDt on Cronos', - denom_units: [ + "description": "Tether USDt on Cronos", + "denom_units": [ { - denom: - 'ibc/9106F2626880DF7FAD30621F355423B2A7523D8E2274475F009644D708A90682', - exponent: 0 + "denom": "ibc/9106F2626880DF7FAD30621F355423B2A7523D8E2274475F009644D708A90682", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/9106F2626880DF7FAD30621F355423B2A7523D8E2274475F009644D708A90682', - name: 'Tether USDt', - display: 'usdt', - symbol: 'USDt', - traces: [ + "type_asset": "ics20", + "base": "ibc/9106F2626880DF7FAD30621F355423B2A7523D8E2274475F009644D708A90682", + "name": "Tether USDt", + "display": "usdt", + "symbol": "USDt", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt', - channel_id: 'channel-125' + "type": "ibc", + "counterparty": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt", + "channel_id": "channel-125" }, - chain: { - channel_id: 'channel-11', - path: 'transfer/channel-11/erc20/tether/usdt' + "chain": { + "channel_id": "channel-11", + "path": "transfer/channel-11/erc20/tether/usdt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'cryptoorgchain', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "cryptoorgchain", + "assets": [ { - description: - 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', - denom_units: [ + "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", + "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: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + "base": "basecro", + "name": "Cronos", + "display": "cro", + "symbol": "CRO", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" }, - coingecko_id: 'crypto-com-chain', - images: [ + "coingecko_id": "crypto-com-chain", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png" } ] } ] }, { - $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 + "denom": "cudos", + "exponent": 18 } ], - 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', - images: [ + "coingecko_id": "cudos", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + "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" } ] } ] }, { - $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 + "denom": "udec", + "exponent": 0 }, { - denom: 'dec', - exponent: 6 + "denom": "dec", + "exponent": 6 } ], - 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', - images: [ + "coingecko_id": "decentr", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + "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" } ] } ] }, { - $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 + "denom": "udsm", + "exponent": 0 }, { - denom: 'dsm', - exponent: 6 + "denom": "dsm", + "exponent": 6 } ], - 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', - images: [ + "coingecko_id": "desmos", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "dig-chain", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'doravota', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "doravota", + "assets": [ { - description: - 'The native staking and governance token of the Theta testnet version of the Dora Vota.', - denom_units: [ + "description": "The native staking and governance token of the Theta testnet version of the Dora Vota.", + "denom_units": [ { - denom: 'peaka', - exponent: 0 + "denom": "peaka", + "exponent": 0 }, { - denom: 'DORA', - exponent: 18 + "denom": "DORA", + "exponent": 18 } ], - base: 'peaka', - name: 'Dora Vota', - display: 'DORA', - symbol: 'DORA', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + "base": "peaka", + "name": "Dora Vota", + "display": "DORA", + "symbol": "DORA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg" }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'dydx', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "dydx", + "assets": [ { - description: 'The native staking token of dYdX Protocol.', - denom_units: [ + "description": "The native staking token of dYdX Protocol.", + "denom_units": [ { - denom: 'adydx', - exponent: 0 + "denom": "adydx", + "exponent": 0 }, { - denom: 'dydx', - exponent: 18 + "denom": "dydx", + "exponent": 18 } ], - base: 'adydx', - name: 'dYdX', - display: 'dydx', - symbol: 'DYDX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "base": "adydx", + "name": "dYdX", + "display": "dydx", + "symbol": "DYDX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" }, - coingecko_id: 'dydx', - images: [ + "coingecko_id": "dydx", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" }, { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg', - theme: { - circle: true + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", + "theme": { + "circle": true } } ] }, { - description: 'Noble USDC on dYdX Protocol.', - denom_units: [ + "description": "Noble USDC on dYdX Protocol.", + "denom_units": [ { - denom: - 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5', - exponent: 0 + "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "exponent": 0 }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5', - name: 'Noble USDC', - display: 'usdc', - symbol: 'USDC', - traces: [ + "type_asset": "ics20", + "base": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "name": "Noble USDC", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'noble', - base_denom: 'uusdc', - channel_id: 'channel-33' + "type": "ibc", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc", + "channel_id": "channel-33" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/uusdc' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uusdc" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'noble', - base_denom: 'uusdc' + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'dyson', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "dyson", + "assets": [ { - description: - 'The native staking and governance token of the Dyson Protocol', - denom_units: [ + "description": "The native staking and governance token of the Dyson Protocol", + "denom_units": [ { - denom: 'dys', - exponent: 0 + "denom": "dys", + "exponent": 0 } ], - base: 'dys', - name: 'Dys', - display: 'dys', - symbol: 'DYS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + "base": "dys", + "name": "Dys", + "display": "dys", + "symbol": "DYS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B', - exponent: 0, - aliases: ['uosmo'] + "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", + "exponent": 0, + "aliases": [ + "uosmo" + ] }, { - denom: 'osmo', - exponent: 6 + "denom": "osmo", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B', - name: 'Osmosis', - display: 'osmo', - description: 'The native token of Osmosis', - symbol: 'OSMO', - traces: [ + "type_asset": "ics20", + "base": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", + "name": "Osmosis", + "display": "osmo", + "description": "The native token of Osmosis", + "symbol": "OSMO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: 'uosmo', - channel_id: 'channel-526' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo", + "channel_id": "channel-526" }, - chain: { - channel_id: 'channel-2', - path: 'transfer/channel-2/uosmo' + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/uosmo" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: 'uosmo' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC', - exponent: 0, - aliases: ['wbtc-satoshi'] + "denom": "ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC", + "exponent": 0, + "aliases": [ + "wbtc-satoshi" + ] }, { - denom: 'wbtc', - exponent: 8 + "denom": "wbtc", + "exponent": 8 } ], - type_asset: 'ics20', - base: 'ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC', - name: 'Wrapped Bitcoin', - display: 'wbtc', - symbol: 'WBTC', - description: 'Wrapped Bitcoin on Axelar on Osmosis', - traces: [ + "type_asset": "ics20", + "base": "ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC", + "name": "Wrapped Bitcoin", + "display": "wbtc", + "symbol": "WBTC", + "description": "Wrapped Bitcoin on Axelar on Osmosis", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', - channel_id: 'channel-526' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "channel_id": "channel-526" }, - chain: { - channel_id: 'channel-2', - path: 'transfer/channel-2/transfer/channel-208/wbtc-satoshi' + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/transfer/channel-208/wbtc-satoshi" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D', - exponent: 0, - aliases: ['uusdc'] + "denom": "ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - type_asset: 'ics20', - description: "Circle's stablecoin on Axelar on Osmosis", - base: 'ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D', - name: 'USD Coin', - display: 'usdc', - symbol: 'USDC', - traces: [ + "type_asset": "ics20", + "description": "Circle's stablecoin on Axelar on Osmosis", + "base": "ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', - channel_id: 'channel-526' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "channel_id": "channel-526" }, - chain: { - channel_id: 'channel-2', - path: 'transfer/channel-2/transfer/channel-208/uusdc' + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/transfer/channel-208/uusdc" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } } ] }, { - $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/ech.svg' + "base": "aechelon", + "name": "Echelon", + "display": "echelon", + "symbol": "ECH", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg" }, - coingecko_id: 'echelon', - images: [ + "coingecko_id": "echelon", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + "base": "ungm", + "name": "e-Money", + "display": "ngm", + "symbol": "NGM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg" }, - coingecko_id: 'e-money', - images: [ + "coingecko_id": "e-money", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg" } ] }, { - description: - 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', - denom_units: [ + "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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg" }, - coingecko_id: 'e-money-eur', - images: [ + "coingecko_id": "e-money-eur", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg" } ] }, { - description: - 'e-Money CHF stablecoin. Audited and backed by fiat CHF deposits and government bonds.', - denom_units: [ + "description": "e-Money CHF stablecoin. Audited and backed by fiat CHF deposits and government bonds.", + "denom_units": [ { - denom: 'echf', - exponent: 0 + "denom": "echf", + "exponent": 0 }, { - denom: 'chf', - exponent: 6 + "denom": "chf", + "exponent": 6 } ], - base: 'echf', - name: 'e-Money CHF', - display: 'chf', - symbol: 'ECHF', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.svg' + "base": "echf", + "name": "e-Money CHF", + "display": "chf", + "symbol": "ECHF", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.svg" } ] }, { - description: - 'e-Money NOK stablecoin. Audited and backed by fiat NOK deposits and government bonds.', - denom_units: [ + "description": "e-Money NOK stablecoin. Audited and backed by fiat NOK deposits and government bonds.", + "denom_units": [ { - denom: 'enok', - exponent: 0 + "denom": "enok", + "exponent": 0 }, { - denom: 'nok', - exponent: 6 + "denom": "nok", + "exponent": 6 } ], - base: 'enok', - name: 'e-Money NOK', - display: 'nok', - symbol: 'ENOK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.svg' + "base": "enok", + "name": "e-Money NOK", + "display": "nok", + "symbol": "ENOK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.svg" } ] }, { - description: - 'e-Money DKK stablecoin. Audited and backed by fiat DKK deposits and government bonds.', - denom_units: [ + "description": "e-Money DKK stablecoin. Audited and backed by fiat DKK deposits and government bonds.", + "denom_units": [ { - denom: 'edkk', - exponent: 0 + "denom": "edkk", + "exponent": 0 }, { - denom: 'dkk', - exponent: 6 + "denom": "dkk", + "exponent": 6 } ], - base: 'edkk', - name: 'e-Money DKK', - display: 'dkk', - symbol: 'EDKK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.svg' + "base": "edkk", + "name": "e-Money DKK", + "display": "dkk", + "symbol": "EDKK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.svg" } ] }, { - description: - 'e-Money SEK stablecoin. Audited and backed by fiat SEK deposits and government bonds.', - denom_units: [ + "description": "e-Money SEK stablecoin. Audited and backed by fiat SEK deposits and government bonds.", + "denom_units": [ { - denom: 'esek', - exponent: 0 + "denom": "esek", + "exponent": 0 }, { - denom: 'sek', - exponent: 6 + "denom": "sek", + "exponent": 6 } ], - base: 'esek', - name: 'e-Money SEK', - display: 'sek', - symbol: 'ESEK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.svg' + "base": "esek", + "name": "e-Money SEK", + "display": "sek", + "symbol": "ESEK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'empowerchain', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "empowerchain", + "assets": [ { - description: 'The native staking and governance token of Empower.', - denom_units: [ + "description": "The native staking and governance token of Empower.", + "denom_units": [ { - denom: 'umpwr', - exponent: 0 + "denom": "umpwr", + "exponent": 0 }, { - denom: 'mpwr', - exponent: 6 + "denom": "mpwr", + "exponent": 6 } ], - base: 'umpwr', - name: 'MPWR', - display: 'mpwr', - symbol: 'MPWR', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + "base": "umpwr", + "name": "MPWR", + "display": "mpwr", + "symbol": "MPWR", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg" } ] } ] }, { - $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: { - 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' + "base": "aRYT", + "name": "RYT", + "display": "RYT", + "symbol": "RYT", + "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" }, - images: [ + "images": [ { - 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' + "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: '../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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + "base": "aevmos", + "name": "Evmos", + "display": "evmos", + "symbol": "EVMOS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" }, - coingecko_id: 'evmos', - images: [ + "coingecko_id": "evmos", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" } ] }, { - description: 'Tether USDt on Evmos', - denom_units: [ + "description": "Tether USDt on Evmos", + "denom_units": [ { - denom: - 'ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5', - exponent: 0 + "denom": "ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5', - name: 'Tether USDt', - display: 'usdt', - symbol: 'USDt', - traces: [ + "type_asset": "ics20", + "base": "ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5", + "name": "Tether USDt", + "display": "usdt", + "symbol": "USDt", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt', - channel_id: 'channel-117' + "type": "ibc", + "counterparty": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt", + "channel_id": "channel-117" }, - chain: { - channel_id: 'channel-83', - path: 'transfer/channel-83/erc20/tether/usdt' + "chain": { + "channel_id": "channel-83", + "path": "transfer/channel-83/erc20/tether/usdt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } }, { - description: 'The token of Neokingdom DAO.', - denom_units: [ + "description": "The token of Neokingdom DAO.", + "denom_units": [ { - denom: 'erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9', - exponent: 0 + "denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "exponent": 0 }, { - denom: 'neok', - exponent: 18 + "denom": "neok", + "exponent": 18 } ], - base: 'erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9', - name: 'Neokingdom DAO', - display: 'neok', - symbol: 'NEOK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + "base": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "name": "Neokingdom DAO", + "display": "neok", + "symbol": "NEOK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "fetch-ai", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.svg' + "base": "nanomobx", + "name": "MOBIX", + "display": "mobx", + "symbol": "MOBX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.png', - 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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "firmachain", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'furya', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "furya", + "assets": [ { - description: 'The native token of Furya', - denom_units: [ + "description": "The native token of Furya", + "denom_units": [ { - denom: 'ufury', - exponent: 0 + "denom": "ufury", + "exponent": 0 }, { - denom: 'fury', - exponent: 6 + "denom": "fury", + "exponent": 6 } ], - base: 'ufury', - name: 'Furya', - display: 'fury', - symbol: 'FURY', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.svg' + "base": "ufury", + "name": "Furya", + "display": "fury", + "symbol": "FURY", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'fxcore', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "fxcore", + "assets": [ { - description: 'The native staking token of the Function X', - denom_units: [ + "description": "The native staking token of the Function X", + "denom_units": [ { - denom: 'FX', - exponent: 0 + "denom": "FX", + "exponent": 0 }, { - denom: 'WFX', - exponent: 18 + "denom": "WFX", + "exponent": 18 } ], - base: 'FX', - name: 'Function X', - display: 'WFX', - symbol: 'FX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + "base": "FX", + "name": "Function X", + "display": "WFX", + "symbol": "FX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg" }, - coingecko_id: 'fx-coin', - images: [ + "coingecko_id": "fx-coin", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg" } ] }, { - description: 'The cross chain token of the Function X', - denom_units: [ + "description": "The cross chain token of the Function X", + "denom_units": [ { - denom: 'eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38', - exponent: 0, - aliases: [] + "denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "exponent": 0, + "aliases": [] }, { - denom: 'PUNDIX', - exponent: 18, - aliases: [] + "denom": "PUNDIX", + "exponent": 18, + "aliases": [] } ], - base: 'eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38', - display: 'PUNDIX', - name: 'Pundi X Token', - symbol: 'PUNDIX', - coingecko_id: 'pundi-x-2', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg' + "base": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "display": "PUNDIX", + "name": "Pundi X Token", + "symbol": "PUNDIX", + "coingecko_id": "pundi-x-2", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg" } ] } ] }, { - $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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + "base": "uglx", + "name": "Galaxy", + "display": "glx", + "symbol": "GLX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'gateway', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "gateway", + "assets": [ { - description: 'The native fee token of Gateway.', - denom_units: [ + "description": "The native fee token of Gateway.", + "denom_units": [ { - denom: 'utest', - exponent: 0, - aliases: [] + "denom": "utest", + "exponent": 0, + "aliases": [] }, { - denom: 'test', - exponent: 6, - aliases: [] + "denom": "test", + "exponent": 6, + "aliases": [] } ], - type_asset: 'sdk.coin', - base: 'utest', - name: 'Test', - display: 'test', - symbol: 'TEST' + "type_asset": "sdk.coin", + "base": "utest", + "name": "Test", + "display": "test", + "symbol": "TEST" }, { - description: 'the native staking token of Gateway.', - denom_units: [ + "description": "the native staking token of Gateway.", + "denom_units": [ { - denom: 'uworm', - exponent: 0, - aliases: [] + "denom": "uworm", + "exponent": 0, + "aliases": [] }, { - denom: 'worm', - exponent: 6, - aliases: [] + "denom": "worm", + "exponent": 6, + "aliases": [] } ], - type_asset: 'sdk.coin', - base: 'uworm', - name: 'Worm', - display: 'worm', - symbol: 'WORM' + "type_asset": "sdk.coin", + "base": "uworm", + "name": "Worm", + "display": "worm", + "symbol": "WORM" }, { - description: - 'Sui (Wormhole), SUI, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh', - denom_units: [ + "description": "Sui (Wormhole), SUI, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', - exponent: 8, - aliases: [] + "denom": "wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8", + "exponent": 8, + "aliases": [] } ], - address: - 'wormhole19hlynxzedrlqv99v6qscww7d3crhl86qtd0vprpltg5g9xx6jk9q6ya33y', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh', - display: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', - name: 'Sui (Wormhole)', - symbol: 'SUI', - traces: [ + "address": "wormhole19hlynxzedrlqv99v6qscww7d3crhl86qtd0vprpltg5g9xx6jk9q6ya33y", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "display": "wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8", + "name": "Sui (Wormhole)", + "symbol": "SUI", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'sui', - base_denom: '0x2::sui::SUI' + "type": "bridge", + "counterparty": { + "chain_name": "sui", + "base_denom": "0x2::sui::SUI" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'sui', - base_denom: '0x2::sui::SUI' + "image_sync": { + "chain_name": "sui", + "base_denom": "0x2::sui::SUI" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg" } }, { - description: - 'Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', - denom_units: [ + "description": "Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', - exponent: 8, - aliases: [] + "denom": "wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8", + "exponent": 8, + "aliases": [] } ], - address: - 'wormhole18csycs4vm6varkp00apuqlsm7v4twg8jsljk8wfdd7cghr7g4rtslwqndm', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', - display: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', - name: 'Wrapped Ether (Wormhole)', - symbol: 'WETH', - traces: [ + "address": "wormhole18csycs4vm6varkp00apuqlsm7v4twg8jsljk8wfdd7cghr7g4rtslwqndm", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "display": "wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8", + "name": "Wrapped Ether (Wormhole)", + "symbol": "WETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" } ] }, { - description: - 'Wrapped liquid staked Ether 2.0 (Wormhole), wstETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b', - denom_units: [ + "description": "Wrapped liquid staked Ether 2.0 (Wormhole), wstETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b/8', - exponent: 8, - aliases: [] + "denom": "wormhole/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b/8", + "exponent": 8, + "aliases": [] } ], - address: - 'wormhole1gg6f95cymcfrfzhpek7cf5wl53t5kng52cd2m0krgdlu8k58vd8qezy8pt', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b', - display: 'wormhole/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b/8', - name: 'Wrapped liquid staked Ether 2.0 (Wormhole)', - symbol: 'wstETH', - traces: [ + "address": "wormhole1gg6f95cymcfrfzhpek7cf5wl53t5kng52cd2m0krgdlu8k58vd8qezy8pt", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", + "display": "wormhole/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b/8", + "name": "Wrapped liquid staked Ether 2.0 (Wormhole)", + "symbol": "wstETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" } }, { - description: - 'Aptos Coin (Wormhole), APT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r', - denom_units: [ + "description": "Aptos Coin (Wormhole), APT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', - exponent: 8, - aliases: [] + "denom": "wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8", + "exponent": 8, + "aliases": [] } ], - address: - 'wormhole1f9sxjn0qu8xylcpzlvnhrefnatndqxnrajfrnr5h97hegnmsdqhsh6juc0', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r', - display: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', - name: 'Aptos Coin (Wormhole)', - symbol: 'APT', - traces: [ + "address": "wormhole1f9sxjn0qu8xylcpzlvnhrefnatndqxnrajfrnr5h97hegnmsdqhsh6juc0", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "display": "wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8", + "name": "Aptos Coin (Wormhole)", + "symbol": "APT", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'aptos', - base_denom: '0x1::aptos_coin::AptosCoin' + "type": "bridge", + "counterparty": { + "chain_name": "aptos", + "base_denom": "0x1::aptos_coin::AptosCoin" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'aptos', - base_denom: '0x1::aptos_coin::AptosCoin' + "image_sync": { + "chain_name": "aptos", + "base_denom": "0x1::aptos_coin::AptosCoin" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg" } }, { - description: - 'Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', - denom_units: [ + "description": "Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', - exponent: 6, - aliases: [] + "denom": "wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6", + "exponent": 6, + "aliases": [] } ], - address: - 'wormhole1w27ekqvvtzfanfxnkw4jx2f8gdfeqwd3drkee3e64xat6phwjg0savgmhw', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', - display: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', - name: 'Tether USD (Wormhole)', - symbol: 'USDT', - traces: [ + "address": "wormhole1w27ekqvvtzfanfxnkw4jx2f8gdfeqwd3drkee3e64xat6phwjg0savgmhw", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "display": "wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6", + "name": "Tether USD (Wormhole)", + "symbol": "USDT", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } }, { - description: - 'Wrapped SOL (Wormhole), SOL, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA', - denom_units: [ + "description": "Wrapped SOL (Wormhole), SOL, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', - exponent: 8, - aliases: [] + "denom": "wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8", + "exponent": 8, + "aliases": [] } ], - address: - 'wormhole1wn625s4jcmvk0szpl85rj5azkfc6suyvf75q6vrddscjdphtve8sca0pvl', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA', - display: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', - name: 'Wrapped SOL (Wormhole)', - symbol: 'SOL', - traces: [ + "address": "wormhole1wn625s4jcmvk0szpl85rj5azkfc6suyvf75q6vrddscjdphtve8sca0pvl", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "display": "wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8", + "name": "Wrapped SOL (Wormhole)", + "symbol": "SOL", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'solana', - base_denom: 'So11111111111111111111111111111111111111112' + "type": "bridge", + "counterparty": { + "chain_name": "solana", + "base_denom": "So11111111111111111111111111111111111111112" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'solana', - base_denom: 'So11111111111111111111111111111111111111112' + "image_sync": { + "chain_name": "solana", + "base_denom": "So11111111111111111111111111111111111111112" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" } }, { - description: - 'Bonk (Wormhole), Bonk, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR', - denom_units: [ + "description": "Bonk (Wormhole), Bonk, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', - exponent: 5, - aliases: [] + "denom": "wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5", + "exponent": 5, + "aliases": [] } ], - address: - 'wormhole10qt8wg0n7z740ssvf3urmvgtjhxpyp74hxqvqt7z226gykuus7eq9mpu8u', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR', - display: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', - name: 'Bonk (Wormhole)', - symbol: 'Bonk', - traces: [ + "address": "wormhole10qt8wg0n7z740ssvf3urmvgtjhxpyp74hxqvqt7z226gykuus7eq9mpu8u", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "display": "wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5", + "name": "Bonk (Wormhole)", + "symbol": "Bonk", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'solana', - base_denom: 'DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263' + "type": "bridge", + "counterparty": { + "chain_name": "solana", + "base_denom": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'solana', - base_denom: 'DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263' + "image_sync": { + "chain_name": "solana", + "base_denom": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png" } }, { - description: - 'Wrapped BTC (Wormhole), WBTC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd', - denom_units: [ + "description": "Wrapped BTC (Wormhole), WBTC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd/8', - exponent: 8, - aliases: [] + "denom": "wormhole/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd/8", + "exponent": 8, + "aliases": [] } ], - address: - 'wormhole1nz0r0au8aj6dc00wmm3ufy4g4k86rjzlr8wkf92cktdlps5lgfcqxnx9yk', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd', - display: 'wormhole/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd/8', - name: 'Wrapped BTC (Wormhole)', - symbol: 'WBTC', - traces: [ + "address": "wormhole1nz0r0au8aj6dc00wmm3ufy4g4k86rjzlr8wkf92cktdlps5lgfcqxnx9yk", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", + "display": "wormhole/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd/8", + "name": "Wrapped BTC (Wormhole)", + "symbol": "WBTC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + "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" } ], - 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' + "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" } }, { - description: - 'tBTC v2 (Wormhole), tBTC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw', - denom_units: [ + "description": "tBTC v2 (Wormhole), tBTC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw/8', - exponent: 8, - aliases: [] + "denom": "wormhole/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw/8", + "exponent": 8, + "aliases": [] } ], - address: - 'wormhole1nu9wf9dw384attnpu0pwfet5fajn05w2ex4r07mghvk3xcwrt2yq5uutp5', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw', - display: 'wormhole/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw/8', - name: 'tBTC v2 (Wormhole)', - symbol: 'tBTC', - traces: [ + "address": "wormhole1nu9wf9dw384attnpu0pwfet5fajn05w2ex4r07mghvk3xcwrt2yq5uutp5", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", + "display": "wormhole/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw/8", + "name": "tBTC v2 (Wormhole)", + "symbol": "tBTC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x18084fba666a33d37592fa2633fd49a74dd93a88' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x18084fba666a33d37592fa2633fd49a74dd93a88" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x18084fba666a33d37592fa2633fd49a74dd93a88' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x18084fba666a33d37592fa2633fd49a74dd93a88" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg" } }, { - description: - 'Dai Stablecoin (Wormhole), DAI, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1', - denom_units: [ + "description": "Dai Stablecoin (Wormhole), DAI, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1/8', - exponent: 8, - aliases: [] + "denom": "wormhole/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1/8", + "exponent": 8, + "aliases": [] } ], - address: - 'wormhole1chejx4qqtvwxy6684yrsmf6pylancxqhk3vsmtleg5ta3zrffljqfscg87', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1', - display: 'wormhole/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1/8', - name: 'Dai Stablecoin (Wormhole)', - symbol: 'DAI', - traces: [ + "address": "wormhole1chejx4qqtvwxy6684yrsmf6pylancxqhk3vsmtleg5ta3zrffljqfscg87", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", + "display": "wormhole/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1/8", + "name": "Dai Stablecoin (Wormhole)", + "symbol": "DAI", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x6b175474e89094c44da98b954eedeac495271d0f' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x6b175474e89094c44da98b954eedeac495271d0f' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" } }, { - description: - 'USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', - denom_units: [ + "description": "USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', - exponent: 6, - aliases: [] + "denom": "wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6", + "exponent": 6, + "aliases": [] } ], - address: - 'wormhole1utjx3594tlvfw4375esgu72wa4sdgf0q7x4ye27husf5kvuzp5rsr72gdq', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', - display: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', - name: 'USD Coin (Wormhole)', - symbol: 'USDC', - traces: [ + "address": "wormhole1utjx3594tlvfw4375esgu72wa4sdgf0q7x4ye27husf5kvuzp5rsr72gdq", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "display": "wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6", + "name": "USD Coin (Wormhole)", + "symbol": "USDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } }, { - description: - 'Avalanche USD Coin (Wormhole), Avalanche USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4', - denom_units: [ + "description": "Avalanche USD Coin (Wormhole), Avalanche USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4', - exponent: 0, - aliases: [] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "exponent": 0, + "aliases": [] }, { - denom: 'wormhole/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4/6', - exponent: 6, - aliases: [] + "denom": "wormhole/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4/6", + "exponent": 6, + "aliases": [] } ], - address: - 'wormhole1utjx3594tlvfw4375esgu72wa4sdgf0q7x4ye27husf5kvuzp5rsr72gdq', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4', - display: 'wormhole/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4/6', - name: 'Avalanche USD Coin (Wormhole)', - symbol: 'avalanche.USDC.wh', - traces: [ + "address": "wormhole1utjx3594tlvfw4375esgu72wa4sdgf0q7x4ye27husf5kvuzp5rsr72gdq", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "display": "wormhole/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4/6", + "name": "Avalanche USD Coin (Wormhole)", + "symbol": "avalanche.USDC.wh", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'avalanche', - base_denom: '0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E' + "type": "bridge", + "counterparty": { + "chain_name": "avalanche", + "base_denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'avalanche', - base_denom: '0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E' + "image_sync": { + "chain_name": "avalanche", + "base_denom": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } }, { - description: - 'Pyth Network (Wormhole), PYTH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy', - denom_units: [ + "description": "Pyth Network (Wormhole), PYTH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", + "denom_units": [ { - denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy', - exponent: 0, - aliases: ['HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3'] + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", + "exponent": 0, + "aliases": [ + "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3" + ] }, { - denom: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', - exponent: 6, - aliases: ['pyth'] + "denom": "wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6", + "exponent": 6, + "aliases": [ + "pyth" + ] } ], - address: - 'wormhole1utjx3594tlvfw4375esgu72wa4sdgf0q7x4ye27husf5kvuzp5rsr72gdq', - base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy', - display: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', - name: 'Pyth Network', - symbol: 'PYTH', - traces: [ + "address": "wormhole1utjx3594tlvfw4375esgu72wa4sdgf0q7x4ye27husf5kvuzp5rsr72gdq", + "base": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", + "display": "wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6", + "name": "Pyth Network", + "symbol": "PYTH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'solana', - base_denom: 'HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3' + "type": "bridge", + "counterparty": { + "chain_name": "solana", + "base_denom": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3" }, - provider: 'Wormhole' + "provider": "Wormhole" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'solana', - base_denom: 'HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3' + "image_sync": { + "chain_name": "solana", + "base_denom": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg" } } ] }, { - $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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + "base": "el1", + "name": "GenesisL1", + "display": "l1", + "symbol": "L1", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'gitopia', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "gitopia", + "assets": [ { - description: 'The native token of Gitopia', - denom_units: [ + "description": "The native token of Gitopia", + "denom_units": [ { - denom: 'ulore', - exponent: 0 + "denom": "ulore", + "exponent": 0 }, { - denom: 'LORE', - exponent: 6 + "denom": "LORE", + "exponent": 6 } ], - base: 'ulore', - name: 'LORE', - display: 'LORE', - symbol: 'LORE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + "base": "ulore", + "name": "LORE", + "display": "LORE", + "symbol": "LORE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg" }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png" } ], - coingecko_id: 'gitopia' + "coingecko_id": "gitopia" } ] }, { - $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 + "denom": "ugraviton", + "exponent": 0 }, { - denom: 'graviton', - exponent: 6 + "denom": "graviton", + "exponent": 6 } ], - base: 'ugraviton', - name: 'Graviton', - display: 'graviton', - symbol: 'GRAV', - coingecko_id: 'graviton', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + "base": "ugraviton", + "name": "Graviton", + "display": "graviton", + "symbol": "GRAV", + "coingecko_id": "graviton", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg" } ] }, { - 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: 'gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006', - exponent: 0 + "denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "exponent": 0 }, { - denom: 'pstake', - exponent: 18 + "denom": "pstake", + "exponent": 18 } ], - base: 'gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006', - name: 'pSTAKE Finance', - display: 'pstake', - symbol: 'PSTAKE', - traces: [ + "base": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "name": "pSTAKE Finance", + "display": "pstake", + "symbol": "PSTAKE", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'persistence', - base_denom: 'uxprt' + "type": "liquid-stake", + "counterparty": { + "chain_name": "persistence", + "base_denom": "uxprt" }, - provider: 'Persistence' + "provider": "Persistence" }, { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" }, - provider: 'Gravity Bridge' + "provider": "Gravity Bridge" } ], - 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" }, - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" } ] }, { - description: 'Gravity Bridge WETH', - denom_units: [ + "description": "Gravity Bridge WETH", + "denom_units": [ { - denom: 'gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', - exponent: 0 + "denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "exponent": 0 }, { - denom: 'gweth', - exponent: 18 + "denom": "gweth", + "exponent": 18 } ], - base: 'gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', - name: 'Wrapped Ethereum', - display: 'gweth', - symbol: 'WETH', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + "base": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "name": "Wrapped Ethereum", + "display": "gweth", + "symbol": "WETH", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" }, - traces: [ + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'ethereum', - base_denom: 'wei' + "type": "wrapped", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" }, - provider: 'Ethereum' + "provider": "Ethereum" }, { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" }, - provider: 'Gravity Bridge' + "provider": "Gravity Bridge" } ], - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } ] }, { - description: 'Gravity Bridge USDC', - denom_units: [ + "description": "Gravity Bridge USDC", + "denom_units": [ { - denom: 'gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48', - exponent: 0 + "denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "exponent": 0 }, { - denom: 'gusdc', - exponent: 6 + "denom": "gusdc", + "exponent": 6 } ], - base: 'gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48', - name: 'USD Coin', - display: 'gusdc', - symbol: 'USDC', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "base": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "name": "USD Coin", + "display": "gusdc", + "symbol": "USDC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - traces: [ + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'forex', - base_denom: 'USD' + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" }, - provider: 'Circle' + "provider": "Circle" }, { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - provider: 'Gravity Bridge' + "provider": "Gravity Bridge" } ], - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] }, { - description: 'Gravity Bridge USDT', - denom_units: [ + "description": "Gravity Bridge USDT", + "denom_units": [ { - denom: 'gravity0xdAC17F958D2ee523a2206206994597C13D831ec7', - exponent: 0 + "denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "exponent": 0 }, { - denom: 'gusdt', - exponent: 6 + "denom": "gusdt", + "exponent": 6 } ], - base: 'gravity0xdAC17F958D2ee523a2206206994597C13D831ec7', - name: 'Tether USD', - display: 'gusdt', - symbol: 'USDT', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "base": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "name": "Tether USD", + "display": "gusdt", + "symbol": "USDT", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" }, - traces: [ + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'forex', - base_denom: 'USD' + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" }, - provider: 'Tether' + "provider": "Tether" }, { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" }, - provider: 'Gravity Bridge' + "provider": "Gravity Bridge" } ], - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ] }, { - description: 'Gravity Bridge WBTC', - denom_units: [ + "description": "Gravity Bridge WBTC", + "denom_units": [ { - denom: 'gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599', - exponent: 0 + "denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "exponent": 0 }, { - denom: 'gwbtc', - exponent: 8 + "denom": "gwbtc", + "exponent": 8 } ], - base: 'gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599', - name: 'Wrapped Bitcoin', - display: 'gwbtc', - symbol: 'WBTC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + "base": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "name": "Wrapped Bitcoin", + "display": "gwbtc", + "symbol": "WBTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" }, - traces: [ + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'bitcoin', - base_denom: 'sat' + "type": "bridge", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" }, - provider: 'BitGo, Kyber, and Ren' + "provider": "BitGo, Kyber, and Ren" }, { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" }, - provider: 'Gravity Bridge' + "provider": "Gravity Bridge" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" } ] }, { - description: 'Gravity Bridge DAI', - denom_units: [ + "description": "Gravity Bridge DAI", + "denom_units": [ { - denom: 'gravity0x6B175474E89094C44Da98b954EedeAC495271d0F', - exponent: 0 + "denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "exponent": 0 }, { - denom: 'gdai', - exponent: 18 + "denom": "gdai", + "exponent": 18 } ], - base: 'gravity0x6B175474E89094C44Da98b954EedeAC495271d0F', - name: 'Dai Stablecoin', - display: 'gdai', - symbol: 'DAI', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "base": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "name": "Dai Stablecoin", + "display": "gdai", + "symbol": "DAI", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" }, - traces: [ + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'forex', - base_denom: 'USD' + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" }, - provider: 'MakerDAO' + "provider": "MakerDAO" }, { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x6b175474e89094c44da98b954eedeac495271d0f' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x6b175474e89094c44da98b954eedeac495271d0f" }, - provider: 'Gravity Bridge' + "provider": "Gravity Bridge" } ], - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" } ] }, { - description: 'Gravity Bridge sDAI', - denom_units: [ + "description": "Gravity Bridge sDAI", + "denom_units": [ { - denom: 'gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA', - exponent: 0 + "denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "exponent": 0 }, { - denom: 'gsdai', - exponent: 18 + "denom": "gsdai", + "exponent": 18 } ], - base: 'gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA', - name: 'Savings Dai', - display: 'gsdai', - symbol: 'sDAI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg' + "base": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "name": "Savings Dai", + "display": "gsdai", + "symbol": "sDAI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg" }, - traces: [ + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x83F20F44975D03b1b09e64809B757c47f942BEeA' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x83F20F44975D03b1b09e64809B757c47f942BEeA" }, - provider: 'Gravity Bridge' + "provider": "Gravity Bridge" } ], - images: [ + "images": [ { - image_sync: { - base_denom: 'ethereum', - chain_name: '0x83F20F44975D03b1b09e64809B757c47f942BEeA' + "image_sync": { + "base_denom": "ethereum", + "chain_name": "0x83F20F44975D03b1b09e64809B757c47f942BEeA" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg" } ] }, { - description: 'Gravity Bridge OCC', - denom_units: [ + "description": "Gravity Bridge OCC", + "denom_units": [ { - denom: 'gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207', - exponent: 0 + "denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "exponent": 0 }, { - denom: 'gocc', - exponent: 18 + "denom": "gocc", + "exponent": 18 } ], - base: 'gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207', - name: 'OccamFi', - display: 'gocc', - symbol: 'OCC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png' + "base": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "name": "OccamFi", + "display": "gocc", + "symbol": "OCC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png" }, - traces: [ + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x2F109021aFe75B949429fe30523Ee7C0D5B27207' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207" }, - provider: 'Gravity Bridge' + "provider": "Gravity Bridge" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x2F109021aFe75B949429fe30523Ee7C0D5B27207' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png" } ] }, { - description: - 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', - denom_units: [ + "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", + "denom_units": [ { - denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e', - exponent: 0 + "denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "exponent": 0 }, { - denom: 'page', - exponent: 8 + "denom": "page", + "exponent": 8 } ], - base: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e', - name: 'Page', - display: 'page', - symbol: 'PAGE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + "base": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "name": "Page", + "display": "page", + "symbol": "PAGE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" }, - traces: [ + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" }, - provider: 'Gravity Bridge' + "provider": "Gravity Bridge" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'haqq', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "haqq", + "assets": [ { - description: - 'The native EVM, governance and staking token of the Haqq Network', - denom_units: [ + "description": "The native EVM, governance and staking token of the Haqq Network", + "denom_units": [ { - denom: 'aISLM', - exponent: 0 + "denom": "aISLM", + "exponent": 0 }, { - denom: 'ISLM', - exponent: 18 + "denom": "ISLM", + "exponent": 18 } ], - base: 'aISLM', - name: 'Islamic Coin', - display: 'ISLM', - symbol: 'ISLM', - coingecko_id: 'islamic-coin', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + "base": "aISLM", + "name": "Islamic Coin", + "display": "ISLM", + "symbol": "ISLM", + "coingecko_id": "islamic-coin", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'highbury', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "highbury", + "assets": [ { - description: - 'The native staking and governance token of the Blackfury ecosystem', - denom_units: [ + "description": "The native staking and governance token of the Blackfury ecosystem", + "denom_units": [ { - denom: 'ufury', - exponent: 0 + "denom": "ufury", + "exponent": 0 }, { - denom: 'fury', - exponent: 6 + "denom": "fury", + "exponent": 6 } ], - base: 'ufury', - name: 'Fury', - display: 'fury', - symbol: 'FURY', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.svg' + "base": "ufury", + "name": "Fury", + "display": "fury", + "symbol": "FURY", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.svg" }, - coingecko_id: 'fanfury', - images: [ + "coingecko_id": "fanfury", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.svg" } ] }, { - description: 'Governance token of Jinx Wallet and Fury Lend Protocol', - denom_units: [ + "description": "Governance token of Jinx Wallet and Fury Lend Protocol", + "denom_units": [ { - denom: 'jinx', - exponent: 0 + "denom": "jinx", + "exponent": 0 }, { - denom: 'JINX', - exponent: 6 + "denom": "JINX", + "exponent": 6 } ], - base: 'jinx', - name: 'Jinx', - display: 'JINX', - symbol: 'JINX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinx.svg' + "base": "jinx", + "name": "Jinx", + "display": "JINX", + "symbol": "JINX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinx.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinx.svg" } ] }, { - description: 'Governance token of Fury Swap Protocol', - denom_units: [ + "description": "Governance token of Fury Swap Protocol", + "denom_units": [ { - denom: 'jinxy', - exponent: 0 + "denom": "jinxy", + "exponent": 0 }, { - denom: 'JINXY', - exponent: 6 + "denom": "JINXY", + "exponent": 6 } ], - base: 'jinxy', - name: 'Jinxy', - display: 'JINXy', - symbol: 'JINXy', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinxy.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinxy.svg' + "base": "jinxy", + "name": "Jinxy", + "display": "JINXy", + "symbol": "JINXy", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinxy.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinxy.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinxy.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinxy.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinxy.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/jinxy.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'humans', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "humans", + "assets": [ { - description: 'The native staking and governance token of Humans.ai.', - denom_units: [ + "description": "The native staking and governance token of Humans.ai.", + "denom_units": [ { - denom: 'aheart', - exponent: 0 + "denom": "aheart", + "exponent": 0 }, { - denom: 'heart', - exponent: 18 + "denom": "heart", + "exponent": 18 } ], - base: 'aheart', - name: 'HEART', - display: 'heart', - symbol: 'HEART', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg' + "base": "aheart", + "name": "HEART", + "display": "heart", + "symbol": "HEART", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg" }, - coingecko_id: 'humans-ai', - images: [ + "coingecko_id": "humans-ai", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg" } ] } ] }, { - $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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.svg' + "base": "idep", + "name": "IDEP", + "display": "IDEP", + "symbol": "IDEP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.png', - 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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.svg" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + "base": "uixo", + "name": "IXO", + "display": "ixo", + "symbol": "IXO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" }, - coingecko_id: 'ixo', - images: [ + "coingecko_id": "ixo", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'imversed', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "imversed", + "assets": [ { - description: - 'The native EVM, governance and staking token of the Imversed', - denom_units: [ + "description": "The native EVM, governance and staking token of the Imversed", + "denom_units": [ { - denom: 'aimv', - exponent: 0 + "denom": "aimv", + "exponent": 0 }, { - denom: 'imv', - exponent: 18 + "denom": "imv", + "exponent": 18 } ], - base: 'aimv', - name: 'IMV', - display: 'imv', - symbol: 'IMV', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + "base": "aimv", + "name": "IMV", + "display": "imv", + "symbol": "IMV", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg" }, - coingecko_id: 'imv', - images: [ + "coingecko_id": "imv", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg" } ] } ] }, { - $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: 'inj', - exponent: 0 + "denom": "inj", + "exponent": 0 }, { - denom: 'INJ', - exponent: 18 + "denom": "INJ", + "exponent": 18 } ], - base: 'inj', - 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": "inj", + "name": "Injective", + "display": "INJ", + "symbol": "INJ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" }, - coingecko_id: 'injective-protocol', - images: [ + "coingecko_id": "injective-protocol", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" } ] }, { - description: 'Tether USDt on Injective', - denom_units: [ + "description": "Tether USDt on Injective", + "denom_units": [ { - denom: - 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', - exponent: 0 + "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', - name: 'Tether USDt', - display: 'usdt', - symbol: 'USDt', - traces: [ + "type_asset": "ics20", + "base": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "name": "Tether USDt", + "display": "usdt", + "symbol": "USDt", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt', - channel_id: 'channel-122' + "type": "ibc", + "counterparty": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt", + "channel_id": "channel-122" }, - chain: { - channel_id: 'channel-143', - path: 'transfer/channel-143/erc20/tether/usdt' + "chain": { + "channel_id": "channel-143", + "path": "transfer/channel-143/erc20/tether/usdt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } }, { - description: 'ERIS liquid staked INJ', - denom_units: [ + "description": "ERIS liquid staked INJ", + "denom_units": [ { - denom: 'factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ', - exponent: 0 + "denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", + "exponent": 0 }, { - denom: 'ampINJ', - exponent: 6 + "denom": "ampINJ", + "exponent": 6 } ], - base: 'factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ', - name: 'ERIS Amplified INJ', - display: 'ampINJ', - symbol: 'ampINJ', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png' + "base": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", + "name": "ERIS Amplified INJ", + "display": "ampINJ", + "symbol": "ampINJ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png" } ] }, { - description: - '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', - denom_units: [ + "description": "$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world", + "denom_units": [ { - denom: 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism', - exponent: 0 + "denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "exponent": 0 }, { - denom: 'autism', - exponent: 6 + "denom": "autism", + "exponent": 6 } ], - base: 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism', - name: 'Autism', - display: 'autism', - symbol: 'AUTISM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + "base": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "name": "Autism", + "display": "autism", + "symbol": "AUTISM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png" }, - coingecko_id: 'autism', - images: [ + "coingecko_id": "autism", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png" } ] }, { - description: - 'The first meme coin on Injective. It’s a dog, but he has nunchucks', - denom_units: [ + "description": "The first meme coin on Injective. It’s a dog, but he has nunchucks", + "denom_units": [ { - denom: 'factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja', - exponent: 0 + "denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "exponent": 0 }, { - denom: 'NINJA', - exponent: 6 + "denom": "NINJA", + "exponent": 6 } ], - base: 'factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja', - name: 'Dog wif nunchucks', - display: 'NINJA', - symbol: 'NINJA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + "base": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "name": "Dog wif nunchucks", + "display": "NINJA", + "symbol": "NINJA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png" }, - coingecko_id: 'dog-wif-nuchucks', - images: [ + "coingecko_id": "dog-wif-nuchucks", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png" } ] }, { - description: 'The $WGMI Token - We Gonna Make It. Are you ready?', - denom_units: [ + "description": "The $WGMI Token - We Gonna Make It. Are you ready?", + "denom_units": [ { - denom: 'factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI', - exponent: 0 + "denom": "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", + "exponent": 0 }, { - denom: 'WGMI', - exponent: 6 + "denom": "WGMI", + "exponent": 6 } ], - base: 'factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI', - name: 'WGMI', - display: 'WGMI', - symbol: 'WGMI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png' + "base": "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", + "name": "WGMI", + "display": "WGMI", + "symbol": "WGMI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png" } ] } ] }, { - $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', - images: [ + "coingecko_id": "iris-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'jackal', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "jackal", + "assets": [ { - description: 'The native staking and governance token of Jackal.', - denom_units: [ + "description": "The native staking and governance token of Jackal.", + "denom_units": [ { - denom: 'ujkl', - exponent: 0 + "denom": "ujkl", + "exponent": 0 }, { - denom: 'jkl', - exponent: 6 + "denom": "jkl", + "exponent": 6 } ], - base: 'ujkl', - name: 'Jackal', - display: 'jkl', - symbol: 'JKL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + "base": "ujkl", + "name": "Jackal", + "display": "jkl", + "symbol": "JKL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg" }, - coingecko_id: 'jackal-protocol', - images: [ + "coingecko_id": "jackal-protocol", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "juno-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', - exponent: 0 + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "exponent": 0 }, { - denom: 'atom', - exponent: 6 + "denom": "atom", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', - name: 'ATOM on Juno', - display: 'atom', - symbol: 'ATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "name": "ATOM on Juno", + "display": "atom", + "symbol": "ATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'cosmoshub', - base_denom: 'uatom', - channel_id: 'channel-207' + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-207" }, - chain: { - channel_id: 'channel-1', - path: 'transfer/channel-1/uatom' + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/uatom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'cosmoshub', - base_denom: 'uatom' + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } }, { - description: 'The native token 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', - images: [ + "coingecko_id": "neta", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg" } ] }, { - 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', - images: [ + "coingecko_id": "marble", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg" } ] }, { - 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', - images: [ + "coingecko_id": "hope-galaxy", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg" } ] }, { - description: - 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', - 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', - images: [ + "coingecko_id": "racoon", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg" } ] }, { - description: 'The native token of Marble DEX on Juno Chain', - 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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + "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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + "base": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", + "name": "JunoSwap", + "display": "raw", + "symbol": "RAW", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg" }, - coingecko_id: 'junoswap-raw-dao', - images: [ + "coingecko_id": "junoswap-raw-dao", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg" } ] }, { - description: - '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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/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 network.', - 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 network.", + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hns.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + "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" }, - images: [ + "images": [ { - 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' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/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: - 'juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m', - denom_units: [ + "description": "The native token cw20 for BlackHole on Juno Chain", + "type_asset": "cw20", + "address": "juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m", + "denom_units": [ { - denom: - 'cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m', - exponent: 0 + "denom": "cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m", + "exponent": 0 }, { - denom: 'hole', - exponent: 6 + "denom": "hole", + "exponent": 6 } ], - base: 'cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m', - name: 'BlackHole', - display: 'hole', - symbol: 'HOLE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.svg' + "base": "cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m", + "name": "BlackHole", + "display": "hole", + "symbol": "HOLE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.svg" } ] }, { - description: 'Staking derivative seJUNO for staked JUNO', - type_asset: 'cw20', - address: - 'juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv', - denom_units: [ + "description": "Staking derivative seJUNO for staked JUNO", + "type_asset": "cw20", + "address": "juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", + "denom_units": [ { - denom: - 'cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv', - exponent: 0 + "denom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", + "exponent": 0 }, { - denom: 'sejuno', - exponent: 6 + "denom": "sejuno", + "exponent": 6 } ], - base: 'cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv', - name: 'StakeEasy seJUNO', - display: 'sejuno', - symbol: 'SEJUNO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + "base": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", + "name": "StakeEasy seJUNO", + "display": "sejuno", + "symbol": "SEJUNO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg" }, - coingecko_id: 'stakeeasy-juno-derivative', - images: [ + "coingecko_id": "stakeeasy-juno-derivative", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg" } ] }, { - description: 'Staking derivative bJUNO for staked JUNO', - type_asset: 'cw20', - address: - 'juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3', - denom_units: [ + "description": "Staking derivative bJUNO for staked JUNO", + "type_asset": "cw20", + "address": "juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3", + "denom_units": [ { - denom: - 'cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3', - exponent: 0 + "denom": "cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3", + "exponent": 0 }, { - denom: 'bjuno', - exponent: 6 + "denom": "bjuno", + "exponent": 6 } ], - base: 'cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3', - name: 'StakeEasy bJUNO', - display: 'bjuno', - symbol: 'BJUNO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + "base": "cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3", + "name": "StakeEasy bJUNO", + "display": "bjuno", + "symbol": "BJUNO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg" }, - coingecko_id: 'stakeeasy-bjuno', - images: [ + "coingecko_id": "stakeeasy-bjuno", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg" } ] }, { - description: - 'Solarbank DAO Governance Token for speeding up the shift to renewable and green energy', - type_asset: 'cw20', - address: - 'juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse', - denom_units: [ + "description": "Solarbank DAO Governance Token for speeding up the shift to renewable and green energy", + "type_asset": "cw20", + "address": "juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse", + "denom_units": [ { - denom: - 'cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse', - exponent: 0 + "denom": "cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse", + "exponent": 0 }, { - denom: 'solar', - exponent: 6 + "denom": "solar", + "exponent": 6 } ], - base: 'cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse', - name: 'Solarbank DAO', - display: 'solar', - symbol: 'SOLAR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + "base": "cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse", + "name": "Solarbank DAO", + "display": "solar", + "symbol": "SOLAR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg" } ] }, { - description: 'StakeEasy governance token', - type_asset: 'cw20', - address: - 'juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf', - denom_units: [ + "description": "StakeEasy governance token", + "type_asset": "cw20", + "address": "juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf", + "denom_units": [ { - denom: - 'cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf', - exponent: 0 + "denom": "cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf", + "exponent": 0 }, { - denom: 'seasy', - exponent: 6 + "denom": "seasy", + "exponent": 6 } ], - base: 'cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf', - name: 'StakeEasy SEASY', - display: 'seasy', - symbol: 'SEASY', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + "base": "cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf", + "name": "StakeEasy SEASY", + "display": "seasy", + "symbol": "SEASY", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg" } ] }, { - description: 'The native token cw20 for MuseDAO on Juno Chain', - type_asset: 'cw20', - address: - 'juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3', - denom_units: [ + "description": "The native token cw20 for MuseDAO on Juno Chain", + "type_asset": "cw20", + "address": "juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3", + "denom_units": [ { - denom: - 'cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3', - exponent: 0 + "denom": "cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3", + "exponent": 0 }, { - denom: 'muse', - exponent: 6 + "denom": "muse", + "exponent": 6 } ], - base: 'cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3', - name: 'MuseDAO', - display: 'muse', - symbol: 'MUSE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + "base": "cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3", + "name": "MuseDAO", + "display": "muse", + "symbol": "MUSE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png" } ] }, { - description: 'The native token cw20 for Loop Finance on Juno Chain', - type_asset: 'cw20', - address: - 'juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup', - denom_units: [ + "description": "The native token cw20 for Loop Finance on Juno Chain", + "type_asset": "cw20", + "address": "juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup", + "denom_units": [ { - denom: - 'cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup', - exponent: 0 + "denom": "cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup", + "exponent": 0 }, { - denom: 'loop', - exponent: 6 + "denom": "loop", + "exponent": 6 } ], - base: 'cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup', - name: 'Loop Finance', - display: 'loop', - symbol: 'LOOP', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/loop.png' + "base": "cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup", + "name": "Loop Finance", + "display": "loop", + "symbol": "LOOP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/loop.png" }, - coingecko_id: 'loop', - images: [ + "coingecko_id": "loop", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/loop.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/loop.png" } ] }, { - description: 'The native token cw20 for Fanfury on Juno Chain', - type_asset: 'cw20', - address: - 'juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz', - denom_units: [ + "description": "The native token cw20 for Fanfury on Juno Chain", + "type_asset": "cw20", + "address": "juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", + "denom_units": [ { - denom: - 'cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz', - exponent: 0 + "denom": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", + "exponent": 0 }, { - denom: 'fury', - exponent: 6 + "denom": "fury", + "exponent": 6 } ], - base: 'cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz', - name: 'Fanfury', - display: 'fury', - symbol: 'FURY', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + "base": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", + "name": "Fanfury", + "display": "fury", + "symbol": "FURY", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png" }, - coingecko_id: 'fanfury', - images: [ + "coingecko_id": "fanfury", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png" } ] }, { - description: 'The native token cw20 for PHMN on Juno Chain', - type_asset: 'cw20', - address: - 'juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l', - denom_units: [ + "description": "The native token cw20 for PHMN on Juno Chain", + "type_asset": "cw20", + "address": "juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l", + "denom_units": [ { - denom: - 'cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l', - exponent: 0 + "denom": "cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l", + "exponent": 0 }, { - denom: 'phmn', - exponent: 6 + "denom": "phmn", + "exponent": 6 } ], - base: 'cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l', - name: 'POSTHUMAN', - display: 'phmn', - symbol: 'PHMN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + "base": "cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l", + "name": "POSTHUMAN", + "display": "phmn", + "symbol": "PHMN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg" }, - coingecko_id: 'posthuman', - images: [ + "coingecko_id": "posthuman", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg" } ] }, { - description: 'The native token cw20 for Hopers on Juno Chain', - type_asset: 'cw20', - address: - 'juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n', - denom_units: [ + "description": "The native token cw20 for Hopers on Juno Chain", + "type_asset": "cw20", + "address": "juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n", + "denom_units": [ { - denom: - 'cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n', - exponent: 0 + "denom": "cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n", + "exponent": 0 }, { - denom: 'hopers', - exponent: 6 + "denom": "hopers", + "exponent": 6 } ], - base: 'cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n', - name: 'Hopers', - display: 'hopers', - symbol: 'HOPERS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + "base": "cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n", + "name": "Hopers", + "display": "hopers", + "symbol": "HOPERS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg" }, - coingecko_id: 'hopers-io ', - images: [ + "coingecko_id": "hopers-io ", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg" } ] }, { - description: 'RED', - type_asset: 'cw20', - address: - 'juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za', - denom_units: [ + "description": "RED", + "type_asset": "cw20", + "address": "juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za", + "denom_units": [ { - denom: - 'cw20:juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za', - exponent: 0 + "denom": "cw20:juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za", + "exponent": 0 }, { - denom: 'red', - exponent: 6 + "denom": "red", + "exponent": 6 } ], - base: 'cw20:juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za', - name: 'Red', - display: 'red', - symbol: 'RED', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/red.png' + "base": "cw20:juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za", + "name": "Red", + "display": "red", + "symbol": "RED", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/red.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/red.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/red.png" } ] }, { - description: 'BLUE', - type_asset: 'cw20', - address: - 'juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7', - denom_units: [ + "description": "BLUE", + "type_asset": "cw20", + "address": "juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7", + "denom_units": [ { - denom: - 'cw20:juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7', - exponent: 0 + "denom": "cw20:juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7", + "exponent": 0 }, { - denom: 'blue', - exponent: 6 + "denom": "blue", + "exponent": 6 } ], - base: 'cw20:juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7', - name: 'Blue', - display: 'blue', - symbol: 'BLUE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blue.png' + "base": "cw20:juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7", + "name": "Blue", + "display": "blue", + "symbol": "BLUE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blue.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blue.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blue.png" } ] }, { - description: 'WYND DAO Governance Token', - type_asset: 'cw20', - address: - 'juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9', - denom_units: [ + "description": "WYND DAO Governance Token", + "type_asset": "cw20", + "address": "juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", + "denom_units": [ { - denom: - 'cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9', - exponent: 0 + "denom": "cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", + "exponent": 0 }, { - denom: 'wynd', - exponent: 6 + "denom": "wynd", + "exponent": 6 } ], - base: 'cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9', - name: 'Wynd DAO Governance Token', - display: 'wynd', - symbol: 'WYND', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + "base": "cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", + "name": "Wynd DAO Governance Token", + "display": "wynd", + "symbol": "WYND", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg" }, - coingecko_id: 'wynd', - images: [ + "coingecko_id": "wynd", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg" } ] }, { - description: 'Bored APE IBC club token', - type_asset: 'cw20', - address: - 'juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj', - denom_units: [ + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "denom_units": [ { - denom: - 'cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj', - exponent: 0 + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 }, { - denom: 'banana', - exponent: 6 + "denom": "banana", + "exponent": 6 } ], - base: 'juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj', - name: 'Banana Token', - display: 'banana', - symbol: 'BANANA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png' + "base": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "name": "Banana Token", + "display": "banana", + "symbol": "BANANA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" } ] }, { - description: 'nRide Token', - type_asset: 'cw20', - address: - 'juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq', - denom_units: [ + "description": "nRide Token", + "type_asset": "cw20", + "address": "juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", + "denom_units": [ { - denom: - 'cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq', - exponent: 0 + "denom": "cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", + "exponent": 0 }, { - denom: 'nride', - exponent: 6 + "denom": "nride", + "exponent": 6 } ], - base: 'cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq', - name: 'nRide Token', - display: 'nride', - symbol: 'NRIDE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + "base": "cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", + "name": "nRide Token", + "display": "nride", + "symbol": "NRIDE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg" } ] }, { - description: 'Signal Art and Gaming on Juno', - type_asset: 'cw20', - address: - 'juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k', - denom_units: [ + "description": "Signal Art and Gaming on Juno", + "type_asset": "cw20", + "address": "juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", + "denom_units": [ { - denom: - 'cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k', - exponent: 0 + "denom": "cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", + "exponent": 0 }, { - denom: 'sgnl', - exponent: 6 + "denom": "sgnl", + "exponent": 6 } ], - base: 'cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k', - name: 'Signal', - display: 'sgnl', - symbol: 'SGNL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + "base": "cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", + "name": "Signal", + "display": "sgnl", + "symbol": "SGNL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png" } ] }, { - description: - 'Governance and utility token for the Junø Apes NFT platform on Juno', - type_asset: 'cw20', - address: - 'juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps', - denom_units: [ + "description": "Governance and utility token for the Junø Apes NFT platform on Juno", + "type_asset": "cw20", + "address": "juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", + "denom_units": [ { - denom: - 'cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps', - exponent: 0 + "denom": "cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", + "exponent": 0 }, { - denom: 'jape', - exponent: 6 + "denom": "jape", + "exponent": 6 } ], - base: 'cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps', - name: 'Junø Apes', - display: 'jape', - symbol: 'JAPE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + "base": "cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", + "name": "Junø Apes", + "display": "jape", + "symbol": "JAPE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png" } ] }, { - description: - 'A community meme token with a fantasy fiction storyline and comic based NFTs on Juno', - type_asset: 'cw20', - address: - 'juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa', - denom_units: [ + "description": "A community meme token with a fantasy fiction storyline and comic based NFTs on Juno", + "type_asset": "cw20", + "address": "juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa", + "denom_units": [ { - denom: - 'cw20:juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa', - exponent: 0 + "denom": "cw20:juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa", + "exponent": 0 }, { - denom: 'catom', - exponent: 6 + "denom": "catom", + "exponent": 6 } ], - base: 'cw20:juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa', - name: 'Catom', - display: 'catom', - symbol: 'CATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catom.png' + "base": "cw20:juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa", + "name": "Catom", + "display": "catom", + "symbol": "CATOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catom.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catom.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catom.png" } ] }, { - description: - 'Utility token of Howl.social, an on chain micro-blogging platform on Juno', - type_asset: 'cw20', - address: - 'juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz', - denom_units: [ + "description": "Utility token of Howl.social, an on chain micro-blogging platform on Juno", + "type_asset": "cw20", + "address": "juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz", + "denom_units": [ { - denom: - 'cw20:juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz', - exponent: 0 + "denom": "cw20:juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz", + "exponent": 0 }, { - denom: 'howl', - exponent: 6 + "denom": "howl", + "exponent": 6 } ], - base: 'cw20:juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz', - name: 'Howl', - display: 'howl', - symbol: 'HOWL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/howl.png' + "base": "cw20:juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz", + "name": "Howl", + "display": "howl", + "symbol": "HOWL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/howl.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/howl.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/howl.png" } ] }, { - description: - 'Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.', - type_asset: 'cw20', - address: - 'juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x', - denom_units: [ + "description": "Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.", + "type_asset": "cw20", + "address": "juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x", + "denom_units": [ { - denom: - 'cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x', - exponent: 0 + "denom": "cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x", + "exponent": 0 }, { - denom: 'fox', - exponent: 6 + "denom": "fox", + "exponent": 6 } ], - base: 'cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x', - name: 'Juno Fox', - display: 'fox', - symbol: 'FOX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + "base": "cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x", + "name": "Juno Fox", + "display": "fox", + "symbol": "FOX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png" } ] }, { - description: 'Evmos Guardians governance token.', - type_asset: 'cw20', - address: - 'juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma', - denom_units: [ + "description": "Evmos Guardians governance token.", + "type_asset": "cw20", + "address": "juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma", + "denom_units": [ { - denom: - 'cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma', - exponent: 0 + "denom": "cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma", + "exponent": 0 }, { - denom: 'grdn', - exponent: 6 + "denom": "grdn", + "exponent": 6 } ], - base: 'cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma', - name: 'Guardian', - display: 'grdn', - symbol: 'GRDN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + "base": "cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma", + "name": "Guardian", + "display": "grdn", + "symbol": "GRDN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png" } ] }, { - description: 'Mini Punks Token', - type_asset: 'cw20', - address: - 'juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my', - denom_units: [ + "description": "Mini Punks Token", + "type_asset": "cw20", + "address": "juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my", + "denom_units": [ { - denom: - 'cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my', - exponent: 0 + "denom": "cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my", + "exponent": 0 }, { - denom: 'mnpu', - exponent: 6 + "denom": "mnpu", + "exponent": 6 } ], - base: 'cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my', - name: 'Mini Punks', - display: 'mnpu', - symbol: 'MNPU', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + "base": "cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my", + "name": "Mini Punks", + "display": "mnpu", + "symbol": "MNPU", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg" } ] }, { - description: 'Kleomedes Token', - type_asset: 'cw20', - address: - 'juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy', - denom_units: [ + "description": "Kleomedes Token", + "type_asset": "cw20", + "address": "juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy", + "denom_units": [ { - denom: - 'cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy', - exponent: 0 + "denom": "cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy", + "exponent": 0 }, { - denom: 'kleo', - exponent: 6 + "denom": "kleo", + "exponent": 6 } ], - base: 'cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy', - name: 'Kleomedes', - display: 'kleo', - symbol: 'KLEO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + "base": "cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy", + "name": "Kleomedes", + "display": "kleo", + "symbol": "KLEO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png" } ] }, { - description: 'Sikoba Governance Token', - type_asset: 'cw20', - address: - 'juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp', - denom_units: [ + "description": "Sikoba Governance Token", + "type_asset": "cw20", + "address": "juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp", + "denom_units": [ { - denom: - 'cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp', - exponent: 0 + "denom": "cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp", + "exponent": 0 }, { - denom: 'sikoba', - exponent: 6 + "denom": "sikoba", + "exponent": 6 } ], - base: 'cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp', - name: 'Sikoba Token', - display: 'sikoba', - symbol: 'SKOJ', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + "base": "cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp", + "name": "Sikoba Token", + "display": "sikoba", + "symbol": "SKOJ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg" } ] }, { - description: 'Shiba Cosmos', - type_asset: 'cw20', - address: - 'juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z', - denom_units: [ + "description": "Shiba Cosmos", + "type_asset": "cw20", + "address": "juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z", + "denom_units": [ { - denom: - 'cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z', - exponent: 0 + "denom": "cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z", + "exponent": 0 }, { - denom: 'shibac', - exponent: 6 + "denom": "shibac", + "exponent": 6 } ], - base: 'cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z', - name: 'ShibaCosmos', - display: 'shibac', - symbol: 'SHIBAC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + "base": "cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z", + "name": "ShibaCosmos", + "display": "shibac", + "symbol": "SHIBAC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png" } ] }, { - description: 'Celestims', - type_asset: 'cw20', - address: - 'juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg', - denom_units: [ + "description": "Celestims", + "type_asset": "cw20", + "address": "juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg", + "denom_units": [ { - denom: - 'cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg', - exponent: 0 + "denom": "cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg", + "exponent": 0 }, { - denom: 'clst', - exponent: 6 + "denom": "clst", + "exponent": 6 } ], - base: 'cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg', - name: 'Celestims', - display: 'clst', - symbol: 'CLST', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + "base": "cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg", + "name": "Celestims", + "display": "clst", + "symbol": "CLST", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png" } ] }, { - description: - 'A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!', - type_asset: 'cw20', - address: - 'juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw', - denom_units: [ + "description": "A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!", + "type_asset": "cw20", + "address": "juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw", + "denom_units": [ { - denom: - 'cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw', - exponent: 0 + "denom": "cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw", + "exponent": 0 }, { - denom: 'watr', - exponent: 6 + "denom": "watr", + "exponent": 6 } ], - base: 'cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw', - name: 'WATR', - display: 'watr', - symbol: 'WATR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + "base": "cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw", + "name": "WATR", + "display": "watr", + "symbol": "WATR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png" } ] }, { - description: - 'An innovative DAO dedicated to housing the most vulnerable', - type_asset: 'cw20', - address: - 'juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss', - denom_units: [ + "description": "An innovative DAO dedicated to housing the most vulnerable", + "type_asset": "cw20", + "address": "juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss", + "denom_units": [ { - denom: - 'cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss', - exponent: 0 + "denom": "cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss", + "exponent": 0 }, { - denom: 'casa', - exponent: 6 + "denom": "casa", + "exponent": 6 } ], - base: 'cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss', - name: 'Casa', - display: 'casa', - symbol: 'CASA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + "base": "cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss", + "name": "Casa", + "display": "casa", + "symbol": "CASA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png" } ] }, { - description: - 'Social Impact DAO providing showers, meals, and vehicles to the homeless', - type_asset: 'cw20', - address: - 'juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm', - denom_units: [ + "description": "Social Impact DAO providing showers, meals, and vehicles to the homeless", + "type_asset": "cw20", + "address": "juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm", + "denom_units": [ { - denom: - 'cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm', - exponent: 0 + "denom": "cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm", + "exponent": 0 }, { - denom: 'summit', - exponent: 6 + "denom": "summit", + "exponent": 6 } ], - base: 'cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm', - name: 'Summit', - display: 'summit', - symbol: 'SUMMIT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + "base": "cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm", + "name": "Summit", + "display": "summit", + "symbol": "SUMMIT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png" } ] }, { - description: - 'Social Impact DAO dedicated to combatting food insecurity and malnutrition', - type_asset: 'cw20', - address: - 'juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq', - denom_units: [ + "description": "Social Impact DAO dedicated to combatting food insecurity and malnutrition", + "type_asset": "cw20", + "address": "juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq", + "denom_units": [ { - denom: - 'cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq', - exponent: 0 + "denom": "cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq", + "exponent": 0 }, { - denom: 'manna', - exponent: 6 + "denom": "manna", + "exponent": 6 } ], - base: 'cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq', - name: 'Manna', - display: 'manna', - symbol: 'MANNA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + "base": "cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq", + "name": "Manna", + "display": "manna", + "symbol": "MANNA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png" } ] }, { - description: 'Social Impact DAO focused on youth empowerment', - type_asset: 'cw20', - address: - 'juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v', - denom_units: [ + "description": "Social Impact DAO focused on youth empowerment", + "type_asset": "cw20", + "address": "juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v", + "denom_units": [ { - denom: - 'cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v', - exponent: 0 + "denom": "cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v", + "exponent": 0 }, { - denom: 'empwr', - exponent: 6 + "denom": "empwr", + "exponent": 6 } ], - base: 'cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v', - name: 'EMPWR', - display: 'empwr', - symbol: 'EMPWR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/empwr.png' + "base": "cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v", + "name": "EMPWR", + "display": "empwr", + "symbol": "EMPWR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/empwr.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/empwr.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/empwr.png" } ] }, { - description: 'Join us in fighting against world hunger', - type_asset: 'cw20', - address: - 'juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd', - denom_units: [ + "description": "Join us in fighting against world hunger", + "type_asset": "cw20", + "address": "juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd", + "denom_units": [ { - denom: - 'cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd', - exponent: 0 + "denom": "cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd", + "exponent": 0 }, { - denom: 'middle', - exponent: 6 + "denom": "middle", + "exponent": 6 } ], - base: 'cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd', - name: 'Middle', - display: 'middle', - symbol: 'MIDDLE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/middle.png' + "base": "cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd", + "name": "Middle", + "display": "middle", + "symbol": "MIDDLE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/middle.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/middle.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/middle.png" } ] }, { - description: - 'Social Impact DAO taking a wholistic approach to helping abused and mentally ill women and children', - type_asset: 'cw20', - address: - 'juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w', - denom_units: [ + "description": "Social Impact DAO taking a wholistic approach to helping abused and mentally ill women and children", + "type_asset": "cw20", + "address": "juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w", + "denom_units": [ { - denom: - 'cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w', - exponent: 0 + "denom": "cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w", + "exponent": 0 }, { - denom: 'sunset', - exponent: 6 + "denom": "sunset", + "exponent": 6 } ], - base: 'cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w', - name: 'Sunset', - display: 'sunset', - symbol: 'SUNSET', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sunset.png' + "base": "cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w", + "name": "Sunset", + "display": "sunset", + "symbol": "SUNSET", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sunset.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sunset.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sunset.png" } ] }, { - description: - 'Social Impact DAO dedicated to helping restore and protect our environment', - type_asset: 'cw20', - address: - 'juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e', - denom_units: [ + "description": "Social Impact DAO dedicated to helping restore and protect our environment", + "type_asset": "cw20", + "address": "juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e", + "denom_units": [ { - denom: - 'cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e', - exponent: 0 + "denom": "cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e", + "exponent": 0 }, { - denom: 'tree', - exponent: 6 + "denom": "tree", + "exponent": 6 } ], - base: 'cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e', - name: 'Living Tree', - display: 'tree', - symbol: 'TREE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/livingtree.png' + "base": "cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e", + "name": "Living Tree", + "display": "tree", + "symbol": "TREE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/livingtree.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/livingtree.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/livingtree.png" } ] }, { - description: "Evmos Guardians' Invaders DAO token.", - type_asset: 'cw20', - address: - 'juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8', - denom_units: [ + "description": "Evmos Guardians' Invaders DAO token.", + "type_asset": "cw20", + "address": "juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8", + "denom_units": [ { - denom: - 'cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8', - exponent: 0 + "denom": "cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8", + "exponent": 0 }, { - denom: 'invdrs', - exponent: 6 + "denom": "invdrs", + "exponent": 6 } ], - base: 'cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8', - name: 'Invaders', - display: 'invdrs', - symbol: 'INVDRS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + "base": "cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8", + "name": "Invaders", + "display": "invdrs", + "symbol": "INVDRS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png" } ] }, { - description: 'Apemos', - type_asset: 'cw20', - address: - 'juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06', - denom_units: [ + "description": "Apemos", + "type_asset": "cw20", + "address": "juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06", + "denom_units": [ { - denom: - 'cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06', - exponent: 0 + "denom": "cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06", + "exponent": 0 }, { - denom: 'apemos', - exponent: 6 + "denom": "apemos", + "exponent": 6 } ], - base: 'cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06', - name: 'Apemos', - display: 'apemos', - symbol: 'APEMOS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + "base": "cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06", + "name": "Apemos", + "display": "apemos", + "symbol": "APEMOS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png" } ] }, { - description: 'The First Doge on Osmosis', - type_asset: 'cw20', - address: - 'juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je', - denom_units: [ + "description": "The First Doge on Osmosis", + "type_asset": "cw20", + "address": "juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je", + "denom_units": [ { - denom: - 'cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je', - exponent: 0 + "denom": "cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je", + "exponent": 0 }, { - denom: 'osdoge', - exponent: 6 + "denom": "osdoge", + "exponent": 6 } ], - base: 'cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je', - name: 'Osmosis Doge', - display: 'osdoge', - symbol: 'OSDOGE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + "base": "cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je", + "name": "Osmosis Doge", + "display": "osdoge", + "symbol": "OSDOGE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png" } ] }, { - description: 'Doge Apr', - type_asset: 'cw20', - address: - 'juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d', - denom_units: [ + "description": "Doge Apr", + "type_asset": "cw20", + "address": "juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d", + "denom_units": [ { - denom: - 'cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d', - exponent: 0 + "denom": "cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d", + "exponent": 0 }, { - denom: 'doga', - exponent: 6 + "denom": "doga", + "exponent": 6 } ], - base: 'cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d', - name: 'Doge Apr', - display: 'doga', - symbol: 'DOGA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + "base": "cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d", + "name": "Doge Apr", + "display": "doga", + "symbol": "DOGA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png" } ] }, { - description: 'Osmo Pepe', - type_asset: 'cw20', - address: - 'juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7', - denom_units: [ + "description": "Osmo Pepe", + "type_asset": "cw20", + "address": "juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7", + "denom_units": [ { - denom: - 'cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7', - exponent: 0 + "denom": "cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7", + "exponent": 0 }, { - denom: 'pepe', - exponent: 6 + "denom": "pepe", + "exponent": 6 } ], - base: 'cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7', - name: 'Osmo Pepe', - display: 'pepe', - symbol: 'PEPE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepe.png' + "base": "cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7", + "name": "Osmo Pepe", + "display": "pepe", + "symbol": "PEPE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepe.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepe.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepe.png" } ] }, { - description: 'Catmos', - type_asset: 'cw20', - address: - 'juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488', - denom_units: [ + "description": "Catmos", + "type_asset": "cw20", + "address": "juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488", + "denom_units": [ { - denom: - 'cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488', - exponent: 0 + "denom": "cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488", + "exponent": 0 }, { - denom: 'catmos', - exponent: 6 + "denom": "catmos", + "exponent": 6 } ], - base: 'cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488', - name: 'Catmos', - display: 'catmos', - symbol: 'CATMOS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + "base": "cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488", + "name": "Catmos", + "display": "catmos", + "symbol": "CATMOS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png" } ] }, { - description: 'Spacer', - type_asset: 'cw20', - address: - 'juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg', - denom_units: [ + "description": "Spacer", + "type_asset": "cw20", + "address": "juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg", + "denom_units": [ { - denom: - 'cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg', - exponent: 0 + "denom": "cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg", + "exponent": 0 }, { - denom: 'spacer', - exponent: 6 + "denom": "spacer", + "exponent": 6 } ], - base: 'cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg', - name: 'Spacer', - display: 'spacer', - symbol: 'SPACER', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + "base": "cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg", + "name": "Spacer", + "display": "spacer", + "symbol": "SPACER", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png" } ] }, { - description: 'Light: LumenX community DAO treasury token', - type_asset: 'cw20', - address: - 'juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l', - denom_units: [ + "description": "Light: LumenX community DAO treasury token", + "type_asset": "cw20", + "address": "juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l", + "denom_units": [ { - denom: - 'cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l', - exponent: 0 + "denom": "cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l", + "exponent": 0 }, { - denom: 'light', - exponent: 9 + "denom": "light", + "exponent": 9 } ], - base: 'cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l', - name: 'LIGHT', - display: 'light', - symbol: 'LIGHT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + "base": "cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l", + "name": "LIGHT", + "display": "light", + "symbol": "LIGHT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png" } ] }, { - description: 'Mille: the 1000th token on osmosis', - type_asset: 'cw20', - address: - 'juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d', - denom_units: [ + "description": "Mille: the 1000th token on osmosis", + "type_asset": "cw20", + "address": "juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d", + "denom_units": [ { - denom: - 'cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d', - exponent: 0 + "denom": "cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d", + "exponent": 0 }, { - denom: 'mile', - exponent: 6 + "denom": "mile", + "exponent": 6 } ], - base: 'cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d', - name: 'Mille', - display: 'mile', - symbol: 'MILE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + "base": "cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d", + "name": "Mille", + "display": "mile", + "symbol": "MILE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png" } ] }, { - description: 'Void', - type_asset: 'cw20', - address: - 'juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8', - denom_units: [ + "description": "Void", + "type_asset": "cw20", + "address": "juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8", + "denom_units": [ { - denom: - 'cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8', - exponent: 0 + "denom": "cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8", + "exponent": 0 }, { - denom: 'void', - exponent: 6 + "denom": "void", + "exponent": 6 } ], - base: 'cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8', - name: 'Void', - display: 'void', - symbol: 'VOID', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + "base": "cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8", + "name": "Void", + "display": "void", + "symbol": "VOID", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png" } ] }, { - description: 'Silica', - type_asset: 'cw20', - address: - 'juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux', - denom_units: [ + "description": "Silica", + "type_asset": "cw20", + "address": "juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux", + "denom_units": [ { - denom: - 'cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux', - exponent: 0 + "denom": "cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux", + "exponent": 0 }, { - denom: 'silica', - exponent: 6 + "denom": "silica", + "exponent": 6 } ], - base: 'cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux', - name: 'Silica', - display: 'silica', - symbol: 'SLCA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + "base": "cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux", + "name": "Silica", + "display": "silica", + "symbol": "SLCA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png" } ] }, { - description: 'Pepec', - type_asset: 'cw20', - address: - 'juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k', - denom_units: [ + "description": "Pepec", + "type_asset": "cw20", + "address": "juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k", + "denom_units": [ { - denom: - 'cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k', - exponent: 0 + "denom": "cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k", + "exponent": 0 }, { - denom: 'pepec', - exponent: 6 + "denom": "pepec", + "exponent": 6 } ], - base: 'cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k', - name: 'Pepec', - display: 'pepec', - symbol: 'PEPEC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + "base": "cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k", + "name": "Pepec", + "display": "pepec", + "symbol": "PEPEC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png" } ] }, { - description: 'Palantin', - type_asset: 'cw20', - address: - 'juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp', - denom_units: [ + "description": "Palantin", + "type_asset": "cw20", + "address": "juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp", + "denom_units": [ { - denom: - 'cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp', - exponent: 0 + "denom": "cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp", + "exponent": 0 }, { - denom: 'pltn', - exponent: 6 + "denom": "pltn", + "exponent": 6 } ], - base: 'cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp', - name: 'Palantin', - display: 'pltn', - symbol: 'PLTN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png' + "base": "cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp", + "name": "Palantin", + "display": "pltn", + "symbol": "PLTN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png" } ] }, { - description: 'Propose. Vote. Build.', - type_asset: 'cw20', - address: - 'juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw', - denom_units: [ + "description": "Propose. Vote. Build.", + "type_asset": "cw20", + "address": "juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw", + "denom_units": [ { - denom: - 'cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw', - exponent: 0 + "denom": "cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw", + "exponent": 0 }, { - denom: 'yfd', - exponent: 6 + "denom": "yfd", + "exponent": 6 } ], - base: 'cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw', - name: 'Y-Foundry DAO', - display: 'yfd', - symbol: 'YFD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.svg' + "base": "cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw", + "name": "Y-Foundry DAO", + "display": "yfd", + "symbol": "YFD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX', - exponent: 0 + "denom": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", + "exponent": 0 }, { - denom: 'nexx', - exponent: 6 + "denom": "nexx", + "exponent": 6 } ], - address: 'juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh', - base: 'factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX', - name: 'NEXX GEN AI', - display: 'nexx', - symbol: 'NEXX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png' + "address": "juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh", + "base": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", + "name": "NEXX GEN AI", + "display": "nexx", + "symbol": "NEXX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL', - exponent: 0 + "denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", + "exponent": 0 }, { - denom: 'dgl', - exponent: 6 + "denom": "dgl", + "exponent": 6 } ], - address: 'juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e', - base: 'factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL', - name: 'Licorice', - display: 'dgl', - symbol: 'DGL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + "address": "juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e", + "base": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", + "name": "Licorice", + "display": "dgl", + "symbol": "DGL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png" } ] }, { - description: 'ERIS liquid staked JUNO', - type_asset: 'cw20', - address: - 'juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a', - denom_units: [ + "description": "ERIS liquid staked JUNO", + "type_asset": "cw20", + "address": "juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a", + "denom_units": [ { - denom: - 'cw20:juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a', - exponent: 0 + "denom": "cw20:juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a", + "exponent": 0 }, { - denom: 'ampJUNO', - exponent: 6 + "denom": "ampJUNO", + "exponent": 6 } ], - base: 'cw20:juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a', - name: 'ERIS Amplified JUNO', - display: 'ampJUNO', - symbol: 'ampJUNO', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/ampjuno.svg' + "base": "cw20:juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a", + "name": "ERIS Amplified JUNO", + "display": "ampJUNO", + "symbol": "ampJUNO", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/ampjuno.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/ampjuno.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/ampjuno.svg" } ] }, { - description: 'BITS - Native token of Bitswift Cash', - type_asset: 'cw20', - address: - 'juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h', - denom_units: [ + "description": "BITS - Native token of Bitswift Cash", + "type_asset": "cw20", + "address": "juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h", + "denom_units": [ { - denom: - 'cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h', - exponent: 0 + "denom": "cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h", + "exponent": 0 }, { - denom: 'bits', - exponent: 8 + "denom": "bits", + "exponent": 8 } ], - base: 'cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h', - name: 'BITS', - display: 'bits', - symbol: 'BITS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bits.png' + "base": "cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h", + "name": "BITS", + "display": "bits", + "symbol": "BITS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bits.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bits.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bits.png" } ] }, { - description: - "The least memeable memecoin in existence. The cats have had their day, it's time for $POIL coin to take reign.", - type_asset: 'cw20', - address: - 'juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw', - denom_units: [ + "description": "The least memeable memecoin in existence. The cats have had their day, it's time for $POIL coin to take reign.", + "type_asset": "cw20", + "address": "juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw", + "denom_units": [ { - denom: - 'cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw', - exponent: 0 + "denom": "cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw", + "exponent": 0 }, { - denom: 'poil', - exponent: 6 + "denom": "poil", + "exponent": 6 } ], - base: 'cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw', - name: 'POIL', - display: 'poil', - symbol: 'POIL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/poil.png' + "base": "cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw", + "name": "POIL", + "display": "poil", + "symbol": "POIL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/poil.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/poil.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/poil.png" } ] }, { - description: - 'Hava Coin is the lifeblood of the Cosmos & Juno networks, rewarding builders and welcoming supporters. https://havacoin.xyz/', - denom_units: [ + "description": "Hava Coin is the lifeblood of the Cosmos & Juno networks, rewarding builders and welcoming supporters. https://havacoin.xyz/", + "denom_units": [ { - denom: 'factory/juno195asgku87kxgu48s447z0ryhsyn5rl3yzvfw0d/uhava', - exponent: 0 + "denom": "factory/juno195asgku87kxgu48s447z0ryhsyn5rl3yzvfw0d/uhava", + "exponent": 0 }, { - denom: 'hava', - exponent: 6 + "denom": "hava", + "exponent": 6 } ], - base: 'factory/juno195asgku87kxgu48s447z0ryhsyn5rl3yzvfw0d/uhava', - name: 'Hava Coin', - display: 'hava', - symbol: 'HAVA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hava.png' + "base": "factory/juno195asgku87kxgu48s447z0ryhsyn5rl3yzvfw0d/uhava", + "name": "Hava Coin", + "display": "hava", + "symbol": "HAVA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hava.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hava.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hava.png" } ] - }, - { - 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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + "base": "ukava", + "name": "Kava", + "display": "kava", + "symbol": "KAVA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg" }, - coingecko_id: 'kava', - images: [ + "coingecko_id": "kava", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg" } ] }, { - 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: 'Kava Hard', - display: 'HARD', - symbol: 'HARD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + "base": "hard", + "name": "Kava Hard", + "display": "HARD", + "symbol": "HARD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg" }, - coingecko_id: 'kava-lend', - images: [ + "coingecko_id": "kava-lend", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg" } ] }, { - description: 'Governance token of Kava Swap Protocol', - denom_units: [ + "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: 'Kava Swap', - display: 'SWP', - symbol: 'SWP', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + "base": "swp", + "name": "Kava Swap", + "display": "SWP", + "symbol": "SWP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg" }, - coingecko_id: 'kava-swap', - images: [ + "coingecko_id": "kava-swap", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg" } ] }, { - description: 'The native stablecoin of Kava', - denom_units: [ + "description": "The native stablecoin of Kava", + "denom_units": [ { - denom: 'usdx', - exponent: 0 + "denom": "usdx", + "exponent": 0 }, { - denom: 'USDX', - exponent: 6 + "denom": "USDX", + "exponent": 6 } ], - base: 'usdx', - name: 'Kava USDX', - display: 'USDX', - symbol: 'USDX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + "base": "usdx", + "name": "Kava USDX", + "display": "USDX", + "symbol": "USDX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg" }, - coingecko_id: 'usdx', - images: [ + "coingecko_id": "usdx", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'erc20/tether/usdt', - exponent: 0 + "denom": "erc20/tether/usdt", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - base: 'erc20/tether/usdt', - name: 'Tether USD', - display: 'usdt', - symbol: 'USDT', - coingecko_id: 'tether', - traces: [ + "base": "erc20/tether/usdt", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", + "coingecko_id": "tether", + "traces": [ { - type: 'additional-mintage', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" }, - provider: 'Tether' + "provider": "Tether" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xdac17f958d2ee523a2206206994597c13d831ec7" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } } ] }, { - $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', - images: [ + "coingecko_id": "ki", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg" } ] }, { - 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', - images: [ + "coingecko_id": "lvn", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png" } ] } ] }, { - $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', - images: [ + "coingecko_id": "darcmatter-coin", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'kujira', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "kujira", + "assets": [ { - description: - 'The native staking and governance token of the Kujira chain.', - denom_units: [ + "description": "The native staking and governance token of the Kujira chain.", + "denom_units": [ { - denom: 'ukuji', - exponent: 0 + "denom": "ukuji", + "exponent": 0 }, { - denom: 'kuji', - exponent: 6 + "denom": "kuji", + "exponent": 6 } ], - base: 'ukuji', - name: 'Kujira', - display: 'kuji', - symbol: 'KUJI', - coingecko_id: 'kujira', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + "base": "ukuji", + "name": "Kujira", + "display": "kuji", + "symbol": "KUJI", + "coingecko_id": "kujira", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" } ] }, { - description: - 'The native over-collateralized stablecoin from the Kujira chain.', - denom_units: [ + "description": "The native over-collateralized stablecoin from the Kujira chain.", + "denom_units": [ { - denom: - 'factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk', - exponent: 0 + "denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "exponent": 0 }, { - denom: 'usk', - exponent: 6 + "denom": "usk", + "exponent": 6 } ], - base: 'factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk', - name: 'USK', - display: 'usk', - symbol: 'USK', - coingecko_id: 'usk', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + "base": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "name": "USK", + "display": "usk", + "symbol": "USK", + "coingecko_id": "usk", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" } ] }, { - description: "Quark's auto-compounding KUJI derivative", - denom_units: [ + "description": "Quark's auto-compounding KUJI derivative", + "denom_units": [ { - denom: - 'factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt', - exponent: 0 + "denom": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", + "exponent": 0 }, { - denom: 'qcKUJI', - exponent: 6 + "denom": "qcKUJI", + "exponent": 6 } ], - base: 'factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt', - name: 'qcKUJI', - display: 'qcKUJI', - symbol: 'qcKUJI', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg' + "base": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", + "name": "qcKUJI", + "display": "qcKUJI", + "symbol": "qcKUJI", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg" } ] }, { - description: 'ampKUJI', - denom_units: [ + "description": "ampKUJI", + "denom_units": [ { - denom: - 'factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI', - exponent: 0 + "denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "exponent": 0 }, { - denom: 'ampKUJI', - exponent: 6 + "denom": "ampKUJI", + "exponent": 6 } ], - base: 'factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI', - name: 'ampKUJI', - display: 'ampKUJI', - symbol: 'ampKUJI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg' + "base": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "name": "ampKUJI", + "display": "ampKUJI", + "symbol": "ampKUJI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg" } ] }, { - description: 'MantaDAO Governance Token', - denom_units: [ + "description": "MantaDAO Governance Token", + "denom_units": [ { - denom: - 'factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta', - exponent: 0 + "denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "exponent": 0 }, { - denom: 'mnta', - exponent: 6 + "denom": "mnta", + "exponent": 6 } ], - base: 'factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta', - name: 'MantaDAO', - display: 'mnta', - symbol: 'MNTA', - coingecko_id: 'mantadao', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + "base": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "name": "MantaDAO", + "display": "mnta", + "symbol": "MNTA", + "coingecko_id": "mantadao", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg" } ] }, { - description: "Quark's auto-compounding MNTA derivative", - denom_units: [ + "description": "Quark's auto-compounding MNTA derivative", + "denom_units": [ { - denom: - 'factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt', - exponent: 0 + "denom": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", + "exponent": 0 }, { - denom: 'qcMNTA', - exponent: 6 + "denom": "qcMNTA", + "exponent": 6 } ], - base: 'factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt', - name: 'qcMNTA', - display: 'qcMNTA', - symbol: 'qcMNTA', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg' + "base": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", + "name": "qcMNTA", + "display": "qcMNTA", + "symbol": "qcMNTA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg" } ] }, { - description: 'ERIS Liquid Staked MNTA', - denom_units: [ + "description": "ERIS Liquid Staked MNTA", + "denom_units": [ { - denom: - 'factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA', - exponent: 0 + "denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", + "exponent": 0 }, { - denom: 'ampMNTA', - exponent: 6 + "denom": "ampMNTA", + "exponent": 6 } ], - base: 'factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA', - name: 'ERIS Amplified MNTA', - display: 'ampMNTA', - symbol: 'ampMNTA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png' + "base": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", + "name": "ERIS Amplified MNTA", + "display": "ampMNTA", + "symbol": "ampMNTA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png" } ] }, { - description: 'The content house of Kujira', - denom_units: [ + "description": "The content house of Kujira", + "denom_units": [ { - denom: - 'factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink', - exponent: 0 + "denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "exponent": 0 }, { - denom: 'wink', - exponent: 6 + "denom": "wink", + "exponent": 6 } ], - base: 'factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink', - name: 'WINK', - display: 'wink', - symbol: 'WINK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg' + "base": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "name": "WINK", + "display": "wink", + "symbol": "WINK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg" } ] }, { - description: 'Blend Token', - denom_units: [ + "description": "Blend Token", + "denom_units": [ { - denom: - 'factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend', - exponent: 0 + "denom": "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", + "exponent": 0 }, { - denom: 'blend', - exponent: 6 + "denom": "blend", + "exponent": 6 } ], - base: 'factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend', - name: 'BLEND', - display: 'blend', - symbol: 'BLEND', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg' + "base": "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", + "name": "BLEND", + "display": "blend", + "symbol": "BLEND", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg" } ] }, { - description: 'Tether USDt on Kujira', - denom_units: [ + "description": "Tether USDt on Kujira", + "denom_units": [ { - denom: - 'ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8', - exponent: 0 + "denom": "ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8', - name: 'Tether USD', - display: 'usdt', - symbol: 'USDT', - traces: [ + "type_asset": "ics20", + "base": "ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt', - channel_id: 'channel-116' + "type": "ibc", + "counterparty": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt", + "channel_id": "channel-116" }, - chain: { - channel_id: 'channel-95', - path: 'transfer/channel-95/erc20/tether/usdt' + "chain": { + "channel_id": "channel-95", + "path": "transfer/channel-95/erc20/tether/usdt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } }, { - description: 'The staking and governance token of Fuzion', - denom_units: [ + "description": "The staking and governance token of Fuzion", + "denom_units": [ { - denom: - 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn', - exponent: 0 + "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", + "exponent": 0 }, { - denom: 'fuzn', - exponent: 6 + "denom": "fuzn", + "exponent": 6 } ], - base: 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn', - name: 'Fuzion', - display: 'fuzn', - symbol: 'FUZN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg' + "base": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", + "name": "Fuzion", + "display": "fuzn", + "symbol": "FUZN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg" } ] }, { - description: 'The receipt token of Fuzion', - denom_units: [ + "description": "The receipt token of Fuzion", + "denom_units": [ { - denom: - 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn', - exponent: 0 + "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", + "exponent": 0 }, { - denom: 'rfuzn', - exponent: 6 + "denom": "rfuzn", + "exponent": 6 } ], - base: 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn', - name: 'Fuzion Receipt', - display: 'rfuzn', - symbol: 'rFUZN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png' + "base": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", + "name": "Fuzion Receipt", + "display": "rfuzn", + "symbol": "rFUZN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png" } ] }, { - description: 'The yield token of Fuzion', - denom_units: [ + "description": "The yield token of Fuzion", + "denom_units": [ { - denom: - 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn', - exponent: 0 + "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", + "exponent": 0 }, { - denom: 'yfuzn', - exponent: 6 + "denom": "yfuzn", + "exponent": 6 } ], - base: 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn', - name: 'Fuzion Yield', - display: 'yfuzn', - symbol: 'yFUZN', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg' + "base": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", + "name": "Fuzion Yield", + "display": "yfuzn", + "symbol": "yFUZN", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg" } ] }, { - description: "Quark's auto-compounding FUZN derivative", - denom_units: [ + "description": "Quark's auto-compounding FUZN derivative", + "denom_units": [ { - denom: - 'factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt', - exponent: 0 + "denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", + "exponent": 0 }, { - denom: 'qcFUZN', - exponent: 6 + "denom": "qcFUZN", + "exponent": 6 } ], - base: 'factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt', - name: 'qcFUZN', - display: 'qcFUZN', - symbol: 'qcFUZN', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg' + "base": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", + "name": "qcFUZN", + "display": "qcFUZN", + "symbol": "qcFUZN", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg" } ] }, { - description: 'The Revenue & Governance token of Unstake.fi', - denom_units: [ + "description": "The Revenue & Governance token of Unstake.fi", + "denom_units": [ { - denom: - 'factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk', - exponent: 0 + "denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "exponent": 0 }, { - denom: 'nstk', - exponent: 6 + "denom": "nstk", + "exponent": 6 } ], - base: 'factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk', - name: 'Unstake Fi', - display: 'nstk', - symbol: 'NSTK', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + "base": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "name": "Unstake Fi", + "display": "nstk", + "symbol": "NSTK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" }, - coingecko_id: 'unstake-fi', - images: [ + "coingecko_id": "unstake-fi", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg" } ] }, { - description: 'Local Money', - denom_units: [ + "description": "Local Money", + "denom_units": [ { - denom: - 'factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local', - exponent: 0 + "denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", + "exponent": 0 }, { - denom: 'local', - exponent: 6 + "denom": "local", + "exponent": 6 } ], - base: 'factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local', - name: 'LOCAL', - display: 'local', - symbol: 'LOCAL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png' + "base": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", + "name": "LOCAL", + "display": "local", + "symbol": "LOCAL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png" } ] }, { - description: 'Food for whales', - denom_units: [ + "description": "Food for whales", + "denom_units": [ { - denom: - 'factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk', - exponent: 0 + "denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "exponent": 0 }, { - denom: 'PLNK', - exponent: 6 + "denom": "PLNK", + "exponent": 6 } ], - base: 'factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk', - name: 'Plankton', - display: 'PLNK', - symbol: 'PLNK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png' + "base": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "name": "Plankton", + "display": "PLNK", + "symbol": "PLNK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3', - exponent: 0 + "denom": "ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3", + "exponent": 0 }, { - denom: 'sol', - exponent: 8 + "denom": "sol", + "exponent": 8 } ], - base: 'ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3', - name: 'Wormhole Solana', - display: 'sol', - symbol: 'whSOL', - traces: [ + "base": "ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3", + "name": "Wormhole Solana", + "display": "sol", + "symbol": "whSOL", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'gateway', - base_denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA', - channel_id: 'channel-9' + "type": "ibc", + "counterparty": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "channel_id": "channel-9" }, - chain: { - channel_id: 'channel-113', - path: 'transfer/channel-113/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA' + "chain": { + "channel_id": "channel-113", + "path": "transfer/channel-113/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'gateway', - base_denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA' + "image_sync": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10', - exponent: 0 + "denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", + "exponent": 0 }, { - denom: 'evmos', - exponent: 18 + "denom": "evmos", + "exponent": 18 } ], - base: 'ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10', - name: 'Evmos', - display: 'evmos', - symbol: 'EVMOS', - traces: [ + "base": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", + "name": "Evmos", + "display": "evmos", + "symbol": "EVMOS", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'evmos', - base_denom: 'aevmos', - channel_id: 'channel-18' + "type": "ibc", + "counterparty": { + "chain_name": "evmos", + "base_denom": "aevmos", + "channel_id": "channel-18" }, - chain: { - channel_id: 'channel-23', - path: 'transfer/channel-23/aevmos' + "chain": { + "channel_id": "channel-23", + "path": "transfer/channel-23/aevmos" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'evmos', - base_denom: 'aevmos' + "image_sync": { + "chain_name": "evmos", + "base_denom": "aevmos" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2', - exponent: 0 + "denom": "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", + "exponent": 0 }, { - denom: 'avax', - exponent: 18 + "denom": "avax", + "exponent": 18 } ], - type_asset: 'ics20', - base: 'ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2', - name: 'Axelar Wrapped AVAX', - display: 'avax', - symbol: 'wAVAX', - traces: [ + "type_asset": "ics20", + "base": "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", + "name": "Axelar Wrapped AVAX", + "display": "avax", + "symbol": "wAVAX", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'axelar', - base_denom: 'wawax-wei', - channel_id: 'channel-14' + "type": "ibc", + "counterparty": { + "chain_name": "axelar", + "base_denom": "wawax-wei", + "channel_id": "channel-14" }, - chain: { - channel_id: 'channel-9', - path: 'transfer/channel-9/wavax-wei' + "chain": { + "channel_id": "channel-9", + "path": "transfer/channel-9/wavax-wei" } } ], - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', - exponent: 0 + "denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", + "exponent": 0 }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', - name: 'Noble USD Coin', - display: 'usdc', - symbol: 'USDC', - traces: [ + "type_asset": "ics20", + "base": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", + "name": "Noble USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'noble', - base_denom: 'uusdc', - channel_id: 'channel-2' + "type": "ibc", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc", + "channel_id": "channel-2" }, - chain: { - channel_id: 'channel-62', - path: 'transfer/channel-62/uusdc' + "chain": { + "channel_id": "channel-62", + "path": "transfer/channel-62/uusdc" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'noble', - base_denom: 'uusdc' + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23', - exponent: 0 + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "exponent": 0 }, { - denom: 'osmo', - exponent: 6 + "denom": "osmo", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23', - name: 'Osmosis', - display: 'osmo', - symbol: 'OSMO', - traces: [ + "type_asset": "ics20", + "base": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: 'uosmo', - channel_id: 'channel-259' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo", + "channel_id": "channel-259" }, - chain: { - channel_id: 'channel-3', - path: 'transfer/channel-3/uosmo' + "chain": { + "channel_id": "channel-3", + "path": "transfer/channel-3/uosmo" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: 'uosmo' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F', - exponent: 0 + "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "exponent": 0 }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F', - name: 'Axelar USD Coin', - display: 'usdc', - symbol: 'axlUSDC', - traces: [ + "type_asset": "ics20", + "base": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "name": "Axelar USD Coin", + "display": "usdc", + "symbol": "axlUSDC", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'axelar', - base_denom: 'uusdc', - channel_id: 'channel-14' + "type": "ibc", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdc", + "channel_id": "channel-14" }, - chain: { - channel_id: 'channel-9', - path: 'transfer/channel-9/uusdc' + "chain": { + "channel_id": "channel-9", + "path": "transfer/channel-9/uusdc" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'axelar', - base_denom: 'uusdc' + "image_sync": { + "chain_name": "axelar", + "base_denom": "uusdc" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07', - exponent: 0 + "denom": "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", + "exponent": 0 }, { - denom: 'cmdx', - exponent: 6 + "denom": "cmdx", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07', - name: 'Comdex', - display: 'cmdx', - symbol: 'CMDX', - traces: [ + "type_asset": "ics20", + "base": "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", + "name": "Comdex", + "display": "cmdx", + "symbol": "CMDX", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'comdex', - base_denom: 'ucmdx', - channel_id: 'channel-31' + "type": "ibc", + "counterparty": { + "chain_name": "comdex", + "base_denom": "ucmdx", + "channel_id": "channel-31" }, - chain: { - channel_id: 'channel-18', - path: 'transfer/channel-18/ucmdx' + "chain": { + "channel_id": "channel-18", + "path": "transfer/channel-18/ucmdx" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'comdex', - base_denom: 'ucmdx' + "image_sync": { + "chain_name": "comdex", + "base_denom": "ucmdx" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5', - exponent: 0 + "denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", + "exponent": 0 }, { - denom: 'juno', - exponent: 6 + "denom": "juno", + "exponent": 6 } ], - base: 'ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5', - name: 'Juno', - display: 'juno', - symbol: 'JUNO', - traces: [ + "base": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'juno', - base_denom: 'ujuno', - channel_id: 'channel-87' + "type": "ibc", + "counterparty": { + "chain_name": "juno", + "base_denom": "ujuno", + "channel_id": "channel-87" }, - chain: { - channel_id: 'channel-1', - path: 'transfer/channel-1/ujuno' + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/ujuno" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'juno', - base_denom: 'ujuno' + "image_sync": { + "chain_name": "juno", + "base_denom": "ujuno" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7', - exponent: 0 + "denom": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", + "exponent": 0 }, { - denom: 'weth', - exponent: 18 + "denom": "weth", + "exponent": 18 } ], - type_asset: 'ics20', - base: 'ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7', - name: 'Axelar Wrapped Ether', - display: 'weth', - symbol: 'wETH', - traces: [ + "type_asset": "ics20", + "base": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", + "name": "Axelar Wrapped Ether", + "display": "weth", + "symbol": "wETH", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'axelar', - base_denom: 'weth-wei', - channel_id: 'channel-14' + "type": "ibc", + "counterparty": { + "chain_name": "axelar", + "base_denom": "weth-wei", + "channel_id": "channel-14" }, - chain: { - channel_id: 'channel-9', - path: 'transfer/channel-9/weth-wei' + "chain": { + "channel_id": "channel-9", + "path": "transfer/channel-9/weth-wei" } } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', - exponent: 0 + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "exponent": 0 }, { - denom: 'atom', - exponent: 6 + "denom": "atom", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', - name: 'Cosmos Hub Atom', - display: 'atom', - symbol: 'ATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'cosmoshub', - base_denom: 'uatom', - channel_id: 'channel-343' + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-343" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/uatom' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uatom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'cosmoshub', - base_denom: 'uatom' + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986', - exponent: 0 + "denom": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", + "exponent": 0 }, { - denom: 'luna', - exponent: 6 + "denom": "luna", + "exponent": 6 } ], - base: 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986', - name: 'Luna', - display: 'luna', - symbol: 'LUNA', - traces: [ + "base": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", + "name": "Luna", + "display": "luna", + "symbol": "LUNA", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'terra2', - base_denom: 'uluna', - channel_id: 'channel-10' + "type": "ibc", + "counterparty": { + "chain_name": "terra2", + "base_denom": "uluna", + "channel_id": "channel-10" }, - chain: { - channel_id: 'channel-5', - path: 'transfer/channel-5/uluna' + "chain": { + "channel_id": "channel-5", + "path": "transfer/channel-5/uluna" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'luna', - base_denom: 'uluna' + "image_sync": { + "chain_name": "luna", + "base_denom": "uluna" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602', - exponent: 0 + "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", + "exponent": 0 }, { - denom: 'stars', - exponent: 6 + "denom": "stars", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602', - name: 'Stargaze', - display: 'stars', - symbol: 'STARS', - traces: [ + "type_asset": "ics20", + "base": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", + "name": "Stargaze", + "display": "stars", + "symbol": "STARS", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'stargaze', - base_denom: 'ustars', - channel_id: 'channel-49' + "type": "ibc", + "counterparty": { + "chain_name": "stargaze", + "base_denom": "ustars", + "channel_id": "channel-49" }, - chain: { - channel_id: 'channel-7', - path: 'transfer/channel-7/ustars' + "chain": { + "channel_id": "channel-7", + "path": "transfer/channel-7/ustars" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'stargaze', - base_denom: 'ustars' + "image_sync": { + "chain_name": "stargaze", + "base_denom": "ustars" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5', - exponent: 0 + "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "exponent": 0 }, { - denom: 'scrt', - exponent: 6 + "denom": "scrt", + "exponent": 6 } ], - base: 'ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5', - name: 'Secret Network', - display: 'scrt', - symbol: 'SCRT', - traces: [ + "base": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "name": "Secret Network", + "display": "scrt", + "symbol": "SCRT", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'secretnetwork', - base_denom: 'uscrt', - channel_id: 'channel-22' + "type": "ibc", + "counterparty": { + "chain_name": "secretnetwork", + "base_denom": "uscrt", + "channel_id": "channel-22" }, - chain: { - channel_id: 'channel-10', - path: 'transfer/channel-10/uscrt' + "chain": { + "channel_id": "channel-10", + "path": "transfer/channel-10/uscrt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'scrt', - base_denom: 'uscrt' + "image_sync": { + "chain_name": "scrt", + "base_denom": "uscrt" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + "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" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'kyve', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "kyve", + "assets": [ { - description: 'The native utility token of the KYVE network.', - denom_units: [ + "description": "The native utility token of the KYVE network.", + "denom_units": [ { - denom: 'ukyve', - exponent: 0 + "denom": "ukyve", + "exponent": 0 }, { - denom: 'kyve', - exponent: 6 + "denom": "kyve", + "exponent": 6 } ], - base: 'ukyve', - name: 'KYVE', - display: 'kyve', - symbol: 'KYVE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + "base": "ukyve", + "name": "KYVE", + "display": "kyve", + "symbol": "KYVE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg" }, - coingecko_id: 'kyve-network', - images: [ + "coingecko_id": "kyve-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'lambda', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "lambda", + "assets": [ { - description: 'The native token of Lambda', - denom_units: [ + "description": "The native token of Lambda", + "denom_units": [ { - denom: 'ulamb', - exponent: 0 + "denom": "ulamb", + "exponent": 0 }, { - denom: 'lamb', - exponent: 18 + "denom": "lamb", + "exponent": 18 } ], - base: 'ulamb', - name: 'Lambda', - display: 'lamb', - symbol: 'LAMB', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + "base": "ulamb", + "name": "Lambda", + "display": "lamb", + "symbol": "LAMB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg" }, - coingecko_id: 'lambda', - images: [ + "coingecko_id": "lambda", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "likecoin", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg" } ] } ] }, { - $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: { - 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' + "base": "aLYT", + "name": "LYT", + "display": "LYT", + "symbol": "LYT", + "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" }, - images: [ + "images": [ { - 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' + "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: '../assetlist.schema.json', - chain_name: 'loyal', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "loyal", + "assets": [ { - description: 'The native token of Loyal', - denom_units: [ + "description": "The native token of Loyal", + "denom_units": [ { - denom: 'ulyl', - exponent: 0 + "denom": "ulyl", + "exponent": 0 }, { - denom: 'lyl', - exponent: 6 + "denom": "lyl", + "exponent": 6 } ], - base: 'ulyl', - name: 'Loyal', - display: 'lyl', - symbol: 'LYL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.svg' + "base": "ulyl", + "name": "Loyal", + "display": "lyl", + "symbol": "LYL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'lumenx', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "lumenx", + "assets": [ { - description: 'The native token of LumenX Network', - denom_units: [ + "description": "The native token of LumenX 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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + "base": "ulumen", + "name": "LUMEN", + "display": "lumen", + "symbol": "LUMEN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "lum-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'mars', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "mars", + "assets": [ { - description: 'Mars protocol token', - denom_units: [ + "description": "Mars protocol token", + "denom_units": [ { - denom: 'umars', - exponent: 0 + "denom": "umars", + "exponent": 0 }, { - denom: 'mars', - exponent: 6 + "denom": "mars", + "exponent": 6 } ], - base: 'umars', - name: 'Mars', - display: 'mars', - symbol: 'MARS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + "base": "umars", + "name": "Mars", + "display": "mars", + "symbol": "MARS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg" }, - coingecko_id: 'mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3', - images: [ + "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'mayachain', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "mayachain", + "assets": [ { - description: 'The native token of Maya Protocol', - denom_units: [ + "description": "The native token of Maya Protocol", + "denom_units": [ { - denom: 'cacao', - exponent: 0 + "denom": "cacao", + "exponent": 0 }, { - denom: 'CACAO', - exponent: 10 + "denom": "CACAO", + "exponent": 10 } ], - base: 'cacao', - name: 'Cacao', - display: 'CACAO', - symbol: 'CACAO', - images: [ + "base": "cacao", + "name": "Cacao", + "display": "CACAO", + "symbol": "CACAO", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mayachain/images/cacao.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mayachain/images/cacao.svg" } ], - coingecko_id: 'cacao', - keywords: ['dex'], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mayachain/images/cacao.svg' + "coingecko_id": "cacao", + "keywords": [ + "dex" + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mayachain/images/cacao.svg" } }, { - description: 'The native revenue sharing token of Maya Protocol', - denom_units: [ + "description": "The native revenue sharing token of Maya Protocol", + "denom_units": [ { - denom: 'maya', - exponent: 0 + "denom": "maya", + "exponent": 0 }, { - denom: 'MAYA', - exponent: 4 + "denom": "MAYA", + "exponent": 4 } ], - base: 'maya', - name: 'Maya', - display: 'MAYA', - symbol: 'MAYA', - images: [ + "base": "maya", + "name": "Maya", + "display": "MAYA", + "symbol": "MAYA", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mayachain/images/maya.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mayachain/images/maya.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mayachain/images/maya.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mayachain/images/maya.svg" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'medasdigital', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "medasdigital", + "assets": [ { - description: 'The native token of Medas Digital Network', - denom_units: [ + "description": "The native token of Medas Digital Network", + "denom_units": [ { - denom: 'umedas', - exponent: 0 + "denom": "umedas", + "exponent": 0 }, { - denom: 'medas', - exponent: 6 + "denom": "medas", + "exponent": 6 } ], - base: 'umedas', - name: 'Medas Digital', - display: 'medas', - symbol: 'MEDAS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + "base": "umedas", + "name": "Medas Digital", + "display": "medas", + "symbol": "MEDAS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg" }, - keywords: ['medas'], - images: [ + "keywords": [ + "medas" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg" } ] } ] }, { - $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" }, - coingecko_id: 'meme-network', - images: [ + "coingecko_id": "meme-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + "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" }, - coingecko_id: 'microtick', - images: [ + "coingecko_id": "microtick", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'migaloo', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "migaloo", + "assets": [ { - description: 'The native token of Migaloo Chain', - denom_units: [ + "description": "The native token of Migaloo Chain", + "denom_units": [ { - denom: 'uwhale', - exponent: 0 + "denom": "uwhale", + "exponent": 0 }, { - denom: 'whale', - exponent: 6 + "denom": "whale", + "exponent": 6 } ], - base: 'uwhale', - name: 'Whale', - display: 'whale', - symbol: 'WHALE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + "base": "uwhale", + "name": "Whale", + "display": "whale", + "symbol": "WHALE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg" }, - coingecko_id: 'white-whale', - images: [ + "coingecko_id": "white-whale", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg" } ] }, { - description: 'ampWHALE', - denom_units: [ + "description": "ampWHALE", + "denom_units": [ { - denom: - 'factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE', - exponent: 0 + "denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "exponent": 0 }, { - denom: 'ampWHALE', - exponent: 6 + "denom": "ampWHALE", + "exponent": 6 } ], - base: 'factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE', - name: 'ampWHALE', - display: 'ampWHALE', - symbol: 'ampWHALE', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg' + "base": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "name": "ampWHALE", + "display": "ampWHALE", + "symbol": "ampWHALE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg" } ] }, { - description: 'boneWHALE', - denom_units: [ + "description": "boneWHALE", + "denom_units": [ { - denom: - 'factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale', - exponent: 0 + "denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "exponent": 0 }, { - denom: 'boneWHALE', - exponent: 6 + "denom": "boneWHALE", + "exponent": 6 } ], - base: 'factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale', - name: 'boneWHALE', - display: 'boneWHALE', - symbol: 'bWHALE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg' + "base": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "name": "boneWHALE", + "display": "boneWHALE", + "symbol": "bWHALE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg" } ] }, { - description: 'FABLE', - denom_units: [ + "description": "FABLE", + "denom_units": [ { - denom: - 'factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable', - exponent: 0 + "denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", + "exponent": 0 }, { - denom: 'fable', - exponent: 6 + "denom": "fable", + "exponent": 6 } ], - base: 'factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable', - name: 'FABLE', - display: 'fable', - symbol: 'FABLE', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg' + "base": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", + "name": "FABLE", + "display": "fable", + "symbol": "FABLE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg" } ] }, { - description: 'boneLUNA are autocompounding LUNA tokens', - denom_units: [ + "description": "boneLUNA are autocompounding LUNA tokens", + "denom_units": [ { - denom: - 'ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708', - exponent: 0 + "denom": "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708", + "exponent": 0 }, { - denom: 'bluna', - exponent: 6 + "denom": "bluna", + "exponent": 6 } ], - base: 'ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708', - address: - 'cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml', - type_asset: 'ics20', - name: 'boneLuna', - display: 'bluna', - symbol: 'bLUNA', - traces: [ + "base": "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708", + "address": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "type_asset": "ics20", + "name": "boneLuna", + "display": "bluna", + "symbol": "bLUNA", + "traces": [ { - type: 'ibc-cw20', - counterparty: { - chain_name: 'terra2', - base_denom: - 'cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml', - port: 'wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au', - channel_id: 'channel-87' + "type": "ibc-cw20", + "counterparty": { + "chain_name": "terra2", + "base_denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", + "channel_id": "channel-87" }, - chain: { - port: 'transfer', - channel_id: 'channel-2', - path: 'transfer/channel-2/cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml' + "chain": { + "port": "transfer", + "channel_id": "channel-2", + "path": "transfer/channel-2/cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" } ] }, { - description: 'RAC', - denom_units: [ + "description": "RAC", + "denom_units": [ { - denom: - 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac', - exponent: 0 + "denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "exponent": 0 }, { - denom: 'RAC', - exponent: 6 + "denom": "RAC", + "exponent": 6 } ], - base: 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac', - name: 'RAC', - display: 'RAC', - symbol: 'RAC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + "base": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "name": "RAC", + "display": "RAC", + "symbol": "RAC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg" } ] }, { - description: 'ASH', - denom_units: [ + "description": "ASH", + "denom_units": [ { - denom: - 'factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash', - exponent: 0 + "denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", + "exponent": 0 }, { - denom: 'ASH', - exponent: 6 + "denom": "ASH", + "exponent": 6 } ], - base: 'factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash', - name: 'ASH', - display: 'ASH', - symbol: 'ASH', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + "base": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", + "name": "ASH", + "display": "ASH", + "symbol": "ASH", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg" } ] }, { - description: 'Tether USDt on Migaloo', - denom_units: [ + "description": "Tether USDt on Migaloo", + "denom_units": [ { - denom: - 'ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737', - exponent: 0 + "denom": "ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737', - name: 'Tether USDt', - display: 'usdt', - symbol: 'USDt', - traces: [ + "type_asset": "ics20", + "base": "ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737", + "name": "Tether USDt", + "display": "usdt", + "symbol": "USDt", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt', - channel_id: 'channel-120' + "type": "ibc", + "counterparty": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt", + "channel_id": "channel-120" }, - chain: { - channel_id: 'channel-48', - path: 'transfer/channel-48/erc20/tether/usdt' + "chain": { + "channel_id": "channel-48", + "path": "transfer/channel-48/erc20/tether/usdt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } }, { - description: - 'Auto componded USDC despoited into Ginkou on Migaloo chain', - denom_units: [ + "description": "Auto componded USDC despoited into Ginkou on Migaloo chain", + "denom_units": [ { - denom: - 'cw20:migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v', - exponent: 0 + "denom": "cw20:migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v", + "exponent": 0 }, { - denom: 'mUSDC', - exponent: 6 + "denom": "mUSDC", + "exponent": 6 } ], - type_asset: 'cw20', - address: - 'migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v', - base: 'cw20:migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v', - name: 'mUSDC', - display: 'mUSDC', - symbol: 'mUSDC', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/mUSDC.svg' + "type_asset": "cw20", + "address": "migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v", + "base": "cw20:migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v", + "name": "mUSDC", + "display": "mUSDC", + "symbol": "mUSDC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/mUSDC.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/mUSDC.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/mUSDC.svg" } ] }, { - description: 'GUPPY', - denom_units: [ + "description": "GUPPY", + "denom_units": [ { - denom: - 'factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy', - exponent: 0 + "denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "exponent": 0 }, { - denom: 'GUPPY', - exponent: 6 + "denom": "GUPPY", + "exponent": 6 } ], - base: 'factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy', - name: 'GUPPY', - display: 'GUPPY', - symbol: 'GUPPY', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + "base": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "name": "GUPPY", + "display": "GUPPY", + "symbol": "GUPPY", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png" } ] }, { - description: 'OPHIR is a Cosmos Treasury DAO established on Migaloo.', - denom_units: [ + "description": "OPHIR is a Cosmos Treasury DAO established on Migaloo.", + "denom_units": [ { - denom: - 'factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir', - exponent: 0 + "denom": "factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir", + "exponent": 0 }, { - denom: 'OPHIR', - exponent: 6 + "denom": "OPHIR", + "exponent": 6 } ], - base: 'factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir', - name: 'OPHIR', - display: 'OPHIR', - symbol: 'OPHIR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png' + "base": "factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir", + "name": "OPHIR", + "display": "OPHIR", + "symbol": "OPHIR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'mises', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "mises", + "assets": [ { - description: 'The native staking and gov token of the Mises Network.', - denom_units: [ + "description": "The native staking and gov token of the Mises Network.", + "denom_units": [ { - denom: 'umis', - exponent: 0, - aliases: ['micromis'] + "denom": "umis", + "exponent": 0, + "aliases": [ + "micromis" + ] }, { - denom: 'mmis', - exponent: 3, - aliases: ['millimis'] + "denom": "mmis", + "exponent": 3, + "aliases": [ + "millimis" + ] }, { - denom: 'mis', - exponent: 6, - aliases: [] + "denom": "mis", + "exponent": 6, + "aliases": [] } ], - base: 'umis', - display: 'mis', - name: 'mises network MIS', - symbol: 'MIS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png' + "base": "umis", + "display": "mis", + "name": "mises network MIS", + "symbol": "MIS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'mun', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "mun", + "assets": [ { - description: 'The native token of Mun', - denom_units: [ + "description": "The native token of Mun", + "denom_units": [ { - denom: 'umun', - exponent: 0 + "denom": "umun", + "exponent": 0 }, { - denom: 'mun', - exponent: 6 + "denom": "mun", + "exponent": 6 } ], - base: 'umun', - name: 'Mun', - display: 'mun', - symbol: 'MUN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.svg' + "base": "umun", + "name": "Mun", + "display": "mun", + "symbol": "MUN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.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: { - 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' + "base": "aMYT", + "name": "MYT", + "display": "MYT", + "symbol": "MYT", + "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" }, - images: [ + "images": [ { - 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' + "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: '../assetlist.schema.json', - chain_name: 'neutron', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "neutron", + "assets": [ { - description: 'The native token of Neutron chain.', - denom_units: [ + "description": "The native token of Neutron chain.", + "denom_units": [ { - denom: 'untrn', - exponent: 0 + "denom": "untrn", + "exponent": 0 }, { - denom: 'ntrn', - exponent: 6 + "denom": "ntrn", + "exponent": 6 } ], - base: 'untrn', - name: 'Neutron', - display: 'ntrn', - symbol: 'NTRN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + "base": "untrn", + "name": "Neutron", + "display": "ntrn", + "symbol": "NTRN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg" }, - coingecko_id: 'neutron-3', - images: [ + "coingecko_id": "neutron-3", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg" } ] }, { - description: 'IBC uatom through cosmoshub-4 transfer/channel-1', - denom_units: [ + "description": "IBC uatom through cosmoshub-4 transfer/channel-1", + "denom_units": [ { - denom: - 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', - exponent: 0, - aliases: ['uatom'] + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "exponent": 0, + "aliases": [ + "uatom" + ] }, { - denom: 'atom', - exponent: 6 + "denom": "atom", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', - name: 'IBC atom', - display: 'atom', - symbol: 'ATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "name": "IBC atom", + "display": "atom", + "symbol": "ATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'cosmoshub', - base_denom: 'uatom', - channel_id: 'channel-569' + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-569" }, - chain: { - channel_id: 'channel-1', - path: 'transfer/channel-1/uatom' + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/uatom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'cosmoshub', - base_denom: 'uatom' + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } }, { - description: - 'IBC Axelar uusdc through axelar-dojo-1 transfer/channel-2', - denom_units: [ + "description": "IBC Axelar uusdc through axelar-dojo-1 transfer/channel-2", + "denom_units": [ { - denom: - 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349', - exponent: 0, - aliases: ['uusdc'] + "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349', - name: 'IBC usdc', - display: 'usdc', - symbol: 'USDC', - traces: [ + "type_asset": "ics20", + "base": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "name": "IBC usdc", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'axelar', - base_denom: 'uusdc', - channel_id: 'channel-78' + "type": "ibc", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdc", + "channel_id": "channel-78" }, - chain: { - channel_id: 'channel-2', - path: 'transfer/channel-2/uusdc' + "chain": { + "channel_id": "channel-2", + "path": "transfer/channel-2/uusdc" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'axelar', - base_denom: 'uusdc' + "image_sync": { + "chain_name": "axelar", + "base_denom": "uusdc" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } }, { - description: 'Tia on Neutron', - denom_units: [ + "description": "Tia on Neutron", + "denom_units": [ { - denom: - 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7', - exponent: 0, - aliases: ['utia'] + "denom": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "exponent": 0, + "aliases": [ + "utia" + ] }, { - denom: 'tia', - exponent: 6 + "denom": "tia", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7', - name: 'Celestia TIA', - display: 'tia', - symbol: 'TIA', - traces: [ + "type_asset": "ics20", + "base": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "name": "Celestia TIA", + "display": "tia", + "symbol": "TIA", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'celestia', - base_denom: 'utia', - channel_id: 'channel-8' + "type": "ibc", + "counterparty": { + "chain_name": "celestia", + "base_denom": "utia", + "channel_id": "channel-8" }, - chain: { - channel_id: 'channel-35', - path: 'transfer/channel-35' + "chain": { + "channel_id": "channel-35", + "path": "transfer/channel-35" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'celestia', - base_denom: 'utia' + "image_sync": { + "chain_name": "celestia", + "base_denom": "utia" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" } }, { - description: 'Astropepe meme coin', - denom_units: [ + "description": "Astropepe meme coin", + "denom_units": [ { - denom: - 'factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe', - exponent: 0 + "denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "exponent": 0 }, { - denom: 'ASTROPEPE', - exponent: 6 + "denom": "ASTROPEPE", + "exponent": 6 } ], - base: 'factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe', - name: 'AstroPepe', - display: 'ASTROPEPE', - symbol: 'ASTROPEPE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png' + "base": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "name": "AstroPepe", + "display": "ASTROPEPE", + "symbol": "ASTROPEPE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png" } ] }, { - description: 'wstETH on Neutron', - denom_units: [ + "description": "wstETH on Neutron", + "denom_units": [ { - denom: - 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH', - exponent: 0 + "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "exponent": 0 }, { - denom: 'wstETH', - exponent: 18 + "denom": "wstETH", + "exponent": 18 } ], - base: 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH', - name: 'wstETH', - display: 'wstETH', - symbol: 'wstETH', - traces: [ + "base": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "name": "wstETH", + "display": "wstETH", + "symbol": "wstETH", + "traces": [ { - type: 'additional-mintage', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" }, - provider: 'Lido' + "provider": "Lido" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" } }, { - description: 'NBTC on Neutron', - denom_units: [ + "description": "NBTC on Neutron", + "denom_units": [ { - denom: - 'ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920', - exponent: 0, - aliases: ['usat'] + "denom": "ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920", + "exponent": 0, + "aliases": [ + "usat" + ] }, { - denom: 'sat', - exponent: 6 + "denom": "sat", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920', - name: 'Nomic NBTC', - display: 'sat', - symbol: 'SAT', - traces: [ + "type_asset": "ics20", + "base": "ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920", + "name": "Nomic NBTC", + "display": "sat", + "symbol": "SAT", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'nomic', - base_denom: 'usat', - channel_id: 'channel-2' + "type": "ibc", + "counterparty": { + "chain_name": "nomic", + "base_denom": "usat", + "channel_id": "channel-2" }, - chain: { - channel_id: 'channel-42', - path: 'transfer/channel-42/usat' + "chain": { + "channel_id": "channel-42", + "path": "transfer/channel-42/usat" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'nomic', - base_denom: 'usat' + "image_sync": { + "chain_name": "nomic", + "base_denom": "usat" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" } }, { - description: 'DYDX on Neutron', - denom_units: [ + "description": "DYDX on Neutron", + "denom_units": [ { - denom: - 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130', - exponent: 0, - aliases: ['adydx'] + "denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "exponent": 0, + "aliases": [ + "adydx" + ] }, { - denom: 'dydx', - exponent: 18 + "denom": "dydx", + "exponent": 18 } ], - type_asset: 'ics20', - base: 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130', - name: 'DYDX', - display: 'dydx', - symbol: 'DYDX', - traces: [ + "type_asset": "ics20", + "base": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "name": "DYDX", + "display": "dydx", + "symbol": "DYDX", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'dydx', - base_denom: 'adydx', - channel_id: 'channel-11' + "type": "ibc", + "counterparty": { + "chain_name": "dydx", + "base_denom": "adydx", + "channel_id": "channel-11" }, - chain: { - channel_id: 'channel-48', - path: 'transfer/channel-48/adydx' + "chain": { + "channel_id": "channel-48", + "path": "transfer/channel-48/adydx" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'dydx', - base_denom: 'adydx' + "image_sync": { + "chain_name": "dydx", + "base_denom": "adydx" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } }, { - description: 'The cutest NEWT token on Neutron chain.', - denom_units: [ + "description": "The cutest NEWT token on Neutron chain.", + "denom_units": [ { - denom: - 'factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt', - exponent: 0, - aliases: ['unewt'] + "denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "exponent": 0, + "aliases": [ + "unewt" + ] }, { - denom: 'newt', - exponent: 6 + "denom": "newt", + "exponent": 6 } ], - base: 'factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt', - name: 'Newt', - display: 'newt', - symbol: 'NEWT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + "base": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "name": "Newt", + "display": "newt", + "symbol": "NEWT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png" }, - coingecko_id: 'newt', - images: [ + "coingecko_id": "newt", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png" } ] }, { - description: 'ASTRO on Neutron', - denom_units: [ + "description": "ASTRO on Neutron", + "denom_units": [ { - denom: - 'ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A', - exponent: 0, - aliases: ['uastro'] + "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "exponent": 0, + "aliases": [ + "uastro" + ] }, { - denom: 'astro', - exponent: 6 + "denom": "astro", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A', - name: 'Astroport token', - display: 'astro', - symbol: 'ASTRO', - traces: [ + "type_asset": "ics20", + "base": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "name": "Astroport token", + "display": "astro", + "symbol": "ASTRO", + "traces": [ { - type: 'ibc-cw20', - counterparty: { - chain_name: 'terra2', - base_denom: - 'cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26', - channel_id: 'channel-167', - port: 'wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce' + "type": "ibc-cw20", + "counterparty": { + "chain_name": "terra2", + "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "channel_id": "channel-167", + "port": "wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce" }, - chain: { - channel_id: 'channel-5', - path: 'transfer/channel-5/cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26', - port: 'transfer' + "chain": { + "channel_id": "channel-5", + "path": "transfer/channel-5/cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "port": "transfer" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'terra2', - base_denom: - 'cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26' + "image_sync": { + "chain_name": "terra2", + "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg" } }, { - description: 'Baby Corgi is the real doggo of Neutron!', - denom_units: [ + "description": "Baby Corgi is the real doggo of Neutron!", + "denom_units": [ { - denom: - 'factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi', - exponent: 0, - aliases: ['ucorgi'] + "denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "exponent": 0, + "aliases": [ + "ucorgi" + ] }, { - denom: 'corgi', - exponent: 6 + "denom": "corgi", + "exponent": 6 } ], - base: 'factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi', - name: 'Baby Corgi', - display: 'corgi', - symbol: 'CORGI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png' + "base": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "name": "Baby Corgi", + "display": "corgi", + "symbol": "CORGI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png" } ] }, { - description: 'clownmaxxed store of value', - denom_units: [ + "description": "clownmaxxed store of value", + "denom_units": [ { - denom: - 'factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus', - exponent: 0, - aliases: ['ucircus'] + "denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "exponent": 0, + "aliases": [ + "ucircus" + ] }, { - denom: 'circus', - exponent: 6 + "denom": "circus", + "exponent": 6 } ], - base: 'factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus', - name: 'AtomEconomicZone69JaeKwonInu', - display: 'circus', - symbol: 'CIRCUS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + "base": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "name": "AtomEconomicZone69JaeKwonInu", + "display": "circus", + "symbol": "CIRCUS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png" } ] }, { - description: 'Jimmy Neutron Finance', - denom_units: [ + "description": "Jimmy Neutron Finance", + "denom_units": [ { - denom: - 'factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY', - exponent: 0, - aliases: ['ujimmy'] + "denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", + "exponent": 0, + "aliases": [ + "ujimmy" + ] }, { - denom: 'jimmy', - exponent: 6 + "denom": "jimmy", + "exponent": 6 } ], - base: 'factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY', - name: 'jimmy', - display: 'jimmy', - symbol: 'JIMMY', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png' + "base": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", + "name": "jimmy", + "display": "jimmy", + "symbol": "JIMMY", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png" } ] }, { - description: 'Baddest coin on Cosmos', - denom_units: [ + "description": "Baddest coin on Cosmos", + "denom_units": [ { - denom: 'factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad', - exponent: 0, - aliases: ['ubad'] + "denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "exponent": 0, + "aliases": [ + "ubad" + ] }, { - denom: 'bad', - exponent: 6 + "denom": "bad", + "exponent": 6 } ], - base: 'factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad', - name: 'Badcoin', - display: 'bad', - symbol: 'BAD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + "base": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "name": "Badcoin", + "display": "bad", + "symbol": "BAD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png" } ] }, { - description: 'BITCOSMOS', - denom_units: [ + "description": "BITCOSMOS", + "denom_units": [ { - denom: - 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj', - exponent: 0, - aliases: ['ubitcosmos'] + "denom": "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", + "exponent": 0, + "aliases": [ + "ubitcosmos" + ] }, { - denom: 'bitcosmos', - exponent: 6 + "denom": "bitcosmos", + "exponent": 6 } ], - base: 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj', - name: 'Bitcosmos', - display: 'bitcosmos', - symbol: 'BTC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png' + "base": "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", + "name": "Bitcosmos", + "display": "bitcosmos", + "symbol": "BTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png" } ] }, { - description: 'What the Fuck', - denom_units: [ + "description": "What the Fuck", + "denom_units": [ { - denom: - 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf', - exponent: 0, - aliases: ['uwtf'] + "denom": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", + "exponent": 0, + "aliases": [ + "uwtf" + ] }, { - denom: 'wtf', - exponent: 6 + "denom": "wtf", + "exponent": 6 } ], - base: 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf', - name: 'wtf', - display: 'wtf', - symbol: 'WTF', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png' + "base": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", + "name": "wtf", + "display": "wtf", + "symbol": "WTF", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png" } ] }, { - description: 'NLS on Neutron', - denom_units: [ + "description": "NLS on Neutron", + "denom_units": [ { - denom: - 'ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972', - exponent: 0, - aliases: ['unls'] + "denom": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", + "exponent": 0, + "aliases": [ + "unls" + ] }, { - denom: 'nls', - exponent: 6 + "denom": "nls", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972', - name: 'Nolus NLS', - display: 'nls', - symbol: 'NLS', - traces: [ + "type_asset": "ics20", + "base": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", + "name": "Nolus NLS", + "display": "nls", + "symbol": "NLS", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'nolus', - base_denom: 'unls', - channel_id: 'channel-3839' + "type": "ibc", + "counterparty": { + "chain_name": "nolus", + "base_denom": "unls", + "channel_id": "channel-3839" }, - chain: { - channel_id: 'channel-44', - path: 'transfer/channel-44/unls' + "chain": { + "channel_id": "channel-44", + "path": "transfer/channel-44/unls" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'nolus', - base_denom: 'unls' + "image_sync": { + "chain_name": "nolus", + "base_denom": "unls" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" } }, { - description: 'A Mechanical Canine', - denom_units: [ + "description": "A Mechanical Canine", + "denom_units": [ { - denom: - 'factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard', - exponent: 0, - aliases: ['ugoddard'] + "denom": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "exponent": 0, + "aliases": [ + "ugoddard" + ] }, { - denom: 'goddard', - exponent: 6 + "denom": "goddard", + "exponent": 6 } ], - base: 'factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard', - name: 'Goddard', - display: 'goddard', - symbol: 'GODRD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png' + "base": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "name": "Goddard", + "display": "goddard", + "symbol": "GODRD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png" } ] }, { - description: 'The deflationary utility token of the Apollo DAO project', - denom_units: [ + "description": "The deflationary utility token of the Apollo DAO project", + "denom_units": [ { - denom: - 'factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO', - exponent: 0, - aliases: ['uapollo'] + "denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "exponent": 0, + "aliases": [ + "uapollo" + ] }, { - denom: 'apollo', - exponent: 6 + "denom": "apollo", + "exponent": 6 } ], - base: 'factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO', - name: 'Apollo DAO', - display: 'apollo', - symbol: 'APOLLO', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + "base": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "name": "Apollo DAO", + "display": "apollo", + "symbol": "APOLLO", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg" } ] }, { - description: 'NEWTROLL', - denom_units: [ + "description": "NEWTROLL", + "denom_units": [ { - denom: - 'factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll', - exponent: 0, - aliases: ['unewtroll'] + "denom": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", + "exponent": 0, + "aliases": [ + "unewtroll" + ] }, { - denom: 'newtroll', - exponent: 6 + "denom": "newtroll", + "exponent": 6 } ], - base: 'factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll', - name: 'Newtroll', - display: 'newtroll', - symbol: 'NTRL', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg' + "base": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", + "name": "Newtroll", + "display": "newtroll", + "symbol": "NTRL", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg" } ] }, { - description: 'Retro Game', - denom_units: [ + "description": "Retro Game", + "denom_units": [ { - denom: - 'factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro', - exponent: 0, - aliases: ['uretro'] + "denom": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "exponent": 0, + "aliases": [ + "uretro" + ] }, { - denom: 'retro', - exponent: 6 + "denom": "retro", + "exponent": 6 } ], - base: 'factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro', - name: 'Retro', - display: 'retro', - symbol: 'RETRO', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg' + "base": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "name": "Retro", + "display": "retro", + "symbol": "RETRO", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'nibiru', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "nibiru", + "assets": [ { - description: 'The native token of Nibiru network', - denom_units: [ + "description": "The native token of Nibiru network", + "denom_units": [ { - denom: 'unibi', - exponent: 0 + "denom": "unibi", + "exponent": 0 }, { - denom: 'nibi', - exponent: 6 + "denom": "nibi", + "exponent": 6 } ], - base: 'unibi', - name: 'Nibiru', - display: 'nibi', - symbol: 'NIBI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + "base": "unibi", + "name": "Nibiru", + "display": "nibi", + "symbol": "NIBI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" }, - coingecko_id: 'nibi', - images: [ + "coingecko_id": "nibi", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'noble', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "noble", + "assets": [ { - description: 'The permissioned staking asset for Noble Chain', - denom_units: [ + "description": "The permissioned staking asset for Noble Chain", + "denom_units": [ { - denom: 'ustake', - exponent: 0, - aliases: ['microstake'] + "denom": "ustake", + "exponent": 0, + "aliases": [ + "microstake" + ] }, { - denom: 'stake', - exponent: 6 + "denom": "stake", + "exponent": 6 } ], - base: 'ustake', - name: 'Stake', - display: 'stake', - symbol: 'STAKE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + "base": "ustake", + "name": "Stake", + "display": "stake", + "symbol": "STAKE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg" } ] }, { - description: - 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', - denom_units: [ + "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", + "denom_units": [ { - denom: 'ufrienzies', - exponent: 0, - aliases: ['microfrienzies'] + "denom": "ufrienzies", + "exponent": 0, + "aliases": [ + "microfrienzies" + ] }, { - denom: 'frienzies', - exponent: 6 + "denom": "frienzies", + "exponent": 6 } ], - base: 'ufrienzies', - display: 'frienzies', - name: 'Frienzies', - symbol: 'FRNZ', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + "base": "ufrienzies", + "display": "frienzies", + "name": "Frienzies", + "symbol": "FRNZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg" } ] }, { - description: 'ATOM token on Noble', - denom_units: [ + "description": "ATOM token on Noble", + "denom_units": [ { - denom: - 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0', - exponent: 0 + "denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", + "exponent": 0 }, { - denom: 'atom', - exponent: 6, - aliases: ['ATOM'] + "denom": "atom", + "exponent": 6, + "aliases": [ + "ATOM" + ] } ], - type_asset: 'ics20', - base: 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0', - name: 'Atom Staking Coin', - display: 'atom', - symbol: 'ATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", + "name": "Atom Staking Coin", + "display": "atom", + "symbol": "ATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'cosmoshub', - base_denom: 'uatom', - channel_id: 'channel-536' + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-536" }, - chain: { - channel_id: 'channel-4', - path: 'transfer/channel-4/uatom' + "chain": { + "channel_id": "channel-4", + "path": "transfer/channel-4/uatom" } } ], - 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' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ] }, { - description: 'USD Coin', - denom_units: [ + "description": "USD Coin", + "denom_units": [ { - denom: 'uusdc', - exponent: 0, - aliases: ['microusdc'] + "denom": "uusdc", + "exponent": 0, + "aliases": [ + "microusdc" + ] }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - base: 'uusdc', - display: 'usdc', - name: 'USD Coin', - symbol: 'USDC', - coingecko_id: 'usd-coin', - traces: [ + "base": "uusdc", + "display": "usdc", + "name": "USD Coin", + "symbol": "USDC", + "coingecko_id": "usd-coin", + "traces": [ { - type: 'additional-mintage', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" }, - provider: 'Circle' + "provider": "Circle" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'nois', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "nois", + "assets": [ { - description: 'The native token of Nois', - denom_units: [ + "description": "The native token of Nois", + "denom_units": [ { - denom: 'unois', - exponent: 0 + "denom": "unois", + "exponent": 0 }, { - denom: 'nois', - exponent: 6 + "denom": "nois", + "exponent": 6 } ], - base: 'unois', - name: 'Nois', - display: 'nois', - symbol: 'NOIS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + "base": "unois", + "name": "Nois", + "display": "nois", + "symbol": "NOIS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" }, - keywords: ['nois', 'randomness', 'drand', 'wasm'], - images: [ + "keywords": [ + "nois", + "randomness", + "drand", + "wasm" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'nolus', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "nolus", + "assets": [ { - description: 'The native token of Nolus chain', - denom_units: [ + "description": "The native token of Nolus chain", + "denom_units": [ { - denom: 'unls', - exponent: 0 + "denom": "unls", + "exponent": 0 }, { - denom: 'nls', - exponent: 6 + "denom": "nls", + "exponent": 6 } ], - base: 'unls', - name: 'Nolus', - display: 'nls', - symbol: 'NLS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + "base": "unls", + "name": "Nolus", + "display": "nls", + "symbol": "NLS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" }, - coingecko_id: 'nolus', - images: [ + "coingecko_id": "nolus", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" } ] }, { - description: - 'axlUSDC transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "axlUSDC transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911', - exponent: 0, - aliases: ['uusdc'] + "denom": "ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'usdc', - exponent: 6, - aliases: [] + "denom": "usdc", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911', - name: 'axlUSDC', - display: 'usdc', - symbol: 'axlUSDC', - traces: [ + "type_asset": "ics20", + "base": "ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911", + "name": "axlUSDC", + "display": "usdc", + "symbol": "axlUSDC", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-208/uusdc' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-208/uusdc" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } }, { - description: - 'OSMO transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "OSMO transferred from the Osmosis mainnet that is supported on the Nolus chain", + "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": [] } ], - type_asset: 'ics20', - base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', - name: 'Osmosis', - display: 'osmo', - symbol: 'OSMO', - traces: [ + "type_asset": "ics20", + "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: 'uosmo', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/uosmo' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uosmo" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: 'uosmo' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } }, { - description: - 'stOSMO transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "stOSMO transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1', - exponent: 0, - aliases: ['stuosmo'] + "denom": "ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1", + "exponent": 0, + "aliases": [ + "stuosmo" + ] }, { - denom: 'stosmo', - exponent: 6, - aliases: [] + "denom": "stosmo", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1', - name: 'Osmosis', - display: 'stosmo', - symbol: 'stOSMO', - traces: [ + "type_asset": "ics20", + "base": "ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1", + "name": "Osmosis", + "display": "stosmo", + "symbol": "stOSMO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-326/stuosmo' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-326/stuosmo" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" } }, { - description: - 'ATOM transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "ATOM transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388', - exponent: 0, - aliases: ['uatom'] + "denom": "ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388", + "exponent": 0, + "aliases": [ + "uatom" + ] }, { - denom: 'atom', - exponent: 6, - aliases: [] + "denom": "atom", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388', - name: 'Atom', - display: 'atom', - symbol: 'ATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388", + "name": "Atom", + "display": "atom", + "symbol": "ATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-0/uatom' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-0/uatom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } }, { - description: - 'stATOM transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "stATOM transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8', - exponent: 0, - aliases: ['ustatom'] + "denom": "ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8", + "exponent": 0, + "aliases": [ + "ustatom" + ] }, { - denom: 'statom', - exponent: 6, - aliases: [] + "denom": "statom", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8', - name: 'stATOM', - display: 'statom', - symbol: 'stATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8", + "name": "stATOM", + "display": "statom", + "symbol": "stATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-326/stuatom' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-326/stuatom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" } }, { - description: - 'WETH transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "WETH transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C', - exponent: 0, - aliases: ['weth-wei'] + "denom": "ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C", + "exponent": 0, + "aliases": [ + "weth-wei" + ] }, { - denom: 'weth', - exponent: 18, - aliases: [] + "denom": "weth", + "exponent": 18, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C', - name: 'WETH', - display: 'weth', - symbol: 'WETH', - traces: [ + "type_asset": "ics20", + "base": "ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C", + "name": "WETH", + "display": "weth", + "symbol": "WETH", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-208/weth-wei' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-208/weth-wei" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" } }, { - description: - 'WBTC transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "WBTC transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221', - exponent: 0, - aliases: ['wbtc-satoshi'] + "denom": "ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221", + "exponent": 0, + "aliases": [ + "wbtc-satoshi" + ] }, { - denom: 'wbtc', - exponent: 8, - aliases: [] + "denom": "wbtc", + "exponent": 8, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221', - name: 'WBTC', - display: 'wbtc', - symbol: 'WBTC', - traces: [ + "type_asset": "ics20", + "base": "ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221", + "name": "WBTC", + "display": "wbtc", + "symbol": "WBTC", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-208/wbtc-satoshi' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-208/wbtc-satoshi" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" } }, { - description: - 'AKT transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "AKT transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459', - exponent: 0, - aliases: ['uakt'] + "denom": "ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459", + "exponent": 0, + "aliases": [ + "uakt" + ] }, { - denom: 'akt', - exponent: 6, - aliases: [] + "denom": "akt", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459', - name: 'AKT', - display: 'akt', - symbol: 'AKT', - traces: [ + "type_asset": "ics20", + "base": "ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459", + "name": "AKT", + "display": "akt", + "symbol": "AKT", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-1/uakt' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-1/uakt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4" } } ] }, { - description: - 'AXL transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "AXL transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717', - exponent: 0, - aliases: ['uaxl'] + "denom": "ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717", + "exponent": 0, + "aliases": [ + "uaxl" + ] }, { - denom: 'axl', - exponent: 6, - aliases: [] + "denom": "axl", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717', - name: 'AXL', - display: 'axl', - symbol: 'AXL', - traces: [ + "type_asset": "ics20", + "base": "ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717", + "name": "AXL", + "display": "axl", + "symbol": "AXL", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-208/uaxl' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-208/uaxl" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E" } } ] }, { - description: - 'JUNO transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "JUNO transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C', - exponent: 0, - aliases: ['ujuno'] + "denom": "ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C", + "exponent": 0, + "aliases": [ + "ujuno" + ] }, { - denom: 'juno', - exponent: 6, - aliases: [] + "denom": "juno", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C', - name: 'JUNO', - display: 'juno', - symbol: 'JUNO', - traces: [ + "type_asset": "ics20", + "base": "ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C", + "name": "JUNO", + "display": "juno", + "symbol": "JUNO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-42/ujuno' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-42/ujuno" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED" } } ] }, { - description: - 'EVMOS transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "EVMOS transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE', - exponent: 0, - aliases: ['aevmos'] + "denom": "ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE", + "exponent": 0, + "aliases": [ + "aevmos" + ] }, { - denom: 'evmos', - exponent: 18, - aliases: [] + "denom": "evmos", + "exponent": 18, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE', - name: 'EVMOS', - display: 'evmos', - symbol: 'EVMOS', - traces: [ + "type_asset": "ics20", + "base": "ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE", + "name": "EVMOS", + "display": "evmos", + "symbol": "EVMOS", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-204/aevmos' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-204/aevmos" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A" } } ] }, { - description: - 'stkATOM transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "stkATOM transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865', - exponent: 0, - aliases: ['stk/uatom'] + "denom": "ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865", + "exponent": 0, + "aliases": [ + "stk/uatom" + ] }, { - denom: 'stk/atom', - exponent: 6, - aliases: [] + "denom": "stk/atom", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865', - name: 'stkATOM', - display: 'stk/atom', - symbol: 'stkATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865", + "name": "stkATOM", + "display": "stk/atom", + "symbol": "stkATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-4/stk/uatom' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-4/stk/uatom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC" } } ] }, { - description: - 'SCRT transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "SCRT transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107', - exponent: 0, - aliases: ['uscrt'] + "denom": "ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107", + "exponent": 0, + "aliases": [ + "uscrt" + ] }, { - denom: 'scrt', - exponent: 6, - aliases: [] + "denom": "scrt", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107', - name: 'SCRT', - display: 'scrt', - symbol: 'SCRT', - traces: [ + "type_asset": "ics20", + "base": "ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107", + "name": "SCRT", + "display": "scrt", + "symbol": "SCRT", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-88/uscrt' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-88/uscrt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A" } } ] }, { - description: - 'CRO transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "CRO transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48', - exponent: 0, - aliases: ['basecro'] + "denom": "ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48", + "exponent": 0, + "aliases": [ + "basecro" + ] }, { - denom: 'cro', - exponent: 8, - aliases: [] + "denom": "cro", + "exponent": 8, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48', - name: 'CRO', - display: 'cro', - symbol: 'CRO', - traces: [ + "type_asset": "ics20", + "base": "ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48", + "name": "CRO", + "display": "cro", + "symbol": "CRO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-5/basecro' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-5/basecro" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" } }, { - description: - 'STARS transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "STARS transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5', - exponent: 0, - aliases: ['ustars'] + "denom": "ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5", + "exponent": 0, + "aliases": [ + "ustars" + ] }, { - denom: 'stars', - exponent: 6, - aliases: [] + "denom": "stars", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5', - name: 'STARS', - display: 'stars', - symbol: 'STARS', - traces: [ + "type_asset": "ics20", + "base": "ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5", + "name": "STARS", + "display": "stars", + "symbol": "STARS", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-75/ustars' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-75/ustars" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" } }, { - description: - 'TIA transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "TIA transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5', - exponent: 0, - aliases: ['utia'] + "denom": "ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5", + "exponent": 0, + "aliases": [ + "utia" + ] }, { - denom: 'tia', - exponent: 6, - aliases: [] + "denom": "tia", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5', - name: 'TIA', - display: 'tia', - symbol: 'TIA', - traces: [ + "type_asset": "ics20", + "base": "ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5", + "name": "TIA", + "display": "tia", + "symbol": "TIA", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-6994/utia' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-6994/utia" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" } }, { - description: - 'STRD transferred from the Osmosis mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "STRD transferred from the Osmosis mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B', - exponent: 0, - aliases: ['ustrd'] + "denom": "ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B", + "exponent": 0, + "aliases": [ + "ustrd" + ] }, { - denom: 'strd', - exponent: 6, - aliases: [] + "denom": "strd", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B', - name: 'STRD', - display: 'strd', - symbol: 'STRD', - traces: [ + "type_asset": "ics20", + "base": "ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B", + "name": "STRD", + "display": "strd", + "symbol": "STRD", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', - channel_id: 'channel-783' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "channel_id": "channel-783" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-326/ustrd' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-326/ustrd" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } }, { - description: - 'NTRN transferred from the Neutron mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "NTRN transferred from the Neutron mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09', - exponent: 0, - aliases: ['untrn'] + "denom": "ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09", + "exponent": 0, + "aliases": [ + "untrn" + ] }, { - denom: 'ntrn', - exponent: 6, - aliases: [] + "denom": "ntrn", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09', - name: 'NTRN', - display: 'ntrn', - symbol: 'NTRN', - traces: [ + "type_asset": "ics20", + "base": "ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09", + "name": "NTRN", + "display": "ntrn", + "symbol": "NTRN", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'neutron', - base_denom: 'untrn', - channel_id: 'channel-44' + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "untrn", + "channel_id": "channel-44" }, - chain: { - channel_id: 'channel-3839', - path: 'transfer/channel-3839/untrn' + "chain": { + "channel_id": "channel-3839", + "path": "transfer/channel-3839/untrn" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'neutron', - base_denom: 'untrn' + "image_sync": { + "chain_name": "neutron", + "base_denom": "untrn" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.svg" } }, { - description: - 'DYDX transferred from the Neutron mainnet that is supported on the Nolus chain', - denom_units: [ + "description": "DYDX transferred from the Neutron mainnet that is supported on the Nolus chain", + "denom_units": [ { - denom: - 'ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4', - exponent: 0, - aliases: ['adydx'] + "denom": "ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4", + "exponent": 0, + "aliases": [ + "adydx" + ] }, { - denom: 'dydx', - exponent: 18, - aliases: [] + "denom": "dydx", + "exponent": 18, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4', - name: 'DYDX', - display: 'dydx', - symbol: 'DYDX', - traces: [ + "type_asset": "ics20", + "base": "ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4", + "name": "DYDX", + "display": "dydx", + "symbol": "DYDX", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'neutron', - base_denom: - 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130', - channel_id: 'channel-44' + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "channel_id": "channel-44" }, - chain: { - channel_id: 'channel-3839', - path: 'transfer/channel-3839/transfer/channel-48/adydx' + "chain": { + "channel_id": "channel-3839", + "path": "transfer/channel-3839/transfer/channel-48/adydx" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'neutron', - base_denom: - 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130' + "image_sync": { + "chain_name": "neutron", + "base_denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'nomic', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "nomic", + "assets": [ { - description: "Nomic's native token.", - denom_units: [ + "description": "Nomic's native token.", + "denom_units": [ { - denom: 'unom', - exponent: 0 + "denom": "unom", + "exponent": 0 }, { - denom: 'nom', - exponent: 6 + "denom": "nom", + "exponent": 6 } ], - base: 'unom', - name: 'Nomic', - display: 'nom', - symbol: 'NOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + "base": "unom", + "name": "Nomic", + "display": "nom", + "symbol": "NOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" } ] }, { - description: 'Bitcoin. On Cosmos.', - denom_units: [ + "description": "Bitcoin. On Cosmos.", + "denom_units": [ { - denom: 'usat', - exponent: 0 + "denom": "usat", + "exponent": 0 }, { - denom: 'nbtc', - exponent: 14 + "denom": "nbtc", + "exponent": 14 } ], - base: 'usat', - name: 'Nomic Bitcoin', - display: 'nbtc', - symbol: 'nBTC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + "base": "usat", + "name": "Nomic Bitcoin", + "display": "nbtc", + "symbol": "nBTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" }, - traces: [ + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'bitcoin', - base_denom: 'sat' + "type": "bridge", + "counterparty": { + "chain_name": "bitcoin", + "base_denom": "sat" }, - provider: 'Nomic' + "provider": "Nomic" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'nyx', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "nyx", + "assets": [ { - description: "NYX Token (NYX) is the Nym Network's native token.", - denom_units: [ + "description": "NYX Token (NYX) is the Nym Network's native token.", + "denom_units": [ { - denom: 'unyx', - exponent: 0 + "denom": "unyx", + "exponent": 0 }, { - denom: 'nyx', - exponent: 6 + "denom": "nyx", + "exponent": 6 } ], - base: 'unyx', - name: 'NYX', - display: 'nyx', - symbol: 'NYX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + "base": "unyx", + "name": "NYX", + "display": "nyx", + "symbol": "NYX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png" } ] }, { - description: - "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", - denom_units: [ + "description": "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", + "denom_units": [ { - denom: 'unym', - exponent: 0 + "denom": "unym", + "exponent": 0 }, { - denom: 'nym', - exponent: 6 + "denom": "nym", + "exponent": 6 } ], - base: 'unym', - name: 'NYM', - display: 'nym', - symbol: 'NYM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + "base": "unym", + "name": "NYM", + "display": "nym", + "symbol": "NYM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png" }, - coingecko_id: 'nym', - images: [ + "coingecko_id": "nym", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.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" }, - images: [ + "images": [ { - 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' + "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 governance token for ODIN Protocol', - denom_units: [ + "description": "Staking and governance 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + "base": "loki", + "name": "ODIN", + "display": "odin", + "symbol": "ODIN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg" }, - coingecko_id: 'odin-protocol', - images: [ + "coingecko_id": "odin-protocol", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + "base": "mGeo", + "name": "GEO", + "display": "geo", + "symbol": "GEO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg" } ] }, { - description: 'O9W token for ODIN Protocol', - denom_units: [ + "description": "O9W token for ODIN Protocol", + "denom_units": [ { - denom: 'mO9W', - exponent: 0 + "denom": "mO9W", + "exponent": 0 }, { - denom: 'O9W', - exponent: 6 + "denom": "O9W", + "exponent": 6 } ], - base: 'mO9W', - name: 'O9W', - display: 'O9W', - symbol: 'O9W', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + "base": "mO9W", + "name": "O9W", + "display": "O9W", + "symbol": "O9W", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'okexchain', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "okexchain", + "assets": [ { - description: 'The native token of OKExChain', - denom_units: [ + "description": "The native token of OKExChain", + "denom_units": [ { - denom: 'wei', - exponent: 0 + "denom": "wei", + "exponent": 0 }, { - denom: 'okt', - exponent: 18 + "denom": "okt", + "exponent": 18 } ], - base: 'wei', - name: 'OKExChain', - display: 'okt', - symbol: 'OKT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png' + "base": "wei", + "name": "OKExChain", + "display": "okt", + "symbol": "OKT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" }, - coingecko_id: 'oec-token', - images: [ + "coingecko_id": "oec-token", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + "base": "uflix", + "name": "Flix", + "display": "flix", + "symbol": "FLIX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg" }, - coingecko_id: 'omniflix-network', - images: [ + "coingecko_id": "omniflix-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'onomy', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "onomy", + "assets": [ { - description: 'The native token of Onomy Protocol', - denom_units: [ + "description": "The native token of Onomy Protocol", + "denom_units": [ { - denom: 'anom', - exponent: 0 + "denom": "anom", + "exponent": 0 }, { - denom: 'nom', - exponent: 18 + "denom": "nom", + "exponent": 18 } ], - base: 'anom', - name: 'Nom', - display: 'nom', - symbol: 'NOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + "base": "anom", + "name": "Nom", + "display": "nom", + "symbol": "NOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg" }, - keywords: ['dex', 'stablecoin', 'bridge', 'staking'], - coingecko_id: 'onomy-protocol', - images: [ + "keywords": [ + "dex", + "stablecoin", + "bridge", + "staking" + ], + "coingecko_id": "onomy-protocol", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg" } ] } ] }, { - $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: 'orai', - exponent: 0 + "denom": "orai", + "exponent": 0 }, { - denom: 'ORAI', - exponent: 6 + "denom": "ORAI", + "exponent": 6 } ], - base: 'orai', - name: 'Oraichain', - display: 'ORAI', - symbol: 'ORAI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + "base": "orai", + "name": "Oraichain", + "display": "ORAI", + "symbol": "ORAI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg" }, - coingecko_id: 'oraichain-token', - images: [ + "coingecko_id": "oraichain-token", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg" } ] } ] }, { - $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 + "denom": "uosmo", + "exponent": 0 }, { - denom: 'osmo', - exponent: 6 + "denom": "osmo", + "exponent": 6 } ], - base: 'uosmo', - name: 'Osmosis', - display: 'osmo', - symbol: 'OSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "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'], - images: [ + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'uion', - exponent: 0 + "denom": "uion", + "exponent": 0 }, { - denom: 'ion', - exponent: 6 + "denom": "ion", + "exponent": 6 } ], - base: 'uion', - name: 'Ion DAO', - display: 'ion', - symbol: 'ION', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + "base": "uion", + "name": "Ion DAO", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" }, - coingecko_id: 'ion', - keywords: ['memecoin'], - images: [ + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + "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" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx', - exponent: 0 + "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "exponent": 0 }, { - denom: 'ibcx', - exponent: 6 + "denom": "ibcx", + "exponent": 6 } ], - address: - 'osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm', - base: 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx', - name: 'IBC Index', - display: 'ibcx', - symbol: 'IBCX', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "name": "IBC Index", + "display": "ibcx", + "symbol": "IBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" }, - coingecko_id: 'ibc-index', - images: [ + "coingecko_id": "ibc-index", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx', - exponent: 0 + "denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "exponent": 0 }, { - denom: 'stibcx', - exponent: 6 + "denom": "stibcx", + "exponent": 6 } ], - address: - 'osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k', - base: 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx', - name: 'Staked IBCX', - display: 'stibcx', - symbol: 'stIBCX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "name": "Staked IBCX", + "display": "stibcx", + "symbol": "stIBCX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', - exponent: 0, - aliases: ['uusdc'] + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', - name: 'Axelar USD Coin', - display: 'usdc', - symbol: 'USDC.axl', - traces: [ + "type_asset": "ics20", + "base": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "name": "Axelar USD Coin", + "display": "usdc", + "symbol": "USDC.axl", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'axelar', - base_denom: 'uusdc', - channel_id: 'channel-3' + "type": "ibc", + "counterparty": { + "chain_name": "axelar", + "base_denom": "uusdc", + "channel_id": "channel-3" }, - chain: { - channel_id: 'channel-208', - path: 'transfer/channel-208/uusdc' + "chain": { + "channel_id": "channel-208", + "path": "transfer/channel-208/uusdc" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'axelar', - base_denom: 'uusdc' + "image_sync": { + "chain_name": "axelar", + "base_denom": "uusdc" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43', - exponent: 0, - aliases: ['avalanche-uusdc'] + "denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "exponent": 0, + "aliases": [ + "avalanche-uusdc" + ] }, { - denom: 'avalanche-usdc', - exponent: 6 + "denom": "avalanche-usdc", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43', - name: 'Wormhole USDC(Avalanche)', - display: 'avalanche-usdc', - symbol: 'avalanche.USDC.wh', - traces: [ + "type_asset": "ics20", + "base": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "name": "Wormhole USDC(Avalanche)", + "display": "avalanche-usdc", + "symbol": "avalanche.USDC.wh", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'gateway', - base_denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4', - channel_id: 'channel-3' + "type": "ibc", + "counterparty": { + "chain_name": "gateway", + "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "channel_id": "channel-3" }, - chain: { - channel_id: 'channel-2186', - path: 'transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4' + "chain": { + "channel_id": "channel-2186", + "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4" } } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', - exponent: 0, - aliases: ['uusdc'] + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', - name: 'Noble USD Coin', - display: 'usdc', - symbol: 'USDC', - traces: [ + "type_asset": "ics20", + "base": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "name": "Noble USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'noble', - base_denom: 'uusdc', - channel_id: 'channel-1' + "type": "ibc", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc", + "channel_id": "channel-1" }, - chain: { - channel_id: 'channel-750', - path: 'transfer/channel-750/uusdc' + "chain": { + "channel_id": "channel-750", + "path": "transfer/channel-750/uusdc" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'noble', - base_denom: 'uusdc' + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', - exponent: 0, - aliases: ['stuosmo'] + "denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "exponent": 0, + "aliases": [ + "stuosmo" + ] }, { - denom: 'stosmo', - exponent: 6 + "denom": "stosmo", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', - name: 'stOSMO', - display: 'stosmo', - symbol: 'stOSMO', - traces: [ + "type_asset": "ics20", + "base": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "name": "stOSMO", + "display": "stosmo", + "symbol": "stOSMO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'stride', - base_denom: 'stuosmo', - channel_id: 'channel-5' + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stuosmo", + "channel_id": "channel-5" }, - chain: { - channel_id: 'channel-326', - path: 'transfer/channel-326/stuosmo' + "chain": { + "channel_id": "channel-326", + "path": "transfer/channel-326/stuosmo" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'stride', - base_denom: 'stuosmo' + "image_sync": { + "chain_name": "stride", + "base_denom": "stuosmo" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', - exponent: 0, - aliases: ['uatom'] + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "exponent": 0, + "aliases": [ + "uatom" + ] }, { - denom: 'atom', - exponent: 6 + "denom": "atom", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', - name: 'Cosmos Hub Atom', - display: 'atom', - symbol: 'ATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'cosmoshub', - base_denom: 'uatom', - channel_id: 'channel-141' + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-141" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/uatom' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uatom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'cosmoshub', - base_denom: 'uatom' + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', - exponent: 0, - aliases: ['stuatom'] + "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "exponent": 0, + "aliases": [ + "stuatom" + ] }, { - denom: 'statom', - exponent: 6 + "denom": "statom", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', - name: 'stATOM', - display: 'statom', - symbol: 'stATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "name": "stATOM", + "display": "statom", + "symbol": "stATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'stride', - base_denom: 'stuatom', - channel_id: 'channel-5' + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "stuatom", + "channel_id": "channel-5" }, - chain: { - channel_id: 'channel-326', - path: 'transfer/channel-326/stuatom' + "chain": { + "channel_id": "channel-326", + "path": "transfer/channel-326/stuatom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'stride', - base_denom: 'stuatom' + "image_sync": { + "chain_name": "stride", + "base_denom": "stuatom" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" } }, { - denom_units: [ + "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 } ], - type_asset: 'ics20', - base: 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', - name: 'Wrapped Ether', - display: 'weth', - symbol: 'ETH', - traces: [ + "type_asset": "ics20", + "base": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "ETH", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'axelar', - base_denom: 'weth-wei', - channel_id: 'channel-3' + "type": "ibc", + "counterparty": { + "chain_name": "axelar", + "base_denom": "weth-wei", + "channel_id": "channel-3" }, - chain: { - channel_id: 'channel-208', - path: 'transfer/channel-208/weth-wei' + "chain": { + "channel_id": "channel-208", + "path": "transfer/channel-208/weth-wei" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'axelar', - base_denom: 'weth-wei' + "image_sync": { + "chain_name": "axelar", + "base_denom": "weth-wei" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" } }, { - denom_units: [ + "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 } ], - type_asset: 'ics20', - base: 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', - name: 'Wrapped Bitcoin (Axelar)', - display: 'wbtc', - symbol: 'WBTC.axl', - traces: [ + "type_asset": "ics20", + "base": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "name": "Wrapped Bitcoin (Axelar)", + "display": "wbtc", + "symbol": "WBTC.axl", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'axelar', - base_denom: 'wbtc-satoshi', - channel_id: 'channel-3' + "type": "ibc", + "counterparty": { + "chain_name": "axelar", + "base_denom": "wbtc-satoshi", + "channel_id": "channel-3" }, - chain: { - channel_id: 'channel-208', - path: 'transfer/channel-208/wbtc-satoshi' + "chain": { + "channel_id": "channel-208", + "path": "transfer/channel-208/wbtc-satoshi" } } ], - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg', - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png" }, { - image_sync: { - chain_name: 'axelar', - base_denom: 'wbtc-satoshi' + "image_sync": { + "chain_name": "axelar", + "base_denom": "wbtc-satoshi" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg', - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png" } }, { - description: 'ERIS liquid staked OSMO', - denom_units: [ + "description": "ERIS liquid staked OSMO", + "denom_units": [ { - denom: - 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO', - exponent: 0 + "denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "exponent": 0 }, { - denom: 'ampOSMO', - exponent: 6 + "denom": "ampOSMO", + "exponent": 6 } ], - address: - 'osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9', - base: 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO', - name: 'ERIS Amplified OSMO', - display: 'ampOSMO', - symbol: 'ampOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + "address": "osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9", + "base": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "name": "ERIS Amplified OSMO", + "display": "ampOSMO", + "symbol": "ampOSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png" } ] }, { - description: 'Tether USDT on Osmosis', - denom_units: [ + "description": "Tether USDT on Osmosis", + "denom_units": [ { - denom: - 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', - exponent: 0 + "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', - name: 'Tether USDT', - display: 'usdt', - symbol: 'USDT', - traces: [ + "type_asset": "ics20", + "base": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "name": "Tether USDT", + "display": "usdt", + "symbol": "USDT", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt', - channel_id: 'channel-1' + "type": "ibc", + "counterparty": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt", + "channel_id": "channel-1" }, - chain: { - channel_id: 'channel-143', - path: 'transfer/channel-143/erc20/tether/usdt' + "chain": { + "channel_id": "channel-143", + "path": "transfer/channel-143/erc20/tether/usdt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } }, { - description: "Membrane's CDP-style stablecoin called CDT", - denom_units: [ + "description": "Membrane's CDP-style stablecoin called CDT", + "denom_units": [ { - denom: - 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt', - exponent: 0 + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "exponent": 0 }, { - denom: 'cdt', - exponent: 6 + "denom": "cdt", + "exponent": 6 } ], - base: 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt', - name: 'CDT Stablecoin', - display: 'cdt', - symbol: 'CDT', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + "base": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "name": "CDT Stablecoin", + "display": "cdt", + "symbol": "CDT", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg" }, - coingecko_id: 'collateralized-debt-token', - images: [ + "coingecko_id": "collateralized-debt-token", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg" } ] }, { - description: "Membrane's protocol token", - denom_units: [ + "description": "Membrane's protocol token", + "denom_units": [ { - denom: - 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn', - exponent: 0 + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "exponent": 0 }, { - denom: 'mbrn', - exponent: 6 + "denom": "mbrn", + "exponent": 6 } ], - base: 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn', - name: 'Membrane', - display: 'mbrn', - symbol: 'MBRN', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + "base": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "name": "Membrane", + "display": "mbrn", + "symbol": "MBRN", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg" }, - coingecko_id: 'membrane', - images: [ + "coingecko_id": "membrane", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg" } ] }, { - description: 'TIA on Osmosis', - denom_units: [ + "description": "TIA on Osmosis", + "denom_units": [ { - denom: - 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', - exponent: 0, - aliases: ['utia'] + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "exponent": 0, + "aliases": [ + "utia" + ] }, { - denom: 'tia', - exponent: 6 + "denom": "tia", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', - name: 'Celestia TIA', - display: 'tia', - symbol: 'TIA', - traces: [ + "type_asset": "ics20", + "base": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "name": "Celestia TIA", + "display": "tia", + "symbol": "TIA", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'celestia', - base_denom: 'utia', - channel_id: 'channel-2' + "type": "ibc", + "counterparty": { + "chain_name": "celestia", + "base_denom": "utia", + "channel_id": "channel-2" }, - chain: { - channel_id: 'channel-6994', - path: 'transfer/channel-6994/utia' + "chain": { + "channel_id": "channel-6994", + "path": "transfer/channel-6994/utia" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'celestia', - base_denom: 'utia' + "image_sync": { + "chain_name": "celestia", + "base_denom": "utia" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" } }, { - description: 'Margined Power Token sqOSMO', - denom_units: [ + "description": "Margined Power Token sqOSMO", + "denom_units": [ { - denom: - 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo', - exponent: 0 + "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "exponent": 0 }, { - denom: 'sqosmo', - exponent: 6 + "denom": "sqosmo", + "exponent": 6 } ], - base: 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo', - name: 'OSMO Squared', - display: 'sqosmo', - symbol: 'sqOSMO', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + "base": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "name": "OSMO Squared", + "display": "sqosmo", + "symbol": "sqOSMO", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg" } ] }, { - description: 'NOIS on Osmosis', - denom_units: [ + "description": "NOIS on Osmosis", + "denom_units": [ { - denom: - 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90', - exponent: 0, - aliases: ['unois'] + "denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", + "exponent": 0, + "aliases": [ + "unois" + ] }, { - denom: 'nois', - exponent: 6 + "denom": "nois", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90', - name: 'Nois NOIS', - display: 'nois', - symbol: 'NOIS', - traces: [ + "type_asset": "ics20", + "base": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", + "name": "Nois NOIS", + "display": "nois", + "symbol": "NOIS", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'nois', - base_denom: 'unois', - channel_id: 'channel-37' + "type": "ibc", + "counterparty": { + "chain_name": "nois", + "base_denom": "unois", + "channel_id": "channel-37" }, - chain: { - channel_id: 'channel-8277', - path: 'transfer/channel-8277/unois' + "chain": { + "channel_id": "channel-8277", + "path": "transfer/channel-8277/unois" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'nois', - base_denom: 'unois' + "image_sync": { + "chain_name": "nois", + "base_denom": "unois" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" } }, { - description: 'Margined Power Token sqBTC', - denom_units: [ + "description": "Margined Power Token sqBTC", + "denom_units": [ { - denom: 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc', - exponent: 0 + "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc", + "exponent": 0 }, { - denom: 'sqbtc', - exponent: 6 + "denom": "sqbtc", + "exponent": 6 } ], - base: 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc', - name: 'BTC Squared', - display: 'sqbtc', - symbol: 'sqBTC', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + "base": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc", + "name": "BTC Squared", + "display": "sqbtc", + "symbol": "sqBTC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg" } ] }, { - description: 'Margined Power Token sqATOM', - denom_units: [ + "description": "Margined Power Token sqATOM", + "denom_units": [ { - denom: 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom', - exponent: 0 + "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", + "exponent": 0 }, { - denom: 'sqatom', - exponent: 6 + "denom": "sqatom", + "exponent": 6 } ], - base: 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom', - name: 'ATOM Squared', - display: 'sqatom', - symbol: 'sqATOM', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + "base": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", + "name": "ATOM Squared", + "display": "sqatom", + "symbol": "sqATOM", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg" } ] }, { - description: - 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', - denom_units: [ + "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", + "denom_units": [ { - denom: - 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', - exponent: 0, - aliases: ['basecro'] + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "exponent": 0, + "aliases": [ + "basecro" + ] }, { - denom: 'cro', - exponent: 8 + "denom": "cro", + "exponent": 8 } ], - type_asset: 'ics20', - base: 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', - name: 'Cronos', - display: 'cro', - symbol: 'CRO', - traces: [ + "type_asset": "ics20", + "base": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "name": "Cronos", + "display": "cro", + "symbol": "CRO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'cryptoorgchain', - base_denom: 'basecro', - channel_id: 'channel-10' + "type": "ibc", + "counterparty": { + "chain_name": "cryptoorgchain", + "base_denom": "basecro", + "channel_id": "channel-10" }, - chain: { - channel_id: 'channel-5', - path: 'transfer/channel-5/basecro' + "chain": { + "channel_id": "channel-5", + "path": "transfer/channel-5/basecro" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'cryptoorgchain', - base_denom: 'basecro' + "image_sync": { + "chain_name": "cryptoorgchain", + "base_denom": "basecro" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" } }, { - 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 } ], - type_asset: 'ics20', - base: 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', - name: 'Stargaze', - display: 'stars', - symbol: 'STARS', - traces: [ + "type_asset": "ics20", + "base": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "name": "Stargaze", + "display": "stars", + "symbol": "STARS", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'stargaze', - base_denom: 'ustars', - channel_id: 'channel-0' + "type": "ibc", + "counterparty": { + "chain_name": "stargaze", + "base_denom": "ustars", + "channel_id": "channel-0" }, - chain: { - channel_id: 'channel-75', - path: 'transfer/channel-75/ustars' + "chain": { + "channel_id": "channel-75", + "path": "transfer/channel-75/ustars" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'stargaze', - base_denom: 'ustars' + "image_sync": { + "chain_name": "stargaze", + "base_denom": "ustars" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" } }, { - description: - 'Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.', - denom_units: [ + "description": "Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.", + "denom_units": [ { - denom: - 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668', - exponent: 0, - aliases: [ - '0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec', - 'yieldeth-wei' + "denom": "ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668", + "exponent": 0, + "aliases": [ + "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec", + "yieldeth-wei" ] }, { - denom: 'YieldETH', - exponent: 18 + "denom": "YieldETH", + "exponent": 18 } ], - type_asset: 'ics20', - base: 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668', - name: 'Real Yield Eth', - display: 'YieldETH', - symbol: 'YieldETH', - traces: [ + "type_asset": "ics20", + "base": "ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668", + "name": "Real Yield Eth", + "display": "YieldETH", + "symbol": "YieldETH", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'ethereum', - base_denom: 'wei' + "type": "liquid-stake", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "wei" }, - provider: 'Seven Seas & DeFine Logic Labs' + "provider": "Seven Seas & DeFine Logic Labs" }, { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec" }, - provider: 'Axelar' + "provider": "Axelar" }, { - type: 'ibc', - counterparty: { - chain_name: 'axelar', - base_denom: 'yieldeth-wei', - channel_id: 'channel-3' + "type": "ibc", + "counterparty": { + "chain_name": "axelar", + "base_denom": "yieldeth-wei", + "channel_id": "channel-3" }, - chain: { - channel_id: 'channel-208', - path: 'transfer/channel-208/yieldeth-wei' + "chain": { + "channel_id": "channel-208", + "path": "transfer/channel-208/yieldeth-wei" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: 'wei' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "wei" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg" } }, { - description: 'The native staking token of dYdX Protocol.', - denom_units: [ + "description": "The native staking token of dYdX Protocol.", + "denom_units": [ { - denom: - 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C', - exponent: 0, - aliases: ['adydx'] + "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "exponent": 0, + "aliases": [ + "adydx" + ] }, { - denom: 'dydx', - exponent: 18 + "denom": "dydx", + "exponent": 18 } ], - type_asset: 'ics20', - base: 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C', - name: 'dYdX', - display: 'dydx', - symbol: 'DYDX', - traces: [ + "type_asset": "ics20", + "base": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "name": "dYdX", + "display": "dydx", + "symbol": "DYDX", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'dydx', - base_denom: 'adydx', - channel_id: 'channel-3' + "type": "ibc", + "counterparty": { + "chain_name": "dydx", + "base_denom": "adydx", + "channel_id": "channel-3" }, - chain: { - channel_id: 'channel-6787', - path: 'transfer/channel-6787/adydx' + "chain": { + "channel_id": "channel-6787", + "path": "transfer/channel-6787/adydx" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'dydx', - base_denom: 'adydx' + "image_sync": { + "chain_name": "dydx", + "base_denom": "adydx" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } }, { - description: 'The native token of Quasar', - denom_units: [ + "description": "The native token of Quasar", + "denom_units": [ { - denom: - 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477', - exponent: 0, - aliases: ['uqsr'] + "denom": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", + "exponent": 0, + "aliases": [ + "uqsr" + ] }, { - denom: 'qsr', - exponent: 6 + "denom": "qsr", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477', - name: 'Quasar', - display: 'qsr', - symbol: 'QSR', - traces: [ + "type_asset": "ics20", + "base": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", + "name": "Quasar", + "display": "qsr", + "symbol": "QSR", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'quasar', - base_denom: 'uqsr', - channel_id: 'channel-1' + "type": "ibc", + "counterparty": { + "chain_name": "quasar", + "base_denom": "uqsr", + "channel_id": "channel-1" }, - chain: { - channel_id: 'channel-688', - path: 'transfer/channel-688/uqsr' + "chain": { + "channel_id": "channel-688", + "path": "transfer/channel-688/uqsr" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'quasar', - base_denom: 'uqsr' + "image_sync": { + "chain_name": "quasar", + "base_denom": "uqsr" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png" } }, { - description: 'Levana native token', - denom_units: [ + "description": "Levana native token", + "denom_units": [ { - denom: - 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn', - exponent: 0 + "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "exponent": 0 }, { - denom: 'lvn', - exponent: 6 + "denom": "lvn", + "exponent": 6 } ], - base: 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn', - name: 'Levana', - display: 'lvn', - symbol: 'LVN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + "base": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "name": "Levana", + "display": "lvn", + "symbol": "LVN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg" }, - coingecko_id: 'levana-protocol', - images: [ + "coingecko_id": "levana-protocol", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg" }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png" } ] }, { - description: "MilkyWay's liquid staked TIA", - denom_units: [ + "description": "MilkyWay's liquid staked TIA", + "denom_units": [ { - denom: - 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA', - exponent: 0 + "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "exponent": 0 }, { - denom: 'milkTIA', - exponent: 6 + "denom": "milkTIA", + "exponent": 6 } ], - base: 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA', - name: 'milkTIA', - display: 'milkTIA', - symbol: 'milkTIA', - traces: [ + "base": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "name": "milkTIA", + "display": "milkTIA", + "symbol": "milkTIA", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'celestia', - base_denom: 'utia' + "type": "liquid-stake", + "counterparty": { + "chain_name": "celestia", + "base_denom": "utia" }, - provider: 'MilkyWay' + "provider": "MilkyWay" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg" }, - coingecko_id: 'milkyway-staked-tia', - images: [ + "coingecko_id": "milkyway-staked-tia", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E', - exponent: 0, - aliases: ['stk/uosmo'] + "denom": "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", + "exponent": 0, + "aliases": [ + "stk/uosmo" + ] }, { - denom: 'stkosmo', - exponent: 6, - aliases: ['stk/osmo'] + "denom": "stkosmo", + "exponent": 6, + "aliases": [ + "stk/osmo" + ] } ], - type_asset: 'ics20', - base: 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E', - name: 'PSTAKE staked OSMO', - display: 'stkosmo', - symbol: 'stkOSMO', - traces: [ + "type_asset": "ics20", + "base": "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", + "name": "PSTAKE staked OSMO", + "display": "stkosmo", + "symbol": "stkOSMO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'persistence', - base_denom: 'stk/uosmo', - channel_id: 'channel-6' + "type": "ibc", + "counterparty": { + "chain_name": "persistence", + "base_denom": "stk/uosmo", + "channel_id": "channel-6" }, - chain: { - channel_id: 'channel-4', - path: 'transfer/channel-4/stk/uosmo' + "chain": { + "channel_id": "channel-4", + "path": "transfer/channel-4/stk/uosmo" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'persistence', - base_denom: 'stk/uosmo' + "image_sync": { + "chain_name": "persistence", + "base_denom": "stk/uosmo" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg" } }, { - description: - 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', - denom_units: [ + "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", + "denom_units": [ { - denom: - 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99', - exponent: 0, - aliases: [ - 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e', - '0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + "denom": "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", + "exponent": 0, + "aliases": [ + "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" ] }, { - denom: 'page', - exponent: 8 + "denom": "page", + "exponent": 8 } ], - type_asset: 'ics20', - base: 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99', - name: 'PageDAO', - display: 'page', - symbol: 'PAGE.grv', - traces: [ + "type_asset": "ics20", + "base": "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", + "name": "PageDAO", + "display": "page", + "symbol": "PAGE.grv", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'gravity', - base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e', - channel_id: 'channel-10' + "type": "ibc", + "counterparty": { + "chain_name": "gravity", + "base_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "channel_id": "channel-10" }, - chain: { - channel_id: 'channel-144', - path: 'transfer/channel-144/gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + "chain": { + "channel_id": "channel-144", + "path": "transfer/channel-144/gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'gravitybridge', - base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + "image_sync": { + "chain_name": "gravitybridge", + "base_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg" } }, { - description: "Nomic's native token.", - denom_units: [ + "description": "Nomic's native token.", + "denom_units": [ { - denom: - 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C', - exponent: 0, - aliases: ['unom'] + "denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "exponent": 0, + "aliases": [ + "unom" + ] }, { - denom: 'nom', - exponent: 6 + "denom": "nom", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C', - name: 'Nomic', - display: 'nomic', - symbol: 'NOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "name": "Nomic", + "display": "nomic", + "symbol": "NOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'nomic', - base_denom: 'unom', - channel_id: 'channel-1' + "type": "ibc", + "counterparty": { + "chain_name": "nomic", + "base_denom": "unom", + "channel_id": "channel-1" }, - chain: { - channel_id: 'channel-6897', - path: 'transfer/channel-6897/unom' + "chain": { + "channel_id": "channel-6897", + "path": "transfer/channel-6897/unom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'nomic', - base_denom: 'unom' + "image_sync": { + "chain_name": "nomic", + "base_denom": "unom" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg" } }, { - description: 'Bitcoin. On Cosmos.', - denom_units: [ + "description": "Bitcoin. On Cosmos.", + "denom_units": [ { - denom: - 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F', - exponent: 0, - aliases: ['usat'] + "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "exponent": 0, + "aliases": [ + "usat" + ] }, { - denom: 'nbtc', - exponent: 14 + "denom": "nbtc", + "exponent": 14 } ], - type_asset: 'ics20', - base: 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F', - name: 'Nomic Bitcoin', - display: 'nbtc', - symbol: 'nBTC', - traces: [ + "type_asset": "ics20", + "base": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "name": "Nomic Bitcoin", + "display": "nbtc", + "symbol": "nBTC", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'nomic', - base_denom: 'usat', - channel_id: 'channel-1' + "type": "ibc", + "counterparty": { + "chain_name": "nomic", + "base_denom": "usat", + "channel_id": "channel-1" }, - chain: { - channel_id: 'channel-6897', - path: 'transfer/channel-6897/usat' + "chain": { + "channel_id": "channel-6897", + "path": "transfer/channel-6897/usat" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'nomic', - base_denom: 'usat' + "image_sync": { + "chain_name": "nomic", + "base_denom": "usat" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg" } }, { - description: 'AUTISM on Osmosis', - denom_units: [ + "description": "AUTISM on Osmosis", + "denom_units": [ { - denom: - 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D', - exponent: 0, - aliases: ['uautism'] + "denom": "ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D", + "exponent": 0, + "aliases": [ + "uautism" + ] }, { - denom: 'autism', - exponent: 6 + "denom": "autism", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D', - name: 'Injective AUTISM', - display: 'autism', - symbol: 'AUTISM', - traces: [ + "type_asset": "ics20", + "base": "ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D", + "name": "Injective AUTISM", + "display": "autism", + "symbol": "AUTISM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'injective', - base_denom: - 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism', - channel_id: 'channel-8' + "type": "ibc", + "counterparty": { + "chain_name": "injective", + "base_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "channel_id": "channel-8" }, - chain: { - channel_id: 'channel-122', - path: 'transfer/channel-122/factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism' + "chain": { + "channel_id": "channel-122", + "path": "transfer/channel-122/factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'injective', - base_denom: - 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism' + "image_sync": { + "chain_name": "injective", + "base_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png" } }, { - description: 'Woof on Osmosis', - denom_units: [ + "description": "Woof on Osmosis", + "denom_units": [ { - denom: - 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53', - exponent: 0, - aliases: ['uwoof'] + "denom": "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", + "exponent": 0, + "aliases": [ + "uwoof" + ] }, { - denom: 'WOOF', - exponent: 6 + "denom": "WOOF", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53', - name: 'WOOF chihuahua', - display: 'WOOF', - symbol: 'WOOF', - traces: [ + "type_asset": "ics20", + "base": "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", + "name": "WOOF chihuahua", + "display": "WOOF", + "symbol": "WOOF", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'chihuahua', - base_denom: - 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof', - channel_id: 'channel-7' + "type": "ibc", + "counterparty": { + "chain_name": "chihuahua", + "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", + "channel_id": "channel-7" }, - chain: { - channel_id: 'channel-113', - path: 'transfer/channel-113/factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof' + "chain": { + "channel_id": "channel-113", + "path": "transfer/channel-113/factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png" } ] }, { - description: 'The native coin of Sneaky Productions.', - denom_units: [ + "description": "The native coin of Sneaky Productions.", + "denom_units": [ { - denom: - 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F', - exponent: 0, - aliases: ['usneaky'] + "denom": "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", + "exponent": 0, + "aliases": [ + "usneaky" + ] }, { - denom: 'sneaky', - exponent: 6 + "denom": "sneaky", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F', - name: 'Sneaky Productions', - display: 'sneaky', - symbol: 'SNEAKY', - traces: [ + "type_asset": "ics20", + "base": "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", + "name": "Sneaky Productions", + "display": "sneaky", + "symbol": "SNEAKY", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'stargaze', - base_denom: - 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky', - channel_id: 'channel-0' + "type": "ibc", + "counterparty": { + "chain_name": "stargaze", + "base_denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", + "channel_id": "channel-0" }, - chain: { - channel_id: 'channel-75', - path: 'transfer/channel-75/factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky' + "chain": { + "channel_id": "channel-75", + "path": "transfer/channel-75/factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc', - exponent: 0, - aliases: ['wbtc-satoshi'] + "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "exponent": 0, + "aliases": [ + "wbtc-satoshi" + ] }, { - denom: 'wbtc', - exponent: 8 + "denom": "wbtc", + "exponent": 8 } ], - address: - 'osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743', - type_asset: 'sdk.coin', - base: 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc', - name: 'Wrapped Bitcoin', - display: 'wbtc', - symbol: 'WBTC', - traces: [ + "address": "osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743", + "type_asset": "sdk.coin", + "base": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "name": "Wrapped Bitcoin", + "display": "wbtc", + "symbol": "WBTC", + "traces": [ { - type: 'additional-mintage', - counterparty: { - chain_name: 'ethereum', - base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + "type": "additional-mintage", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" }, - provider: 'BitGo, Kyber, and Ren' + "provider": "BitGo, Kyber, and Ren" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + "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" } ], - 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' + "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" } }, { - description: - "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", - denom_units: [ + "description": "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + "denom_units": [ { - denom: 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO', - exponent: 0 + "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "exponent": 0 }, { - denom: 'WOSMO', - exponent: 6 + "denom": "WOSMO", + "exponent": 6 } ], - address: 'osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3', - base: 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO', - name: 'WOSMO', - display: 'WOSMO', - symbol: 'WOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' + "address": "osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3", + "base": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "name": "WOSMO", + "display": "WOSMO", + "symbol": "WOSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png" } ] }, { - description: 'NLS on Osmosis', - denom_units: [ + "description": "NLS on Osmosis", + "denom_units": [ { - denom: - 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782', - exponent: 0, - aliases: ['unls'] + "denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", + "exponent": 0, + "aliases": [ + "unls" + ] }, { - denom: 'nls', - exponent: 6 + "denom": "nls", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782', - name: 'Nolus', - display: 'nls', - symbol: 'NLS', - traces: [ + "type_asset": "ics20", + "base": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", + "name": "Nolus", + "display": "nls", + "symbol": "NLS", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'nolus', - base_denom: 'unls', - channel_id: 'channel-0' + "type": "ibc", + "counterparty": { + "chain_name": "nolus", + "base_denom": "unls", + "channel_id": "channel-0" }, - chain: { - channel_id: 'channel-783', - path: 'transfer/channel-783/unls' + "chain": { + "channel_id": "channel-783", + "path": "transfer/channel-783/unls" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'nolus', - base_denom: 'unls' + "image_sync": { + "chain_name": "nolus", + "base_denom": "unls" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" } }, { - description: 'STRD on Osmosis', - denom_units: [ + "description": "STRD on Osmosis", + "denom_units": [ { - denom: - 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', - exponent: 0, - aliases: ['ustrd'] + "denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "exponent": 0, + "aliases": [ + "ustrd" + ] }, { - denom: 'strd', - exponent: 6 + "denom": "strd", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', - name: 'Stride', - display: 'strd', - symbol: 'STRD', - traces: [ + "type_asset": "ics20", + "base": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "name": "Stride", + "display": "strd", + "symbol": "STRD", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'stride', - base_denom: 'ustrd', - channel_id: 'channel-5' + "type": "ibc", + "counterparty": { + "chain_name": "stride", + "base_denom": "ustrd", + "channel_id": "channel-5" }, - chain: { - channel_id: 'channel-326', - path: 'transfer/channel-326/ustrd' + "chain": { + "channel_id": "channel-326", + "path": "transfer/channel-326/ustrd" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'stride', - base_denom: 'ustrd' + "image_sync": { + "chain_name": "stride", + "base_denom": "ustrd" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } }, { - description: 'Margined Power Token sqTIA', - denom_units: [ + "description": "Margined Power Token sqTIA", + "denom_units": [ { - denom: 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia', - exponent: 0 + "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", + "exponent": 0 }, { - denom: 'sqtia', - exponent: 6 + "denom": "sqtia", + "exponent": 6 } ], - base: 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia', - name: 'TIA Squared', - display: 'sqtia', - symbol: 'sqTIA', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + "base": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", + "name": "TIA Squared", + "display": "sqtia", + "symbol": "sqTIA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg" } ] }, { - description: 'Sail DAO Token', - denom_units: [ + "description": "Sail DAO Token", + "denom_units": [ { - denom: - 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail', - exponent: 0 + "denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "exponent": 0 }, { - denom: 'sail', - exponent: 6 + "denom": "sail", + "exponent": 6 } ], - base: 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail', - name: 'Sail', - display: 'sail', - symbol: 'SAIL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + "base": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "name": "Sail", + "display": "sail", + "symbol": "SAIL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + "base": "umed", + "name": "MediBloc", + "display": "med", + "symbol": "MED", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg" }, - coingecko_id: 'medibloc', - images: [ + "coingecko_id": "medibloc", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'passage', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "passage", + "assets": [ { - description: - 'The native staking and governance token of the Passage chain.', - denom_units: [ + "description": "The native staking and governance token of the Passage chain.", + "denom_units": [ { - denom: 'upasg', - exponent: 0 + "denom": "upasg", + "exponent": 0 }, { - denom: 'pasg', - exponent: 6 + "denom": "pasg", + "exponent": 6 } ], - base: 'upasg', - name: 'Passage', - display: 'pasg', - symbol: 'PASG', - coingecko_id: 'passage', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + "base": "upasg", + "name": "Passage", + "display": "pasg", + "symbol": "PASG", + "coingecko_id": "passage", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'passage1', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "passage1", + "assets": [ { - description: - 'The native staking and governance token of the Passage chain.', - denom_units: [ + "description": "The native staking and governance token of the Passage chain.", + "denom_units": [ { - denom: 'upasg', - exponent: 0 + "denom": "upasg", + "exponent": 0 }, { - denom: 'pasg', - exponent: 6 + "denom": "pasg", + "exponent": 6 } ], - base: 'upasg', - name: 'Passage', - display: 'pasg', - symbol: 'PASG', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + "base": "upasg", + "name": "Passage", + "display": "pasg", + "symbol": "PASG", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" } ] } ] }, { - $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', - images: [ + "coingecko_id": "persistence", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" } ] }, { - description: 'PSTAKE Liquid-Staked ATOM', - denom_units: [ + "description": "PSTAKE Liquid-Staked ATOM", + "denom_units": [ { - denom: 'stk/uatom', - exponent: 0, - aliases: [] + "denom": "stk/uatom", + "exponent": 0, + "aliases": [] }, { - denom: 'stkatom', - exponent: 6, - aliases: ['stk/atom'] + "denom": "stkatom", + "exponent": 6, + "aliases": [ + "stk/atom" + ] } ], - base: 'stk/uatom', - name: 'PSTAKE staked ATOM', - display: 'stkatom', - symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + "base": "stk/uatom", + "name": "PSTAKE staked ATOM", + "display": "stkatom", + "symbol": "stkATOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" }, - coingecko_id: 'stkatom', - images: [ + "coingecko_id": "stkatom", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" } ] }, { - description: - 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.', - denom_units: [ + "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 } ], - type_asset: 'ics20', - base: 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', - name: 'pSTAKE Finance', - display: 'pstake', - symbol: 'PSTAKE', - traces: [ + "type_asset": "ics20", + "base": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", + "name": "pSTAKE Finance", + "display": "pstake", + "symbol": "PSTAKE", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'persistence', - base_denom: 'uxprt' + "type": "liquid-stake", + "counterparty": { + "chain_name": "persistence", + "base_denom": "uxprt" }, - provider: 'Persistence' + "provider": "Persistence" }, { - type: 'bridge', - counterparty: { - chain_name: 'ethereum', - base_denom: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' + "type": "bridge", + "counterparty": { + "chain_name": "ethereum", + "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" }, - provider: 'Gravity Bridge' + "provider": "Gravity Bridge" }, { - type: 'ibc', - counterparty: { - chain_name: 'gravitybridge', - base_denom: 'gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006', - channel_id: 'channel-24' + "type": "ibc", + "counterparty": { + "chain_name": "gravitybridge", + "base_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "channel_id": "channel-24" }, - chain: { - channel_id: 'channel-38', - path: 'transfer/channel-38/gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' + "chain": { + "channel_id": "channel-38", + "path": "transfer/channel-38/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" }, - keywords: ['canon'], - images: [ + "keywords": [ + "canon" + ], + "images": [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' + "image_sync": { + "chain_name": "ethereum", + "base_denom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA', - exponent: 0, - aliases: ['uatom'] + "denom": "ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA", + "exponent": 0, + "aliases": [ + "uatom" + ] }, { - denom: 'atom', - exponent: 6 + "denom": "atom", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA', - name: 'Cosmos Hub Atom', - display: 'atom', - symbol: 'ATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'cosmoshub', - base_denom: 'uatom', - channel_id: 'channel-190' + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-190" }, - chain: { - channel_id: 'channel-24', - path: 'transfer/channel-24/uatom' + "chain": { + "channel_id": "channel-24", + "path": "transfer/channel-24/uatom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'cosmoshub', - base_denom: 'uatom' + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } }, { - description: 'Tether USDT on Persistence', - denom_units: [ + "description": "Tether USDT on Persistence", + "denom_units": [ { - denom: - 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4', - exponent: 0 + "denom": "ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4", + "exponent": 0 }, { - denom: 'usdt', - exponent: 6 + "denom": "usdt", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4', - name: 'Tether USDT', - display: 'usdt', - symbol: 'USDT', - traces: [ + "type_asset": "ics20", + "base": "ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4", + "name": "Tether USDT", + "display": "usdt", + "symbol": "USDT", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt', - channel_id: 'channel-134' + "type": "ibc", + "counterparty": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt", + "channel_id": "channel-134" }, - chain: { - channel_id: 'channel-129', - path: 'transfer/channel-129/erc20/tether/usdt' + "chain": { + "channel_id": "channel-129", + "path": "transfer/channel-129/erc20/tether/usdt" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' + "image_sync": { + "chain_name": "kava", + "base_denom": "erc20/tether/usdt" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0', - exponent: 0, - aliases: ['uusdc'] + "denom": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0', - name: 'Noble USD Coin', - display: 'usdc', - symbol: 'USDC', - traces: [ + "type_asset": "ics20", + "base": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", + "name": "Noble USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'noble', - base_denom: 'uusdc', - channel_id: 'channel-36' + "type": "ibc", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc", + "channel_id": "channel-36" }, - chain: { - channel_id: 'channel-132', - path: 'transfer/channel-132/uusdc' + "chain": { + "channel_id": "channel-132", + "path": "transfer/channel-132/uusdc" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'noble', - base_denom: 'uusdc' + "image_sync": { + "chain_name": "noble", + "base_denom": "uusdc" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" } }, { - description: 'dydx staking token', - denom_units: [ + "description": "dydx staking token", + "denom_units": [ { - denom: - 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E', - exponent: 0, - aliases: ['adydx'] + "denom": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", + "exponent": 0, + "aliases": [ + "adydx" + ] }, { - denom: 'dydx', - exponent: 18 + "denom": "dydx", + "exponent": 18 } ], - type_asset: 'ics20', - base: 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E', - name: 'dYdX', - display: 'dydx', - symbol: 'DYDX', - traces: [ + "type_asset": "ics20", + "base": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", + "name": "dYdX", + "display": "dydx", + "symbol": "DYDX", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'dydx', - base_denom: 'adydx', - channel_id: 'channel-4' + "type": "ibc", + "counterparty": { + "chain_name": "dydx", + "base_denom": "adydx", + "channel_id": "channel-4" }, - chain: { - channel_id: 'channel-131', - path: 'transfer/channel-131/adydx' + "chain": { + "channel_id": "channel-131", + "path": "transfer/channel-131/adydx" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'dydx', - base_denom: 'adydx' + "image_sync": { + "chain_name": "dydx", + "base_denom": "adydx" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } }, { - description: 'PSTAKE Liquid-Staked OSMO', - denom_units: [ + "description": "PSTAKE Liquid-Staked OSMO", + "denom_units": [ { - denom: 'stk/uosmo', - exponent: 0, - aliases: [] + "denom": "stk/uosmo", + "exponent": 0, + "aliases": [] }, { - denom: 'stkosmo', - exponent: 6, - aliases: ['stk/osmo'] + "denom": "stkosmo", + "exponent": 6, + "aliases": [ + "stk/osmo" + ] } ], - base: 'stk/uosmo', - name: 'PSTAKE staked OSMO', - display: 'stkosmo', - symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + "base": "stk/uosmo", + "name": "PSTAKE staked OSMO", + "display": "stkosmo", + "symbol": "stkOSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg" }, - coingecko_id: 'pstake-staked-osmo', - images: [ + "coingecko_id": "pstake-staked-osmo", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'planq', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "planq", + "assets": [ { - description: - 'The native EVM, governance and staking token of the Planq Network', - denom_units: [ + "description": "The native EVM, governance and staking token of the Planq Network", + "denom_units": [ { - denom: 'aplanq', - exponent: 0 + "denom": "aplanq", + "exponent": 0 }, { - denom: 'planq', - exponent: 18 + "denom": "planq", + "exponent": 18 } ], - base: 'aplanq', - name: 'Planq', - display: 'planq', - symbol: 'PLQ', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + "base": "aplanq", + "name": "Planq", + "display": "planq", + "symbol": "PLQ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg" }, - coingecko_id: 'planq', - images: [ + "coingecko_id": "planq", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'point', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "point", + "assets": [ { - description: - 'The native governance and staking token of the Point network', - denom_units: [ + "description": "The native governance and staking token of the Point network", + "denom_units": [ { - denom: 'apoint', - exponent: 0 + "denom": "apoint", + "exponent": 0 }, { - denom: 'point', - exponent: 18 + "denom": "point", + "exponent": 18 } ], - base: 'apoint', - name: 'Point', - display: 'point', - symbol: 'POINT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.svg' + "base": "apoint", + "name": "Point", + "display": "point", + "symbol": "POINT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.svg" }, - coingecko_id: 'point-network', - images: [ + "coingecko_id": "point-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.svg" } ] } ] }, { - $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 + "denom": "nhash", + "exponent": 0 }, { - denom: 'hash', - exponent: 9 + "denom": "hash", + "exponent": 9 } ], - base: 'nhash', - name: 'Hash', - display: 'hash', - symbol: 'HASH', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + "base": "nhash", + "name": "Hash", + "display": "hash", + "symbol": "HASH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg" }, - coingecko_id: 'provenance-blockchain', - images: [ + "coingecko_id": "provenance-blockchain", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'pundix', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "pundix", + "assets": [ { - description: 'Pundi X Token', - denom_units: [ + "description": "Pundi X Token", + "denom_units": [ { - denom: - 'ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78', - exponent: 0 + "denom": "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78", + "exponent": 0 }, { - denom: 'PUNDIX', - exponent: 18 + "denom": "PUNDIX", + "exponent": 18 } ], - base: 'ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78', - name: 'Pundi X Token', - display: 'PUNDIX', - symbol: 'PUNDIX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg' + "base": "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78", + "name": "Pundi X Token", + "display": "PUNDIX", + "symbol": "PUNDIX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg" }, - traces: [ + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'fxcore', - base_denom: 'eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38', - channel_id: 'channel-0' + "type": "ibc", + "counterparty": { + "chain_name": "fxcore", + "base_denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "channel_id": "channel-0" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'fxcore', - base_denom: 'eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38' + "image_sync": { + "chain_name": "fxcore", + "base_denom": "eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg" } ] }, { - description: 'PURSE Token', - denom_units: [ + "description": "PURSE Token", + "denom_units": [ { - denom: 'bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C', - exponent: 0 + "denom": "bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", + "exponent": 0 }, { - denom: 'PURSE', - exponent: 18 + "denom": "PURSE", + "exponent": 18 } ], - base: 'bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C', - name: 'PURSE Token', - display: 'PURSE', - symbol: 'PURSE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + "base": "bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", + "name": "PURSE Token", + "display": "PURSE", + "symbol": "PURSE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg" }, - traces: [ + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'binancesmartchain', - base_denom: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C', - contract: '0x84238c00c8313920826D798e3cF6793Ef4F610ad' + "type": "bridge", + "counterparty": { + "chain_name": "binancesmartchain", + "base_denom": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", + "contract": "0x84238c00c8313920826D798e3cF6793Ef4F610ad" }, - provider: 'Function X' + "provider": "Function X" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'binancesmartchain', - base_denom: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C' + "image_sync": { + "chain_name": "binancesmartchain", + "base_denom": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'quasar', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "quasar", + "assets": [ { - description: 'The native token of Quasar', - denom_units: [ + "description": "The native token of Quasar", + "denom_units": [ { - denom: 'uqsr', - exponent: 0, - aliases: [] + "denom": "uqsr", + "exponent": 0, + "aliases": [] }, { - denom: 'qsr', - exponent: 6, - aliases: [] + "denom": "qsr", + "exponent": 6, + "aliases": [] } ], - type_asset: 'sdk.coin', - base: 'uqsr', - name: 'Quasar', - display: 'qsr', - symbol: 'QSR', - coingecko_id: 'quasar-2', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + "type_asset": "sdk.coin", + "base": "uqsr", + "name": "Quasar", + "display": "qsr", + "symbol": "QSR", + "coingecko_id": "quasar-2", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png" } ] }, { - description: 'OSMO from Osmosis', - denom_units: [ + "description": "OSMO from Osmosis", + "denom_units": [ { - denom: - 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B', - exponent: 0, - aliases: ['uosmo'] + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "exponent": 0, + "aliases": [ + "uosmo" + ] }, { - denom: 'osmo', - exponent: 6, - aliases: [] + "denom": "osmo", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B', - name: 'Osmosis', - display: 'osmo', - symbol: 'OSMO', - traces: [ + "type_asset": "ics20", + "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: 'uosmo', - channel_id: 'channel-668' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo", + "channel_id": "channel-668" }, - chain: { - channel_id: 'channel-1', - path: 'transfer/channel-1/uosmo' + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/uosmo" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: 'uosmo' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } }, { - description: 'ATOM from Osmosis', - denom_units: [ + "description": "ATOM from Osmosis", + "denom_units": [ { - denom: - 'ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5', - exponent: 0, - aliases: ['uatom'] + "denom": "ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5", + "exponent": 0, + "aliases": [ + "uatom" + ] }, { - denom: 'atom', - exponent: 6, - aliases: [] + "denom": "atom", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5', - name: 'Atom', - display: 'atom', - symbol: 'ATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5", + "name": "Atom", + "display": "atom", + "symbol": "ATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', - channel_id: 'channel-668' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "channel_id": "channel-668" }, - chain: { - channel_id: 'channel-1', - path: 'transfer/channel-1/transfer/channel-0/uatom' + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/transfer/channel-0/uatom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } }, { - description: 'USDC.axl from Osmosis', - denom_units: [ + "description": "USDC.axl from Osmosis", + "denom_units": [ { - denom: - 'ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A', - exponent: 0, - aliases: ['uusdc'] + "denom": "ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'usdc', - exponent: 6, - aliases: [] + "denom": "usdc", + "exponent": 6, + "aliases": [] } ], - type_asset: 'ics20', - base: 'ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A', - name: 'USD Coin', - display: 'usdc', - symbol: 'USDC.axl', - traces: [ + "type_asset": "ics20", + "base": "ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC.axl", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', - channel_id: 'channel-668' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "channel_id": "channel-668" }, - chain: { - channel_id: 'channel-1', - path: 'transfer/channel-1/transfer/channel-208/uusdc' + "chain": { + "channel_id": "channel-1", + "path": "transfer/channel-1/transfer/channel-208/uusdc" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'quicksilver', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "quicksilver", + "assets": [ { - description: 'QCK - native token of Quicksilver', - denom_units: [ + "description": "QCK - native token of Quicksilver", + "denom_units": [ { - denom: 'uqck', - exponent: 0, - aliases: [] + "denom": "uqck", + "exponent": 0, + "aliases": [] }, { - denom: 'qck', - exponent: 6, - aliases: [] + "denom": "qck", + "exponent": 6, + "aliases": [] } ], - base: 'uqck', - name: 'Quicksilver', - display: 'qck', - symbol: 'QCK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + "base": "uqck", + "name": "Quicksilver", + "display": "qck", + "symbol": "QCK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" }, - coingecko_id: 'quicksilver', - images: [ + "coingecko_id": "quicksilver", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" } ] }, { - description: 'Quicksilver Liquid Staked STARS', - denom_units: [ + "description": "Quicksilver Liquid Staked STARS", + "denom_units": [ { - denom: 'uqstars', - exponent: 0, - aliases: [] + "denom": "uqstars", + "exponent": 0, + "aliases": [] }, { - denom: 'qstars', - exponent: 6, - aliases: [] + "denom": "qstars", + "exponent": 6, + "aliases": [] } ], - base: 'uqstars', - name: 'Quicksilver Liquid Staked STARS', - display: 'qstars', - symbol: 'qSTARS', - traces: [ + "base": "uqstars", + "name": "Quicksilver Liquid Staked STARS", + "display": "qstars", + "symbol": "qSTARS", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'stargaze', - base_denom: 'ustars' + "type": "liquid-stake", + "counterparty": { + "chain_name": "stargaze", + "base_denom": "ustars" }, - provider: 'Quicksilver' + "provider": "Quicksilver" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg" } ] }, { - description: 'Quicksilver Liquid Staked ATOM', - denom_units: [ + "description": "Quicksilver Liquid Staked ATOM", + "denom_units": [ { - denom: 'uqatom', - exponent: 0, - aliases: [] + "denom": "uqatom", + "exponent": 0, + "aliases": [] }, { - denom: 'qatom', - exponent: 6, - aliases: [] + "denom": "qatom", + "exponent": 6, + "aliases": [] } ], - base: 'uqatom', - name: 'Quicksilver Liquid Staked ATOM', - display: 'qatom', - symbol: 'qATOM', - traces: [ + "base": "uqatom", + "name": "Quicksilver Liquid Staked ATOM", + "display": "qatom", + "symbol": "qATOM", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'cosmoshub', - base_denom: 'uatom' + "type": "liquid-stake", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom" }, - provider: 'Quicksilver' + "provider": "Quicksilver" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg" } ] }, { - description: 'Quicksilver Liquid Staked REGEN', - denom_units: [ + "description": "Quicksilver Liquid Staked REGEN", + "denom_units": [ { - denom: 'uqregen', - exponent: 0, - aliases: [] + "denom": "uqregen", + "exponent": 0, + "aliases": [] }, { - denom: 'qregen', - exponent: 6, - aliases: [] + "denom": "qregen", + "exponent": 6, + "aliases": [] } ], - base: 'uqregen', - name: 'Quicksilver Liquid Staked Regen', - display: 'qregen', - symbol: 'qREGEN', - traces: [ + "base": "uqregen", + "name": "Quicksilver Liquid Staked Regen", + "display": "qregen", + "symbol": "qREGEN", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'regen', - base_denom: 'uregen' + "type": "liquid-stake", + "counterparty": { + "chain_name": "regen", + "base_denom": "uregen" }, - provider: 'Quicksilver' + "provider": "Quicksilver" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg" } ] }, { - description: 'Quicksilver Liquid Staked OSMO', - denom_units: [ + "description": "Quicksilver Liquid Staked OSMO", + "denom_units": [ { - denom: 'uqosmo', - exponent: 0, - aliases: [] + "denom": "uqosmo", + "exponent": 0, + "aliases": [] }, { - denom: 'qosmo', - exponent: 6, - aliases: [] + "denom": "qosmo", + "exponent": 6, + "aliases": [] } ], - base: 'uqosmo', - name: 'Quicksilver Liquid Staked OSMO', - display: 'qosmo', - symbol: 'qOSMO', - traces: [ + "base": "uqosmo", + "name": "Quicksilver Liquid Staked OSMO", + "display": "qosmo", + "symbol": "qOSMO", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'osmosis', - base_denom: 'uosmo' + "type": "liquid-stake", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo" }, - provider: 'Quicksilver' + "provider": "Quicksilver" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg" } ] }, { - description: 'Quicksilver Liquid Staked SOMM', - denom_units: [ + "description": "Quicksilver Liquid Staked SOMM", + "denom_units": [ { - denom: 'uqsomm', - exponent: 0, - aliases: [] + "denom": "uqsomm", + "exponent": 0, + "aliases": [] }, { - denom: 'qsomm', - exponent: 6, - aliases: [] + "denom": "qsomm", + "exponent": 6, + "aliases": [] } ], - base: 'uqsomm', - name: 'Quicksilver Liquid Staked SOMM', - display: 'qsomm', - symbol: 'qSOMM', - traces: [ + "base": "uqsomm", + "name": "Quicksilver Liquid Staked SOMM", + "display": "qsomm", + "symbol": "qSOMM", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'sommelier', - base_denom: 'usomm' + "type": "liquid-stake", + "counterparty": { + "chain_name": "sommelier", + "base_denom": "usomm" }, - provider: 'Quicksilver' + "provider": "Quicksilver" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'qwoyn', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "qwoyn", + "assets": [ { - description: 'QWOYN is the native governance token for Qwoyn Network', - denom_units: [ + "description": "QWOYN is the native governance token for Qwoyn Network", + "denom_units": [ { - denom: 'uqwoyn', - exponent: 0 + "denom": "uqwoyn", + "exponent": 0 }, { - denom: 'qwoyn', - exponent: 6 + "denom": "qwoyn", + "exponent": 6 } ], - base: 'uqwoyn', - name: 'Qwoyn Blockchain', - display: 'qwoyn', - symbol: 'QWOYN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + "base": "uqwoyn", + "name": "Qwoyn Blockchain", + "display": "qwoyn", + "symbol": "QWOYN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'realio', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "realio", + "assets": [ { - description: 'The native currency of the Realio Network.', - denom_units: [ + "description": "The native currency of the Realio Network.", + "denom_units": [ { - denom: 'ario', - exponent: 0 + "denom": "ario", + "exponent": 0 }, { - denom: 'rio', - exponent: 18 + "denom": "rio", + "exponent": 18 } ], - base: 'ario', - name: 'Realio Network', - display: 'rio', - symbol: 'RIO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + "base": "ario", + "name": "Realio Network", + "display": "rio", + "symbol": "RIO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg" }, - coingecko_id: 'realio-network', - images: [ + "coingecko_id": "realio-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg" } ] }, { - description: - 'A hybrid equity token that represent ownership of the Realio Ecosystem and provides utility functions on the Network.', - denom_units: [ + "description": "A hybrid equity token that represent ownership of the Realio Ecosystem and provides utility functions on the Network.", + "denom_units": [ { - denom: 'arst', - exponent: 0 + "denom": "arst", + "exponent": 0 }, { - denom: 'rst', - exponent: 18 + "denom": "rst", + "exponent": 18 } ], - base: 'arst', - name: 'Realio Security Token', - display: 'rst', - symbol: 'RST', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rst.png' + "base": "arst", + "name": "Realio Security Token", + "display": "rst", + "symbol": "RST", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rst.png" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rst.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rst.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'rebus', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "rebus", + "assets": [ { - description: 'REBUS, the native coin of the Rebus chain.', - denom_units: [ + "description": "REBUS, the native coin of the Rebus chain.", + "denom_units": [ { - denom: 'arebus', - exponent: 0 + "denom": "arebus", + "exponent": 0 }, { - denom: 'rebus', - exponent: 18 + "denom": "rebus", + "exponent": 18 } ], - base: 'arebus', - name: 'Rebus', - display: 'rebus', - symbol: 'REBUS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + "base": "arebus", + "name": "Rebus", + "display": "rebus", + "symbol": "REBUS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg" }, - coingecko_id: 'rebus', - images: [ + "coingecko_id": "rebus", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + "base": "uregen", + "name": "Regen Network", + "display": "regen", + "symbol": "REGEN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg" }, - coingecko_id: 'regen', - images: [ + "coingecko_id": "regen", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg" } ] }, { - description: - 'Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.', - denom_units: [ + "description": "Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.", + "denom_units": [ { - denom: 'eco.uC.NCT', - exponent: 0 + "denom": "eco.uC.NCT", + "exponent": 0 }, { - denom: 'nct', - exponent: 6 + "denom": "nct", + "exponent": 6 } ], - base: 'eco.uC.NCT', - name: 'Nature Carbon Ton', - display: 'nct', - symbol: 'NCT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + "base": "eco.uC.NCT", + "name": "Nature Carbon Ton", + "display": "nct", + "symbol": "NCT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg" }, - coingecko_id: 'toucan-protocol-nature-carbon-tonne', - images: [ + "coingecko_id": "toucan-protocol-nature-carbon-tonne", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg" } ] } ] }, { - $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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/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', - images: [ + "coingecko_id": "secret", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" } ] }, { - description: 'The native token cw20 for SIENNA on Secret Network', - denom_units: [ + "description": "The native token cw20 for SIENNA on Secret Network", + "denom_units": [ { - denom: 'cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4', - exponent: 0 + "denom": "cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4", + "exponent": 0 }, { - denom: 'sienna', - exponent: 18 + "denom": "sienna", + "exponent": 18 } ], - type_asset: 'snip20', - address: 'secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4', - base: 'cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4', - name: 'SIENNA', - display: 'sienna', - symbol: 'SIENNA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + "type_asset": "snip20", + "address": "secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4", + "base": "cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4", + "name": "SIENNA", + "display": "sienna", + "symbol": "SIENNA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg" }, - coingecko_id: 'sienna', - images: [ + "coingecko_id": "sienna", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg" } ] }, { - description: 'The native token cw20 for Shade on Secret Network', - denom_units: [ + "description": "The native token cw20 for Shade on Secret Network", + "denom_units": [ { - denom: 'cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d', - exponent: 0 + "denom": "cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d", + "exponent": 0 }, { - denom: 'shd', - exponent: 8 + "denom": "shd", + "exponent": 8 } ], - type_asset: 'snip20', - address: 'secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d', - base: 'cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d', - name: 'Shade (old)', - display: 'shd', - symbol: 'SHD(old)', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + "type_asset": "snip20", + "address": "secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d", + "base": "cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d", + "name": "Shade (old)", + "display": "shd", + "symbol": "SHD(old)", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg" } ] }, { - description: 'The native token cw20 for Shade on Secret Network', - denom_units: [ + "description": "The native token cw20 for Shade on Secret Network", + "denom_units": [ { - denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm', - exponent: 0 + "denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "exponent": 0 }, { - denom: 'shd', - exponent: 8 + "denom": "shd", + "exponent": 8 } ], - type_asset: 'snip25', - address: 'secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm', - base: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm', - name: 'Shade', - display: 'shd', - symbol: 'SHD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + "type_asset": "snip25", + "address": "secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "base": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "name": "Shade", + "display": "shd", + "symbol": "SHD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg" }, - coingecko_id: 'shade-protocol', - images: [ + "coingecko_id": "shade-protocol", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg" } ] }, { - description: 'The native token cw20 for Silk on Secret Network', - denom_units: [ + "description": "The native token cw20 for Silk on Secret Network", + "denom_units": [ { - denom: 'cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd', - exponent: 0 + "denom": "cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd", + "exponent": 0 }, { - denom: 'silk', - exponent: 6 + "denom": "silk", + "exponent": 6 } ], - type_asset: 'snip25', - address: 'secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd', - base: 'cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd', - name: 'Silk', - display: 'silk', - symbol: 'SILK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + "type_asset": "snip25", + "address": "secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd", + "base": "cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd", + "name": "Silk", + "display": "silk", + "symbol": "SILK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg" }, - coingecko_id: 'silk-bcec1136-561c-4706-a42c-8b67d0d7f7d2', - images: [ + "coingecko_id": "silk-bcec1136-561c-4706-a42c-8b67d0d7f7d2", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg" } ] }, { - description: - 'The native token cw20 for SCRT Staking Derivatives on Secret Network', - denom_units: [ + "description": "The native token cw20 for SCRT Staking Derivatives on Secret Network", + "denom_units": [ { - denom: 'cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4', - exponent: 0 + "denom": "cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4", + "exponent": 0 }, { - denom: 'stkd-scrt', - exponent: 6 + "denom": "stkd-scrt", + "exponent": 6 } ], - type_asset: 'snip20', - address: 'secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4', - base: 'cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4', - name: 'SCRT Staking Derivatives', - display: 'stkd-scrt', - symbol: 'stkd-SCRT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + "type_asset": "snip20", + "address": "secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4", + "base": "cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4", + "name": "SCRT Staking Derivatives", + "display": "stkd-scrt", + "symbol": "stkd-SCRT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg" }, - coingecko_id: 'stkd-scrt', - images: [ + "coingecko_id": "stkd-scrt", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg" } ] }, { - description: 'The native token cw20 for Button on Secret Network', - denom_units: [ + "description": "The native token cw20 for Button on Secret Network", + "denom_units": [ { - denom: 'cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt', - exponent: 0 + "denom": "cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt", + "exponent": 0 }, { - denom: 'butt', - exponent: 6 + "denom": "butt", + "exponent": 6 } ], - type_asset: 'snip20', - address: 'secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt', - base: 'cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt', - name: 'Button', - display: 'butt', - symbol: 'BUTT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + "type_asset": "snip20", + "address": "secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt", + "base": "cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt", + "name": "Button", + "display": "butt", + "symbol": "BUTT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg" }, - coingecko_id: 'buttcoin-2', - images: [ + "coingecko_id": "buttcoin-2", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg" } ] }, { - description: 'The native token cw20 for Alter on Secret Network', - denom_units: [ + "description": "The native token cw20 for Alter on Secret Network", + "denom_units": [ { - denom: 'cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej', - exponent: 0 + "denom": "cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej", + "exponent": 0 }, { - denom: 'alter', - exponent: 6 + "denom": "alter", + "exponent": 6 } ], - base: 'cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej', - name: 'Alter', - display: 'alter', - symbol: 'ALTER', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + "base": "cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej", + "name": "Alter", + "display": "alter", + "symbol": "ALTER", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg" }, - coingecko_id: 'alter', - images: [ + "coingecko_id": "alter", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg" } ] }, { - description: 'The native token cw20 for Amber on Secret Network', - denom_units: [ + "description": "The native token cw20 for Amber on Secret Network", + "denom_units": [ { - denom: 'cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852', - exponent: 0 + "denom": "cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852", + "exponent": 0 }, { - denom: 'amber', - exponent: 6 + "denom": "amber", + "exponent": 6 } ], - type_asset: 'snip20', - address: 'secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852', - base: 'cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852', - name: 'Amber', - display: 'amber', - symbol: 'AMBER', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + "type_asset": "snip20", + "address": "secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852", + "base": "cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852", + "name": "Amber", + "display": "amber", + "symbol": "AMBER", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg" } ] }, { - description: 'The native token cw20 for Shill on Secret Network', - denom_units: [ + "description": "The native token cw20 for Shill on Secret Network", + "denom_units": [ { - denom: 'cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse', - exponent: 0 + "denom": "cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse", + "exponent": 0 }, { - denom: 'shill', - exponent: 6 + "denom": "shill", + "exponent": 6 } ], - type_asset: 'snip25', - address: 'secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse', - base: 'cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse', - name: 'Shill', - display: 'shill', - symbol: 'SHILL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.svg' + "type_asset": "snip25", + "address": "secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse", + "base": "cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse", + "name": "Shill", + "display": "shill", + "symbol": "SHILL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'sei', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "sei", + "assets": [ { - description: 'The native staking token of Sei.', - denom_units: [ + "description": "The native staking token of Sei.", + "denom_units": [ { - denom: 'usei', - exponent: 0 + "denom": "usei", + "exponent": 0 }, { - denom: 'sei', - exponent: 6 + "denom": "sei", + "exponent": 6 } ], - base: 'usei', - name: 'Sei', - display: 'sei', - symbol: 'SEI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + "base": "usei", + "name": "Sei", + "display": "sei", + "symbol": "SEI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg" }, - coingecko_id: 'sei-network', - images: [ + "coingecko_id": "sei-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg" } ] }, { - description: - 'OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.', - denom_units: [ + "description": "OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.", + "denom_units": [ { - denom: 'factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN', - exponent: 0 + "denom": "factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN", + "exponent": 0 }, { - denom: 'oin', - exponent: 6 + "denom": "oin", + "exponent": 6 } ], - address: 'sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w', - base: 'factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN', - name: 'OIN STORE OF VALUE', - display: 'oin', - symbol: 'OIN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + "address": "sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w", + "base": "factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN", + "name": "OIN STORE OF VALUE", + "display": "oin", + "symbol": "OIN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png" } ] }, { - description: 'ERIS liquid staked SEI', - denom_units: [ + "description": "ERIS liquid staked SEI", + "denom_units": [ { - denom: - 'factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI', - exponent: 0 + "denom": "factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI", + "exponent": 0 }, { - denom: 'ampSEI', - exponent: 6 + "denom": "ampSEI", + "exponent": 6 } ], - base: 'factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI', - name: 'ERIS Amplified SEI', - display: 'ampSEI', - symbol: 'ampSEI', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/ampsei.svg' + "base": "factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI", + "name": "ERIS Amplified SEI", + "display": "ampSEI", + "symbol": "ampSEI", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/ampsei.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/ampsei.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/ampsei.svg" } ] }, { - description: 'Popeye the Seilor', - denom_units: [ + "description": "Popeye the Seilor", + "denom_units": [ { - denom: 'factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye', - exponent: 0 + "denom": "factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye", + "exponent": 0 }, { - denom: 'popeye', - exponent: 6 + "denom": "popeye", + "exponent": 6 } ], - base: 'factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye', - name: 'Popeye', - display: 'popeye', - symbol: 'POPEYE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/popeye.png' + "base": "factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye", + "name": "Popeye", + "display": "popeye", + "symbol": "POPEYE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/popeye.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/popeye.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/popeye.png" } ] }, { - description: 'A wise dog and a marshal arts master', - denom_units: [ + "description": "A wise dog and a marshal arts master", + "denom_units": [ { - denom: 'factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei', - exponent: 0 + "denom": "factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei", + "exponent": 0 }, { - denom: 'sensei', - exponent: 6 + "denom": "sensei", + "exponent": 6 } ], - base: 'factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei', - name: 'Sensei Dog', - display: 'sensei', - symbol: 'SENSEI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SenseiDog.png' + "base": "factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei", + "name": "Sensei Dog", + "display": "sensei", + "symbol": "SENSEI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SenseiDog.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SenseiDog.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SenseiDog.png" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + "base": "udvpn", + "name": "Sentinel", + "display": "dvpn", + "symbol": "DVPN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg" }, - coingecko_id: 'sentinel', - images: [ + "coingecko_id": "sentinel", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'sge', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "sge", + "assets": [ { - description: 'The native token of SGE Network', - denom_units: [ + "description": "The native token of SGE Network", + "denom_units": [ { - denom: 'usge', - exponent: 0 + "denom": "usge", + "exponent": 0 }, { - denom: 'sge', - exponent: 6 + "denom": "sge", + "exponent": 6 } ], - base: 'usge', - name: 'SGE', - display: 'sge', - symbol: 'SGE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + "base": "usge", + "name": "SGE", + "display": "sge", + "symbol": "SGE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg" }, - coingecko_id: 'six-sigma', - images: [ + "coingecko_id": "six-sigma", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'shareledger', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "shareledger", + "assets": [ { - description: 'The native token of Shareledger', - denom_units: [ + "description": "The native token of Shareledger", + "denom_units": [ { - denom: 'nshr', - exponent: 0 + "denom": "nshr", + "exponent": 0 }, { - denom: 'shr', - exponent: 9 + "denom": "shr", + "exponent": 9 } ], - base: 'nshr', - name: 'Shareledger', - display: 'shr', - symbol: 'SHR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.svg' + "base": "nshr", + "name": "Shareledger", + "display": "shr", + "symbol": "SHR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.svg" }, - coingecko_id: 'shareledger', - keywords: ['id'], - images: [ + "coingecko_id": "shareledger", + "keywords": [ + "id" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.svg" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + "base": "uctk", + "name": "Shentu", + "display": "ctk", + "symbol": "CTK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg" }, - coingecko_id: 'certik', - images: [ + "coingecko_id": "certik", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'sifchain', - assets: [ + "$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: [ + "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: 0 + "denom": "rowan", + "exponent": 0 }, { - denom: 'ROWAN', - exponent: 18 + "denom": "ROWAN", + "exponent": 18 } ], - base: 'rowan', - name: 'Sifchain Rowan', - display: 'ROWAN', - symbol: 'ROWAN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + "base": "rowan", + "name": "Sifchain Rowan", + "display": "ROWAN", + "symbol": "ROWAN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg" }, - coingecko_id: 'sifchain', - images: [ + "coingecko_id": "sifchain", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'six', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "six", + "assets": [ { - description: 'The native staking token of the SIX Protocol.', - denom_units: [ + "description": "The native staking token of the SIX Protocol.", + "denom_units": [ { - denom: 'usix', - exponent: 0 + "denom": "usix", + "exponent": 0 }, { - denom: 'six', - exponent: 6 + "denom": "six", + "exponent": 6 } ], - base: 'usix', - name: 'Six token', - display: 'six', - symbol: 'SIX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/six/images/six.png' + "base": "usix", + "name": "Six token", + "display": "six", + "symbol": "SIX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/six/images/six.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/six/images/six.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/six/images/six.png" } ] } ] }, { - $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: 'Sommelier', - 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": "Sommelier", + "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', - images: [ + "coingecko_id": "sommelier", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'source', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "source", + "assets": [ { - description: 'The native token of SOURCE Chain', - denom_units: [ + "description": "The native token of SOURCE Chain", + "denom_units": [ { - denom: 'usource', - exponent: 0 + "denom": "usource", + "exponent": 0 }, { - denom: 'source', - exponent: 6 + "denom": "source", + "exponent": 6 } ], - base: 'usource', - name: 'Source', - display: 'source', - symbol: 'SOURCE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + "base": "usource", + "name": "Source", + "display": "source", + "symbol": "SOURCE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg" }, - coingecko_id: 'source', - images: [ + "coingecko_id": "source", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'stafihub', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "stafihub", + "assets": [ { - description: - 'The native staking and governance token of the StaFi Hub.', - denom_units: [ + "description": "The native staking and governance token of the StaFi Hub.", + "denom_units": [ { - denom: 'ufis', - exponent: 0 + "denom": "ufis", + "exponent": 0 }, { - denom: 'fis', - exponent: 6 + "denom": "fis", + "exponent": 6 } ], - base: 'ufis', - name: 'FIS', - display: 'fis', - symbol: 'FIS', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + "base": "ufis", + "name": "FIS", + "display": "fis", + "symbol": "FIS", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg" }, - coingecko_id: 'stafi', - images: [ + "coingecko_id": "stafi", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg" } ] }, { - description: 'A liquid staking representation of staked ATOMs', - denom_units: [ + "description": "A liquid staking representation of staked ATOMs", + "denom_units": [ { - denom: 'uratom', - exponent: 0 + "denom": "uratom", + "exponent": 0 }, { - denom: 'ratom', - exponent: 6 + "denom": "ratom", + "exponent": 6 } ], - base: 'uratom', - name: 'rATOM', - display: 'ratom', - symbol: 'rATOM', - traces: [ + "base": "uratom", + "name": "rATOM", + "display": "ratom", + "symbol": "rATOM", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'cosmoshub', - base_denom: 'uatom' + "type": "liquid-stake", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom" }, - provider: 'StaFiHub' + "provider": "StaFiHub" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg" } ] }, { - description: 'A liquid staking representation of staked IRISs', - denom_units: [ + "description": "A liquid staking representation of staked IRISs", + "denom_units": [ { - denom: 'uriris', - exponent: 0 + "denom": "uriris", + "exponent": 0 }, { - denom: 'riris', - exponent: 6 + "denom": "riris", + "exponent": 6 } ], - base: 'uriris', - name: 'rIRIS', - display: 'riris', - symbol: 'rIRIS', - traces: [ + "base": "uriris", + "name": "rIRIS", + "display": "riris", + "symbol": "rIRIS", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'irisnet', - base_denom: 'uiris' + "type": "liquid-stake", + "counterparty": { + "chain_name": "irisnet", + "base_denom": "uiris" }, - provider: 'StaFiHub' + "provider": "StaFiHub" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/riris.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/riris.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/riris.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/riris.svg" } ] }, { - description: 'A liquid staking representation of staked HUAHUAs', - denom_units: [ + "description": "A liquid staking representation of staked HUAHUAs", + "denom_units": [ { - denom: 'urhuahua', - exponent: 0 + "denom": "urhuahua", + "exponent": 0 }, { - denom: 'rhuahua', - exponent: 6 + "denom": "rhuahua", + "exponent": 6 } ], - base: 'urhuahua', - name: 'rHUAHUA', - display: 'rhuahua', - symbol: 'rHUAHUA', - traces: [ + "base": "urhuahua", + "name": "rHUAHUA", + "display": "rhuahua", + "symbol": "rHUAHUA", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'chihuahua', - base_denom: 'uhuahua' + "type": "liquid-stake", + "counterparty": { + "chain_name": "chihuahua", + "base_denom": "uhuahua" }, - provider: 'StaFiHub' + "provider": "StaFiHub" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rhuahua.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rhuahua.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rhuahua.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rhuahua.svg" } ] }, { - description: 'A liquid staking representation of staked SWTHs', - denom_units: [ + "description": "A liquid staking representation of staked SWTHs", + "denom_units": [ { - denom: 'urswth', - exponent: 0 + "denom": "urswth", + "exponent": 0 }, { - denom: 'rswth', - exponent: 8 + "denom": "rswth", + "exponent": 8 } ], - base: 'urswth', - name: 'rSWTH', - display: 'rswth', - symbol: 'rSWTH', - traces: [ + "base": "urswth", + "name": "rSWTH", + "display": "rswth", + "symbol": "rSWTH", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'carbon', - base_denom: 'uswth' + "type": "liquid-stake", + "counterparty": { + "chain_name": "carbon", + "base_denom": "uswth" }, - provider: 'StaFiHub' + "provider": "StaFiHub" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rswth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rswth.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rswth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rswth.svg" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + "base": "ustars", + "name": "Stargaze", + "display": "stars", + "symbol": "STARS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" }, - coingecko_id: 'stargaze', - images: [ + "coingecko_id": "stargaze", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" } ] }, { - description: 'The native token of ohhNFT.', - denom_units: [ + "description": "The native token of ohhNFT.", + "denom_units": [ { - denom: 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust', - exponent: 0 + "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", + "exponent": 0 }, { - denom: 'strdst', - exponent: 6 + "denom": "strdst", + "exponent": 6 } ], - base: 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust', - name: 'Stardust STRDST', - display: 'strdst', - symbol: 'STRDST', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + "base": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", + "name": "Stardust STRDST", + "display": "strdst", + "symbol": "STRDST", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg" } ] }, { - description: 'The native meme token of stargaze.', - denom_units: [ + "description": "The native meme token of stargaze.", + "denom_units": [ { - denom: 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE', - exponent: 0 + "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE", + "exponent": 0 }, { - denom: 'GAZE', - exponent: 6 + "denom": "GAZE", + "exponent": 6 } ], - base: 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE', - name: 'Gaze GAZE', - display: 'GAZE', - symbol: 'GAZE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.svg' + "base": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE", + "name": "Gaze GAZE", + "display": "GAZE", + "symbol": "GAZE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.svg" } ] }, { - description: 'ohhNFT LP token.', - denom_units: [ + "description": "ohhNFT LP token.", + "denom_units": [ { - denom: - 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH', - exponent: 0 + "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH", + "exponent": 0 }, { - denom: 'BRNCH', - exponent: 6 + "denom": "BRNCH", + "exponent": 6 } ], - base: 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH', - name: 'Branch', - display: 'BRNCH', - symbol: 'BRNCH', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + "base": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH", + "name": "Branch", + "display": "BRNCH", + "symbol": "BRNCH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg" } ] }, { - description: 'Social token for the ohhVAULT.', - denom_units: [ + "description": "Social token for the ohhVAULT.", + "denom_units": [ { - denom: 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH', - exponent: 0 + "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH", + "exponent": 0 }, { - denom: 'OHH', - exponent: 6 + "denom": "OHH", + "exponent": 6 } ], - base: 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH', - name: 'ohhVAULT ohh', - display: 'OHH', - symbol: 'OHH', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.svg' + "base": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH", + "name": "ohhVAULT ohh", + "display": "OHH", + "symbol": "OHH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.svg" } ] }, { - description: 'The native coin of Sneaky Productions.', - denom_units: [ + "description": "The native coin of Sneaky Productions.", + "denom_units": [ { - denom: - 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky', - exponent: 0 + "denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", + "exponent": 0 }, { - denom: 'sneaky', - exponent: 6 + "denom": "sneaky", + "exponent": 6 } ], - base: 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky', - name: 'Sneaky Productions', - display: 'sneaky', - symbol: 'SNEAKY', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + "base": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", + "name": "Sneaky Productions", + "display": "sneaky", + "symbol": "SNEAKY", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg" } ] } ] }, { - $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', - images: [ + "coingecko_id": "starname", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'stratos', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "stratos", + "assets": [ { - description: - 'STOS coin is the token for the Stratos (STOS) cosmos based blockchain', - denom_units: [ + "description": "STOS coin is the token for the Stratos (STOS) cosmos based blockchain", + "denom_units": [ { - denom: 'wei', - exponent: 0 + "denom": "wei", + "exponent": 0 }, { - denom: 'gwei', - exponent: 9 + "denom": "gwei", + "exponent": 9 }, { - denom: 'stos', - exponent: 18 + "denom": "stos", + "exponent": 18 } ], - base: 'wei', - name: 'Stratos', - display: 'stos', - symbol: 'STOS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg' + "base": "wei", + "name": "Stratos", + "display": "stos", + "symbol": "STOS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg" }, - coingecko_id: 'stratos', - images: [ + "coingecko_id": "stratos", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'stride', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "stride", + "assets": [ { - description: 'The native token of Stride', - denom_units: [ + "description": "The native token of Stride", + "denom_units": [ { - denom: 'ustrd', - exponent: 0 + "denom": "ustrd", + "exponent": 0 }, { - denom: 'strd', - exponent: 6 + "denom": "strd", + "exponent": 6 } ], - base: 'ustrd', - name: 'Stride', - display: 'strd', - symbol: 'STRD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "base": "ustrd", + "name": "Stride", + "display": "strd", + "symbol": "STRD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" }, - coingecko_id: 'stride', - images: [ + "coingecko_id": "stride", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'stuatom', - exponent: 0 + "denom": "stuatom", + "exponent": 0 }, { - denom: 'statom', - exponent: 6 + "denom": "statom", + "exponent": 6 } ], - base: 'stuatom', - name: 'Stride Staked ATOM', - display: 'statom', - symbol: 'stATOM', - traces: [ + "base": "stuatom", + "name": "Stride Staked ATOM", + "display": "statom", + "symbol": "stATOM", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'cosmoshub', - base_denom: 'uatom' + "type": "liquid-stake", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom" }, - provider: 'Stride' + "provider": "Stride" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" }, - coingecko_id: 'stride-staked-atom', - images: [ + "coingecko_id": "stride-staked-atom", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'stustars', - exponent: 0 + "denom": "stustars", + "exponent": 0 }, { - denom: 'ststars', - exponent: 6 + "denom": "ststars", + "exponent": 6 } ], - base: 'stustars', - name: 'Stride Staked STARS', - display: 'ststars', - symbol: 'stSTARS', - traces: [ + "base": "stustars", + "name": "Stride Staked STARS", + "display": "ststars", + "symbol": "stSTARS", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'stargaze', - base_denom: 'ustars' + "type": "liquid-stake", + "counterparty": { + "chain_name": "stargaze", + "base_denom": "ustars" }, - provider: 'Stride' + "provider": "Stride" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" }, - coingecko_id: 'stride-staked-stars', - images: [ + "coingecko_id": "stride-staked-stars", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'stuosmo', - exponent: 0 + "denom": "stuosmo", + "exponent": 0 }, { - denom: 'stosmo', - exponent: 6 + "denom": "stosmo", + "exponent": 6 } ], - base: 'stuosmo', - name: 'Stride Staked OSMO', - display: 'stosmo', - symbol: 'stOSMO', - traces: [ + "base": "stuosmo", + "name": "Stride Staked OSMO", + "display": "stosmo", + "symbol": "stOSMO", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'osmosis', - base_denom: 'uosmo' + "type": "liquid-stake", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo" }, - provider: 'Stride' + "provider": "Stride" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" }, - coingecko_id: 'stride-staked-osmo', - images: [ + "coingecko_id": "stride-staked-osmo", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'stujuno', - exponent: 0 + "denom": "stujuno", + "exponent": 0 }, { - denom: 'stjuno', - exponent: 6 + "denom": "stjuno", + "exponent": 6 } ], - base: 'stujuno', - name: 'Stride Staked JUNO', - display: 'stjuno', - symbol: 'stJUNO', - traces: [ + "base": "stujuno", + "name": "Stride Staked JUNO", + "display": "stjuno", + "symbol": "stJUNO", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'juno', - base_denom: 'ujuno' + "type": "liquid-stake", + "counterparty": { + "chain_name": "juno", + "base_denom": "ujuno" }, - provider: 'Stride' + "provider": "Stride" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" }, - coingecko_id: 'stride-staked-juno', - images: [ + "coingecko_id": "stride-staked-juno", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'stuluna', - exponent: 0 + "denom": "stuluna", + "exponent": 0 }, { - denom: 'stluna', - exponent: 6 + "denom": "stluna", + "exponent": 6 } ], - base: 'stuluna', - name: 'Stride Staked LUNA', - display: 'stluna', - symbol: 'stLUNA', - traces: [ + "base": "stuluna", + "name": "Stride Staked LUNA", + "display": "stluna", + "symbol": "stLUNA", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'terra2', - base_denom: 'uluna' + "type": "liquid-stake", + "counterparty": { + "chain_name": "terra2", + "base_denom": "uluna" }, - provider: 'Stride' + "provider": "Stride" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" }, - coingecko_id: 'stride-staked-luna', - images: [ + "coingecko_id": "stride-staked-luna", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'stinj', - exponent: 0 + "denom": "stinj", + "exponent": 0 }, { - denom: 'stINJ', - exponent: 18 + "denom": "stINJ", + "exponent": 18 } ], - base: 'stinj', - name: 'Stride Staked INJ', - display: 'stINJ', - symbol: 'stINJ', - traces: [ + "base": "stinj", + "name": "Stride Staked INJ", + "display": "stINJ", + "symbol": "stINJ", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'injective', - base_denom: 'inj' + "type": "liquid-stake", + "counterparty": { + "chain_name": "injective", + "base_denom": "inj" }, - provider: 'Stride' + "provider": "Stride" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'staevmos', - exponent: 0 + "denom": "staevmos", + "exponent": 0 }, { - denom: 'stevmos', - exponent: 18 + "denom": "stevmos", + "exponent": 18 } ], - base: 'staevmos', - name: 'Stride Staked EVMOS', - display: 'stevmos', - symbol: 'stEVMOS', - traces: [ + "base": "staevmos", + "name": "Stride Staked EVMOS", + "display": "stevmos", + "symbol": "stEVMOS", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'evmos', - base_denom: 'uaevmos' + "type": "liquid-stake", + "counterparty": { + "chain_name": "evmos", + "base_denom": "uaevmos" }, - provider: 'Stride' + "provider": "Stride" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg" }, - coingecko_id: 'stride-staked-evmos', - images: [ + "coingecko_id": "stride-staked-evmos", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'stuumee', - exponent: 0 + "denom": "stuumee", + "exponent": 0 }, { - denom: 'stumee', - exponent: 6 + "denom": "stumee", + "exponent": 6 } ], - base: 'stuumee', - name: 'Stride Staked UMEE', - display: 'stumee', - symbol: 'stUMEE', - traces: [ + "base": "stuumee", + "name": "Stride Staked UMEE", + "display": "stumee", + "symbol": "stUMEE", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'umee', - base_denom: 'uumee' + "type": "liquid-stake", + "counterparty": { + "chain_name": "umee", + "base_denom": "uumee" }, - provider: 'Stride' + "provider": "Stride" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" }, - coingecko_id: 'stride-staked-umee', - images: [ + "coingecko_id": "stride-staked-umee", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'stucmdx', - exponent: 0 + "denom": "stucmdx", + "exponent": 0 }, { - denom: 'stcmdx', - exponent: 6 + "denom": "stcmdx", + "exponent": 6 } ], - base: 'stucmdx', - name: 'Stride Staked CMDX', - display: 'stcmdx', - symbol: 'stCMDX', - traces: [ + "base": "stucmdx", + "name": "Stride Staked CMDX", + "display": "stcmdx", + "symbol": "stCMDX", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'comdex', - base_denom: 'ucmdx' + "type": "liquid-stake", + "counterparty": { + "chain_name": "comdex", + "base_denom": "ucmdx" }, - provider: 'Stride' + "provider": "Stride" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: 'stusomm', - exponent: 0 + "denom": "stusomm", + "exponent": 0 }, { - denom: 'stsomm', - exponent: 6 + "denom": "stsomm", + "exponent": 6 } ], - base: 'stusomm', - name: 'Stride Staked SOMM', - display: 'stsomm', - symbol: 'stSOMM', - traces: [ + "base": "stusomm", + "name": "Stride Staked SOMM", + "display": "stsomm", + "symbol": "stSOMM", + "traces": [ { - type: 'liquid-stake', - counterparty: { - chain_name: 'sommelier', - base_denom: 'usomm' + "type": "liquid-stake", + "counterparty": { + "chain_name": "sommelier", + "base_denom": "usomm" }, - provider: 'Stride' + "provider": "Stride" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg" }, - coingecko_id: 'stride-staked-sommelier', - images: [ + "coingecko_id": "stride-staked-sommelier", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'tenet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "tenet", + "assets": [ { - description: - 'The native EVM, governance and staking token of the Tenet', - denom_units: [ + "description": "The native EVM, governance and staking token of the Tenet", + "denom_units": [ { - denom: 'atenet', - exponent: 0 + "denom": "atenet", + "exponent": 0 }, { - denom: 'tenet', - exponent: 18 + "denom": "tenet", + "exponent": 18 } ], - base: 'atenet', - name: 'Tenet', - display: 'tenet', - symbol: 'TENET', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.svg' + "base": "atenet", + "name": "Tenet", + "display": "tenet", + "symbol": "TENET", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.svg" }, - coingecko_id: 'tenet-1b000f7b-59cb-4e06-89ce-d62b32d362b9', - images: [ + "coingecko_id": "tenet-1b000f7b-59cb-4e06-89ce-d62b32d362b9", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'teritori', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "teritori", + "assets": [ { - description: 'The native token of Teritori', - denom_units: [ + "description": "The native token of Teritori", + "denom_units": [ { - denom: 'utori', - exponent: 0 + "denom": "utori", + "exponent": 0 }, { - denom: 'tori', - exponent: 6 + "denom": "tori", + "exponent": 6 } ], - base: 'utori', - name: 'Teritori', - display: 'tori', - symbol: 'TORI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + "base": "utori", + "name": "Teritori", + "display": "tori", + "symbol": "TORI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg" }, - coingecko_id: 'teritori', - images: [ + "coingecko_id": "teritori", + "images": [ { - image_sync: { - chain_name: 'teritori', - base_denom: 'utori' + "image_sync": { + "chain_name": "teritori", + "base_denom": "utori" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg" } ] }, { - description: 'The native token of Osmosis', - denom_units: [ + "description": "The native token of Osmosis", + "denom_units": [ { - denom: - 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', - exponent: 0 + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "exponent": 0 }, { - denom: 'osmo', - exponent: 6 + "denom": "osmo", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', - name: 'Osmosis', - display: 'osmo', - symbol: 'OSMO', - traces: [ + "type_asset": "ics20", + "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: 'uosmo', - channel_id: 'channel-362' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "uosmo", + "channel_id": "channel-362" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/uosmo' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/uosmo" } } ], - 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' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" }, - coingecko_id: 'osmosis', - keywords: ['dex', 'staking'], - images: [ + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], + "images": [ { - image_sync: { - chain_name: 'osmosis', - base_denom: 'uosmo' + "image_sync": { + "chain_name": "osmosis", + "base_denom": "uosmo" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E', - exponent: 0, - aliases: ['uatom'] + "denom": "ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E", + "exponent": 0, + "aliases": [ + "uatom" + ] }, { - denom: 'atom', - exponent: 6 + "denom": "atom", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E', - name: 'Cosmos Hub Atom', - display: 'atom', - symbol: 'ATOM', - traces: [ + "type_asset": "ics20", + "base": "ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'cosmoshub', - base_denom: 'uatom', - channel_id: 'channel-431' + "type": "ibc", + "counterparty": { + "chain_name": "cosmoshub", + "base_denom": "uatom", + "channel_id": "channel-431" }, - chain: { - channel_id: 'channel-10', - path: 'transfer/channel-10/uatom' + "chain": { + "channel_id": "channel-10", + "path": "transfer/channel-10/uatom" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'cosmoshub', - base_denom: 'uatom' + "image_sync": { + "chain_name": "cosmoshub", + "base_denom": "uatom" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } }, { - description: - 'The native staking and governance token of the Kujira chain.', - denom_units: [ + "description": "The native staking and governance token of the Kujira chain.", + "denom_units": [ { - denom: - 'ibc/1FECA3491D88F4AD24DE0948ED96718CA6D93F6730CEE7708E621B953594BB5E', - exponent: 0 + "denom": "ibc/1FECA3491D88F4AD24DE0948ED96718CA6D93F6730CEE7708E621B953594BB5E", + "exponent": 0 }, { - denom: 'kuji', - exponent: 6 + "denom": "kuji", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ukuji', - name: 'Kujira', - display: 'kuji', - symbol: 'KUJI', - traces: [ + "type_asset": "ics20", + "base": "ukuji", + "name": "Kujira", + "display": "kuji", + "symbol": "KUJI", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'kujira', - base_denom: 'ukuji', - channel_id: 'channel-89' + "type": "ibc", + "counterparty": { + "chain_name": "kujira", + "base_denom": "ukuji", + "channel_id": "channel-89" }, - chain: { - channel_id: 'channel-30', - path: 'transfer/channel-30/ukuji' + "chain": { + "channel_id": "channel-30", + "path": "transfer/channel-30/ukuji" } } ], - coingecko_id: 'kujira', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + "coingecko_id": "kujira", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" }, - images: [ + "images": [ { - image_sync: { - chain_name: 'kujira', - base_denom: 'ukuji' + "image_sync": { + "chain_name": "kujira", + "base_denom": "ukuji" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'terpnetwork', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "terpnetwork", + "assets": [ { - description: - "Terp Token (TERP) is the Terp Network's native utility token, used as the primary means to govern & secure the blockchain.", - denom_units: [ + "description": "Terp Token (TERP) is the Terp Network's native utility token, used as the primary means to govern & secure the blockchain.", + "denom_units": [ { - denom: 'uterp', - exponent: 0 + "denom": "uterp", + "exponent": 0 }, { - denom: 'terp', - exponent: 6 + "denom": "terp", + "exponent": 6 } ], - base: 'uterp', - name: 'Terp Network Native Token', - display: 'terp', - symbol: 'TERP', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png' + "base": "uterp", + "name": "Terp Network Native Token", + "display": "terp", + "symbol": "TERP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png" } ] }, { - description: - "Thiol Gas Token (Thiols) is the Terp Network's native utility token, used as the primary means to govern, secure the blockchain & incentivize participants.", - denom_units: [ + "description": "Thiol Gas Token (Thiols) is the Terp Network's native utility token, used as the primary means to govern, secure the blockchain & incentivize participants.", + "denom_units": [ { - denom: 'uthiol', - exponent: 0 + "denom": "uthiol", + "exponent": 0 }, { - denom: 'thiol', - exponent: 6 + "denom": "thiol", + "exponent": 6 } ], - base: 'uthiol', - name: 'Thiol Terp Gas Token', - display: 'thiol', - symbol: 'THIOL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png' + "base": "uthiol", + "name": "Thiol Terp Gas Token", + "display": "thiol", + "symbol": "THIOL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" } ] } ] }, { - $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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + "base": "uluna", + "name": "Luna Classic", + "display": "luna", + "symbol": "LUNC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg" }, - coingecko_id: 'terra-luna', - images: [ + "coingecko_id": "terra-luna", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + "base": "uusd", + "name": "TerraClassicUSD", + "display": "ust", + "symbol": "USTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg" }, - coingecko_id: 'terrausd', - images: [ + "coingecko_id": "terrausd", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + "base": "ukrw", + "name": "TerraClassicKRW", + "display": "krt", + "symbol": "KRTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg" }, - coingecko_id: 'terrakrw', - images: [ + "coingecko_id": "terrakrw", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg" } ] }, { - 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', - images: [ + "coingecko_id": "white-whale", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whale.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whale.png" } ] }, { - 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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bluna.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/beth.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aust.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/anc.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mir.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maapl.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mabnb.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamc.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamd.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamzn.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/markk.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mbaba.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mbtc.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mcoin.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mdis.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mdot.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/meth.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mfb.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mglxy.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgme.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgoogl.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgs.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mhood.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miau.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miau.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mjnj.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mko.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mmsft.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnflx.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnio.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnke.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnvda.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mpypl.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mqqq.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msbux.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mslv.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mspy.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msq.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mtsla.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mtwtr.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/muso.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mvixy.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mvixy.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lota.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dph.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mine.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bpsidp-24m.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/spec.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/loop.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/loopr.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stt.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twd.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xtra.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miaw.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/psi.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nluna.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/neth.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnluna.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cneth.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/navax.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/natom.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vkr.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orion.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tland.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vust.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eth.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wbtc.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sol.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maticet.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bnb.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cake.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/link.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sushi.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/uni.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtet.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcet.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kuji.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/skuji.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wsteth.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wstsol.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wsbsol.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ldo.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/webeth.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stluna.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/btl.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lunax.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luni.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ply.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfloki.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tftic.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfticii.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfticiii.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/moon.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xastro.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/halo.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pug.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orne.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tns.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xrune.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/alot.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sity.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/glow.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/apollo.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/abr.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/prism.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whsail.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whgsail.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xprism.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ctx.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cluna.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pluna.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/yluna.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/atlo.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/local.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luv.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/robo.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luart.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mars.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xmars.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ceres.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wasavax.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mint.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sd.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xsd.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/paxg.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whdao.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/link.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sayve.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bro.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bbro.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sst.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/atlas.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/audio.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/avax.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bat.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/busdbs.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dai.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maticpo.png' + "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', - 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", + "display": "mimet", + "symbol": "MIMet", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mimet.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mimet.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ray.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sbr.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/shib.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/srmso.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcav.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcbs.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcpo.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcso.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtav.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtbs.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtso.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gohm.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msol.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/steth.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lct.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/batom.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/webatom.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wcoin.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lctfancard.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kntc.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kust.svg' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/steak.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cst.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cstfancard.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nwld.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/fury.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rct.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vitc.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sb.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/toad.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orionastro.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/retro.png' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tnd.png' + "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" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stnd.svg' + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nwt.png' + "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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.svg' + "base": "uaud", + "display": "aut", + "name": "TerraClassicAUD", + "symbol": "AUTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.png', - 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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.svg' + "base": "ucad", + "display": "cat", + "name": "TerraClassicCAD", + "symbol": "CATC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.png', - 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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.svg' + "base": "uchf", + "display": "cht", + "name": "TerraClassicCHF", + "symbol": "CHTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.svg' + "base": "ucny", + "display": "cnt", + "name": "TerraClassicCNY", + "symbol": "CNTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.svg' + "base": "udkk", + "display": "dkt", + "name": "TerraClassicDKK", + "symbol": "DKTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.svg' + "base": "ueur", + "display": "eut", + "name": "TerraClassicEUR", + "symbol": "EUTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.svg' + "base": "ugbp", + "display": "gbt", + "name": "TerraClassicGBP", + "symbol": "GBTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.svg' + "base": "uhkd", + "display": "hkt", + "name": "TerraClassicHKD", + "symbol": "HKTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.svg' + "base": "uidr", + "display": "idt", + "name": "TerraClassicIDR", + "symbol": "IDTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.svg' + "base": "uinr", + "display": "int", + "name": "TerraClassicINR", + "symbol": "INTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.png', - 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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.svg' + "base": "ujpy", + "display": "jpt", + "name": "TerraClassicJPY", + "symbol": "JPTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.svg' + "base": "umnt", + "display": "mnt", + "name": "TerraClassicMNT", + "symbol": "MNTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.svg' + "base": "umyr", + "display": "myt", + "name": "TerraClassicMYR", + "symbol": "MYTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.png', - 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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.svg' + "base": "unok", + "display": "not", + "name": "TerraClassicNOK", + "symbol": "NOTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.png', - 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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.svg' + "base": "uphp", + "display": "pht", + "name": "TerraClassicPHP", + "symbol": "PHTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.svg' + "base": "usdr", + "display": "sdt", + "name": "TerraClassicSDR", + "symbol": "SDTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.svg' + "base": "usek", + "display": "set", + "name": "TerraClassicSEK", + "symbol": "SETC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.svg' + "base": "usgd", + "display": "sgt", + "name": "TerraClassicSGD", + "symbol": "SGTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.png', - 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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.svg' + "base": "uthb", + "display": "tht", + "name": "TerraClassicTHB", + "symbol": "THTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.svg" } ] }, { - 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: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.svg' + "base": "utwd", + "display": "twt", + "name": "TerraClassicTWD", + "symbol": "TWTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.svg" } ] }, { - 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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/neb.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/neb.png" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'cw20:terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00', - exponent: 0 + "denom": "cw20:terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00", + "exponent": 0 }, { - denom: 'trit', - exponent: 6 + "denom": "trit", + "exponent": 6 } ], - type_asset: 'cw20', - address: - 'terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00', - base: 'cw20:terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00', - name: 'Terra Tritium Token', - display: 'trit', - symbol: 'TRIT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/trit.png' + "type_asset": "cw20", + "address": "terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00", + "base": "cw20:terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00", + "name": "Terra Tritium Token", + "display": "trit", + "symbol": "TRIT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/trit.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/trit.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/trit.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/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + "base": "uluna", + "name": "Luna", + "display": "luna", + "symbol": "LUNA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" }, - coingecko_id: 'terra-luna-2', - images: [ + "coingecko_id": "terra-luna-2", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" } ] }, { - description: - 'Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.', - denom_units: [ + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "denom_units": [ { - denom: - 'cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26', - exponent: 0 + "denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "exponent": 0 }, { - denom: 'astro', - exponent: 6 + "denom": "astro", + "exponent": 6 } ], - type_asset: 'cw20', - address: - 'terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26', - base: 'cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26', - name: 'Astroport', - display: 'astro', - symbol: 'ASTRO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' + "type_asset": "cw20", + "address": "terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "base": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "name": "Astroport", + "display": "astro", + "symbol": "ASTRO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png" }, - coingecko_id: 'astroport-fi', - images: [ + "coingecko_id": "astroport-fi", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png" } ] }, { - description: - 'Dinheiros is the reserve currency of dioalma.protocol, an undivisible and rare token.', - denom_units: [ + "description": "Dinheiros is the reserve currency of dioalma.protocol, an undivisible and rare token.", + "denom_units": [ { - denom: - 'cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k', - exponent: 0 + "denom": "cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k", + "exponent": 0 }, { - denom: 'Dinheiros', - exponent: 0 + "denom": "Dinheiros", + "exponent": 0 } ], - type_asset: 'cw20', - address: - 'terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k', - base: 'cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k', - name: 'dinheiro', - display: 'Dinheiros', - symbol: 'DINHEIROS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Dinheiros.png' + "type_asset": "cw20", + "address": "terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k", + "base": "cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k", + "name": "dinheiro", + "display": "Dinheiros", + "symbol": "DINHEIROS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Dinheiros.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Dinheiros.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Dinheiros.png" } ] }, { - description: - 'Reis is the king of trading, high volume high liquidity, sibling of Dinheiros, Reis and Alem, a token of dioalma.protocol.', - denom_units: [ + "description": "Reis is the king of trading, high volume high liquidity, sibling of Dinheiros, Reis and Alem, a token of dioalma.protocol.", + "denom_units": [ { - denom: - 'cw20:terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8', - exponent: 0 + "denom": "cw20:terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8", + "exponent": 0 }, { - denom: 'Reis', - exponent: 6 + "denom": "Reis", + "exponent": 6 } ], - type_asset: 'cw20', - address: - 'terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8', - base: 'cw20:terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8', - name: 'real', - display: 'Reis', - symbol: 'REIS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Reis.png' + "type_asset": "cw20", + "address": "terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8", + "base": "cw20:terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8", + "name": "real", + "display": "Reis", + "symbol": "REIS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Reis.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Reis.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Reis.png" } ] }, { - description: - 'Escudos is the everyday currency of dioalma.protocol, good to send money back and foward.', - denom_units: [ + "description": "Escudos is the everyday currency of dioalma.protocol, good to send money back and foward.", + "denom_units": [ { - denom: - 'cw20:terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg', - exponent: 0 + "denom": "cw20:terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg", + "exponent": 0 }, { - denom: 'Escudos', - exponent: 6 + "denom": "Escudos", + "exponent": 6 } ], - type_asset: 'cw20', - address: - 'terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg', - base: 'cw20:terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg', - name: 'escudo', - display: 'Escudos', - symbol: 'ESCUDOS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Escudos.png' + "type_asset": "cw20", + "address": "terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg", + "base": "cw20:terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg", + "name": "escudo", + "display": "Escudos", + "symbol": "ESCUDOS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Escudos.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Escudos.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Escudos.png" } ] }, { - description: - 'Alem is a local currency for the region of Alentejo in Portugal, sibling of Dinheiros, Reis and Alem, a token of dioalma.protocol.', - denom_units: [ + "description": "Alem is a local currency for the region of Alentejo in Portugal, sibling of Dinheiros, Reis and Alem, a token of dioalma.protocol.", + "denom_units": [ { - denom: - 'cw20:terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q', - exponent: 0 + "denom": "cw20:terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q", + "exponent": 0 }, { - denom: 'Alem', - exponent: 6 + "denom": "Alem", + "exponent": 6 } ], - type_asset: 'cw20', - address: - 'terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q', - base: 'cw20:terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q', - name: 'alentejo.money', - display: 'Alem', - symbol: 'ALEM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Alem.png' + "type_asset": "cw20", + "address": "terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q", + "base": "cw20:terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q", + "name": "alentejo.money", + "display": "Alem", + "symbol": "ALEM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Alem.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Alem.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Alem.png" } ] }, { - description: 'ERIS liquid staked LUNA.', - type_asset: 'cw20', - address: - 'terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct', - denom_units: [ + "description": "ERIS liquid staked LUNA.", + "type_asset": "cw20", + "address": "terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "denom_units": [ { - denom: - 'cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct', - exponent: 0 + "denom": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "exponent": 0 }, { - denom: 'ampluna', - exponent: 6 + "denom": "ampluna", + "exponent": 6 } ], - base: 'cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct', - name: 'ERIS Amplified LUNA', - display: 'ampluna', - symbol: 'ampLUNA', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.svg' + "base": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "name": "ERIS Amplified LUNA", + "display": "ampluna", + "symbol": "ampLUNA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.svg" }, - coingecko_id: 'eris-amplified-luna', - images: [ + "coingecko_id": "eris-amplified-luna", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.svg" } ] }, { - description: - 'Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling', - type_asset: 'cw20', - address: - 'terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv', - denom_units: [ + "description": "Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling", + "type_asset": "cw20", + "address": "terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "denom_units": [ { - denom: - 'cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv', - exponent: 0 + "denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "exponent": 0 }, { - denom: 'roar', - exponent: 6 + "denom": "roar", + "exponent": 6 } ], - base: 'cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv', - name: 'Lion DAO', - display: 'roar', - symbol: 'ROAR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + "base": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "name": "Lion DAO", + "display": "roar", + "symbol": "ROAR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png" }, - coingecko_id: 'lion-dao', - images: [ + "coingecko_id": "lion-dao", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png" } ] }, { - description: - 'GEM DAO, building a decentralized, community-owned, low-supply store of value', - type_asset: 'cw20', - address: - 'terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv', - denom_units: [ + "description": "GEM DAO, building a decentralized, community-owned, low-supply store of value", + "type_asset": "cw20", + "address": "terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", + "denom_units": [ { - denom: - 'cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv', - exponent: 0 + "denom": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", + "exponent": 0 }, { - denom: 'gem', - exponent: 6 + "denom": "gem", + "exponent": 6 } ], - base: 'cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv', - name: 'GEM DAO', - display: 'gem', - symbol: 'GEM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png' + "base": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", + "name": "GEM DAO", + "display": "gem", + "symbol": "GEM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png" } ] }, { - description: 'Lion Cub DAO is a useless meme community DAO on Terra', - type_asset: 'cw20', - address: - 'terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t', - denom_units: [ + "description": "Lion Cub DAO is a useless meme community DAO on Terra", + "type_asset": "cw20", + "address": "terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "denom_units": [ { - denom: - 'cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t', - exponent: 0 + "denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "exponent": 0 }, { - denom: 'cub', - exponent: 6 + "denom": "cub", + "exponent": 6 } ], - base: 'cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t', - name: 'Lion Cub DAO', - display: 'cub', - symbol: 'CUB', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + "base": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "name": "Lion Cub DAO", + "display": "cub", + "symbol": "CUB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png" } ] }, { - description: 'BLUE CUB DAO is a community DAO on Terra', - type_asset: 'cw20', - address: - 'terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584', - denom_units: [ + "description": "BLUE CUB DAO is a community DAO on Terra", + "type_asset": "cw20", + "address": "terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", + "denom_units": [ { - denom: - 'cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584', - exponent: 0 + "denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", + "exponent": 0 }, { - denom: 'blue', - exponent: 6 + "denom": "blue", + "exponent": 6 } ], - base: 'cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584', - name: 'BLUE CUB DAO', - display: 'blue', - symbol: 'BLUE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + "base": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", + "name": "BLUE CUB DAO", + "display": "blue", + "symbol": "BLUE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png" } ] }, { - description: 'Liquidity token, NFT, HARVEST FOR VALUE', - type_asset: 'cw20', - address: - 'terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn', - denom_units: [ + "description": "Liquidity token, NFT, HARVEST FOR VALUE", + "type_asset": "cw20", + "address": "terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn", + "denom_units": [ { - denom: - 'cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn', - exponent: 0 + "denom": "cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn", + "exponent": 0 }, { - denom: 'xxx', - exponent: 10 + "denom": "xxx", + "exponent": 10 } ], - base: 'cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn', - name: 'TheOnlyOne', - display: 'xxx', - symbol: 'xxx', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xxx3.png' + "base": "cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn", + "name": "TheOnlyOne", + "display": "xxx", + "symbol": "xxx", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xxx3.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xxx3.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xxx3.png" } ] }, { - description: - 'The GraveDigger is the Liquid Staking Product of BackBone Labs. It will have its own platform. Its liquid staking derivative (LSD) is boneLUNA.', - type_asset: 'cw20', - address: - 'terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml', - denom_units: [ + "description": "The GraveDigger is the Liquid Staking Product of BackBone Labs. It will have its own platform. Its liquid staking derivative (LSD) is boneLUNA.", + "type_asset": "cw20", + "address": "terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "denom_units": [ { - denom: - 'cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml', - exponent: 0 + "denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "exponent": 0 }, { - denom: 'bluna', - exponent: 6 + "denom": "bluna", + "exponent": 6 } ], - base: 'cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml', - name: 'boneLuna', - display: 'bluna', - symbol: 'bLUNA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png' + "base": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "name": "boneLuna", + "display": "bluna", + "symbol": "bLUNA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" } ] }, { - description: - 'Sayve is a revolutionary language learning app in the Web3 era that combines gamification, blockchain technology, and a Metaverse experience to motivate users to learn languages while earning rewards.', - type_asset: 'cw20', - address: - 'terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3', - denom_units: [ + "description": "Sayve is a revolutionary language learning app in the Web3 era that combines gamification, blockchain technology, and a Metaverse experience to motivate users to learn languages while earning rewards.", + "type_asset": "cw20", + "address": "terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", + "denom_units": [ { - denom: - 'cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3', - exponent: 0 + "denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", + "exponent": 0 }, { - denom: 'sayve', - exponent: 6 + "denom": "sayve", + "exponent": 6 } ], - base: 'cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3', - name: 'sayve', - display: 'sayve', - symbol: 'SAYVE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg' + "base": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", + "name": "sayve", + "display": "sayve", + "symbol": "SAYVE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg" } ] }, { - description: 'ERIS Alliance Staked ampWHALE on Terra', - denom_units: [ + "description": "ERIS Alliance Staked ampWHALE on Terra", + "denom_units": [ { - denom: - 'factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt', - exponent: 0 + "denom": "factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt", + "exponent": 0 }, { - denom: 'ampWHALEt', - exponent: 6 + "denom": "ampWHALEt", + "exponent": 6 } ], - base: 'factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt', - name: 'ERIS Alliance Staked ampWHALE', - display: 'ampWHALEt', - symbol: 'ampWHALEt', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampwhalet.svg' + "base": "factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt", + "name": "ERIS Alliance Staked ampWHALE", + "display": "ampWHALEt", + "symbol": "ampWHALEt", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampwhalet.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampwhalet.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampwhalet.svg" } ] }, { - description: 'ERIS Alliance Staked boneWHALE on Terra', - denom_units: [ + "description": "ERIS Alliance Staked boneWHALE on Terra", + "denom_units": [ { - denom: - 'factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt', - exponent: 0 + "denom": "factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt", + "exponent": 0 }, { - denom: 'boneWHALEt', - exponent: 6 + "denom": "boneWHALEt", + "exponent": 6 } ], - base: 'factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt', - name: 'ERIS Alliance Staked boneWHALE', - display: 'boneWHALEt', - symbol: 'boneWHALEt', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bonewhalet.svg' + "base": "factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt", + "name": "ERIS Alliance Staked boneWHALE", + "display": "boneWHALEt", + "symbol": "boneWHALEt", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bonewhalet.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bonewhalet.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bonewhalet.svg" } ] }, { - description: 'ERIS Liquid Enterprise Staked ROAR', - denom_units: [ + "description": "ERIS Liquid Enterprise Staked ROAR", + "denom_units": [ { - denom: - 'factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR', - exponent: 0 + "denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", + "exponent": 0 }, { - denom: 'ampROAR', - exponent: 6 + "denom": "ampROAR", + "exponent": 6 } ], - base: 'factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR', - name: 'ERIS Amplified ROAR', - display: 'ampROAR', - symbol: 'ampROAR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png' + "base": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", + "name": "ERIS Amplified ROAR", + "display": "ampROAR", + "symbol": "ampROAR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png" } ] }, { - description: 'Nico Dao Money', - type_asset: 'cw20', - address: - 'terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3', - denom_units: [ + "description": "Nico Dao Money", + "type_asset": "cw20", + "address": "terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3", + "denom_units": [ { - denom: - 'cw20:terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3', - exponent: 0 + "denom": "cw20:terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3", + "exponent": 0 }, { - denom: 'nico', - exponent: 18 + "denom": "nico", + "exponent": 18 } ], - base: 'cw20:terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3', - name: 'nico', - display: 'nico', - symbol: 'NICO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/nicodao.png' + "base": "cw20:terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3", + "name": "nico", + "display": "nico", + "symbol": "NICO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/nicodao.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/nicodao.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/nicodao.png" } ] }, { - description: - 'Sailing the Seas DAO is a community DAO built on Enterprise on Terra', - type_asset: 'cw20', - address: - 'terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala', - denom_units: [ + "description": "Sailing the Seas DAO is a community DAO built on Enterprise on Terra", + "type_asset": "cw20", + "address": "terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala", + "denom_units": [ { - denom: - 'cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala', - exponent: 0 + "denom": "cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala", + "exponent": 0 }, { - denom: 'seas', - exponent: 6 + "denom": "seas", + "exponent": 6 } ], - base: 'cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala', - name: 'Sailing The SeaS DAO', - display: 'seas', - symbol: 'SEAS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/SEAS.png' + "base": "cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala", + "name": "Sailing The SeaS DAO", + "display": "seas", + "symbol": "SEAS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/SEAS.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/SEAS.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/SEAS.png" } ] }, { - description: 'A community DAO built on Enterprise', - type_asset: 'cw20', - address: - 'terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v', - denom_units: [ + "description": "A community DAO built on Enterprise", + "type_asset": "cw20", + "address": "terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v", + "denom_units": [ { - denom: - 'cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v', - exponent: 0 + "denom": "cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v", + "exponent": 0 }, { - denom: 'bitz', - exponent: 6 + "denom": "bitz", + "exponent": 6 } ], - base: 'cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v', - name: 'BitzDAO', - display: 'bitz', - symbol: 'BITZ', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/BITZ.png' + "base": "cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v", + "name": "BitzDAO", + "display": "bitz", + "symbol": "BITZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/BITZ.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/BITZ.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/BITZ.png" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C', - exponent: 0, - aliases: ['wstETH'] + "denom": "ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C", + "exponent": 0, + "aliases": [ + "wstETH" + ] }, { - denom: - 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH', - exponent: 18 + "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "exponent": 18 } ], - type_asset: 'ics20', - base: 'ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C', - name: 'Wrapped Lido Staked Ether', - display: 'wstETH', - symbol: 'wstETH', - traces: [ + "type_asset": "ics20", + "base": "ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C", + "name": "Wrapped Lido Staked Ether", + "display": "wstETH", + "symbol": "wstETH", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'neutron', - base_denom: - 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH', - channel_id: 'channel-25' + "type": "ibc", + "counterparty": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "channel_id": "channel-25" }, - chain: { - channel_id: 'channel-229', - path: 'transfer/channel-229/factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH' + "chain": { + "channel_id": "channel-229", + "path": "transfer/channel-229/factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'neutron', - base_denom: - 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH' + "image_sync": { + "chain_name": "neutron", + "base_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg" } }, { - description: 'SEUL DAO', - type_asset: 'cw20', - address: - 'terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l', - denom_units: [ + "description": "SEUL DAO", + "type_asset": "cw20", + "address": "terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l", + "denom_units": [ { - denom: - 'cw20:terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l', - exponent: 0 + "denom": "cw20:terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l", + "exponent": 0 }, { - denom: 'seul', - exponent: 6 + "denom": "seul", + "exponent": 6 } ], - base: 'cw20:terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l', - name: 'seul', - display: 'seul', - symbol: 'SEUL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/seul.png' + "base": "cw20:terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l", + "name": "seul", + "display": "seul", + "symbol": "SEUL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/seul.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/seul.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/seul.png" } ] }, { - description: 'SEUL DAO', - type_asset: 'cw20', - address: - 'terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5', - denom_units: [ + "description": "SEUL DAO", + "type_asset": "cw20", + "address": "terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5", + "denom_units": [ { - denom: - 'cw20:terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5', - exponent: 0 + "denom": "cw20:terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5", + "exponent": 0 }, { - denom: 'xseul', - exponent: 6 + "denom": "xseul", + "exponent": 6 } ], - base: 'cw20:terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5', - name: 'xseul', - display: 'xseul', - symbol: 'xSEUL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xseul.png' + "base": "cw20:terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5", + "name": "xseul", + "display": "xseul", + "symbol": "xSEUL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xseul.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xseul.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xseul.png" } ] }, { - description: 'ITO DAO', - type_asset: 'cw20', - address: - 'terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s', - denom_units: [ + "description": "ITO DAO", + "type_asset": "cw20", + "address": "terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s", + "denom_units": [ { - denom: - 'cw20:terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s', - exponent: 0 + "denom": "cw20:terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s", + "exponent": 0 }, { - denom: 'ito', - exponent: 6 + "denom": "ito", + "exponent": 6 } ], - base: 'cw20:terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s', - name: 'ito', - display: 'ito', - symbol: 'ITO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/I.png' + "base": "cw20:terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s", + "name": "ito", + "display": "ito", + "symbol": "ITO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/I.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/I.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/I.png" } ] }, { - description: 'Chris Armani Token', - type_asset: 'cw20', - address: - 'terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8', - denom_units: [ + "description": "Chris Armani Token", + "type_asset": "cw20", + "address": "terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8", + "denom_units": [ { - denom: - 'cw20:terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8', - exponent: 0 + "denom": "cw20:terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8", + "exponent": 0 }, { - denom: 'ARMANI', - exponent: 6 + "denom": "ARMANI", + "exponent": 6 } ], - base: 'cw20:terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8', - name: 'ARMANI', - display: 'ARMANI', - symbol: 'ARMANI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/armani.png' + "base": "cw20:terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8", + "name": "ARMANI", + "display": "ARMANI", + "symbol": "ARMANI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/armani.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/armani.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/armani.png" } ] }, { - description: 'useless meme coin', - type_asset: 'cw20', - address: - 'terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun', - denom_units: [ + "description": "useless meme coin", + "type_asset": "cw20", + "address": "terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun", + "denom_units": [ { - denom: - 'cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun', - exponent: 0 + "denom": "cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun", + "exponent": 0 }, { - denom: 'DROGO', - exponent: 6 + "denom": "DROGO", + "exponent": 6 } ], - base: 'cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun', - name: 'DROGO', - display: 'DROGO', - symbol: 'DROGO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/drogo.png' + "base": "cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun", + "name": "DROGO", + "display": "DROGO", + "symbol": "DROGO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/drogo.png" } }, { - description: 'ado the flower of night', - type_asset: 'cw20', - address: - 'terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu', - denom_units: [ + "description": "ado the flower of night", + "type_asset": "cw20", + "address": "terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu", + "denom_units": [ { - denom: - 'cw20:terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu', - exponent: 0 + "denom": "cw20:terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu", + "exponent": 0 }, { - denom: 'ADO', - exponent: 6 + "denom": "ADO", + "exponent": 6 } ], - base: 'cw20:terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu', - name: 'ADO', - display: 'ADO', - symbol: 'ADO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ADO.png' + "base": "cw20:terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu", + "name": "ADO", + "display": "ADO", + "symbol": "ADO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ADO.png" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'avalanchetestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "avalanchetestnet", + "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', - images: [ + "coingecko_id": "avalanche-2", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg" } ] }, { - description: - 'The wrapped ERC-20 representation of AVAX, the native token of Avalanche.', - type_asset: 'erc20', - address: '0xd00ae08403B9bbb9124bB305C09058E32C39A48c', - denom_units: [ + "description": "The wrapped ERC-20 representation of AVAX, the native token of Avalanche.", + "type_asset": "erc20", + "address": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c", + "denom_units": [ { - denom: '0xd00ae08403B9bbb9124bB305C09058E32C39A48c', - exponent: 0, - aliases: ['wavax-wei'] + "denom": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c", + "exponent": 0, + "aliases": [ + "wavax-wei" + ] }, { - denom: 'wavax', - exponent: 18 + "denom": "wavax", + "exponent": 18 } ], - base: '0xd00ae08403B9bbb9124bB305C09058E32C39A48c', - name: 'Wrapped AVAX', - display: 'wavax', - symbol: 'WAVAX', - traces: [ + "base": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c", + "name": "Wrapped AVAX", + "display": "wavax", + "symbol": "WAVAX", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'avalanchetestnet', - base_denom: 'wei' + "type": "wrapped", + "counterparty": { + "chain_name": "avalanchetestnet", + "base_denom": "wei" }, - provider: 'Avalanche' + "provider": "Avalanche" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" }, - coingecko_id: 'wrapped-avax', - images: [ + "coingecko_id": "wrapped-avax", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.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: '0x57F1c63497AEe0bE305B8852b354CEc793da43bB', - 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": "0x57F1c63497AEe0bE305B8852b354CEc793da43bB", + "denom_units": [ { - denom: '0x57F1c63497AEe0bE305B8852b354CEc793da43bB', - exponent: 0, - aliases: ['uusdc'] + "denom": "0x57F1c63497AEe0bE305B8852b354CEc793da43bB", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'axlusdc', - exponent: 6 + "denom": "axlusdc", + "exponent": 6 } ], - base: '0x57F1c63497AEe0bE305B8852b354CEc793da43bB', - name: 'Axelar Wrapped USDC', - display: 'axlusdc', - symbol: 'axlUSDC', - traces: [ + "base": "0x57F1c63497AEe0bE305B8852b354CEc793da43bB", + "name": "Axelar Wrapped USDC", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelartestnet', - base_denom: 'uusdc' + "type": "bridge", + "counterparty": { + "chain_name": "axelartestnet", + "base_denom": "uusdc" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'binancesmartchaintestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "binancesmartchaintestnet", + "assets": [ { - description: - 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.', - denom_units: [ + "description": "BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.", + "denom_units": [ { - denom: 'wei', - exponent: 0 + "denom": "wei", + "exponent": 0 }, { - denom: 'bnb', - exponent: 18 + "denom": "bnb", + "exponent": 18 } ], - base: 'wei', - name: 'Binance Coin', - display: 'bnb', - symbol: 'BNB', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + "base": "wei", + "name": "Binance Coin", + "display": "bnb", + "symbol": "BNB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" }, - coingecko_id: 'binancecoin', - images: [ + "coingecko_id": "binancecoin", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" } ] }, { - description: - 'Wrapped BNB. As the native coin of Binance Chain, BNB has multiple use cases: fueling transactions on the Chain, paying for transaction fees on Binance Exchange, making in-store payments, and many more.', - denom_units: [ + "description": "Wrapped BNB. As the native coin of Binance Chain, BNB has multiple use cases: fueling transactions on the Chain, paying for transaction fees on Binance Exchange, making in-store payments, and many more.", + "denom_units": [ { - denom: '0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd', - exponent: 0 + "denom": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd", + "exponent": 0 }, { - denom: 'wbnb', - exponent: 18 + "denom": "wbnb", + "exponent": 18 } ], - type_asset: 'erc20', - address: '0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd', - base: '0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd', - name: 'Wrapped BNB', - display: 'wbnb', - symbol: 'WBNB', - traces: [ + "type_asset": "erc20", + "address": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd", + "base": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'binancesmartchaintestnet', - base_denom: 'wei' + "type": "wrapped", + "counterparty": { + "chain_name": "binancesmartchaintestnet", + "base_denom": "wei" }, - chain: { - contract: '0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd' + "chain": { + "contract": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd" }, - provider: 'Binance' + "provider": "Binance" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" }, - coingecko_id: 'wbnb', - images: [ + "coingecko_id": "wbnb", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" } ] }, { - description: - '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: '0xc2fA98faB811B785b81c64Ac875b31CC9E40F9D2', - 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": "0xc2fA98faB811B785b81c64Ac875b31CC9E40F9D2", + "denom_units": [ { - denom: '0xc2fA98faB811B785b81c64Ac875b31CC9E40F9D2', - exponent: 0, - aliases: ['uusdc'] + "denom": "0xc2fA98faB811B785b81c64Ac875b31CC9E40F9D2", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'axlusdc', - exponent: 6 + "denom": "axlusdc", + "exponent": 6 } ], - base: '0xc2fA98faB811B785b81c64Ac875b31CC9E40F9D2', - name: 'Axelar Wrapped USDC', - display: 'axlusdc', - symbol: 'axlUSDC', - traces: [ + "base": "0xc2fA98faB811B785b81c64Ac875b31CC9E40F9D2", + "name": "Axelar Wrapped USDC", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelartestnet', - base_denom: 'uusdc' + "type": "bridge", + "counterparty": { + "chain_name": "axelartestnet", + "base_denom": "uusdc" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'ethereumtestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "ethereumtestnet", + "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', - images: [ + "coingecko_id": "ethereum", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" } ] }, { - description: "wETH is 'wrapped ETH'", - type_asset: 'erc20', - address: '0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6', - denom_units: [ + "description": "wETH is 'wrapped ETH'", + "type_asset": "erc20", + "address": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", + "denom_units": [ { - denom: '0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6', - exponent: 0, - aliases: ['weth-wei'] + "denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", + "exponent": 0, + "aliases": [ + "weth-wei" + ] }, { - denom: 'weth', - exponent: 18 + "denom": "weth", + "exponent": 18 } ], - base: '0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6', - name: 'Wrapped Ether', - display: 'weth', - symbol: 'WETH', - traces: [ + "base": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "WETH", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'ethereumtestnet', - base_denom: 'wei' + "type": "wrapped", + "counterparty": { + "chain_name": "ethereumtestnet", + "base_denom": "wei" }, - provider: 'Ethereum' + "provider": "Ethereum" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" }, - coingecko_id: 'weth', - images: [ + "coingecko_id": "weth", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.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: '0x254d06f33bDc5b8ee05b2ea472107E300226659A', - 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": "0x254d06f33bDc5b8ee05b2ea472107E300226659A", + "denom_units": [ { - denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A', - exponent: 0, - aliases: ['uausdc'] + "denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A", + "exponent": 0, + "aliases": [ + "uausdc" + ] }, { - denom: 'ausdc', - exponent: 6 + "denom": "ausdc", + "exponent": 6 } ], - base: '0x254d06f33bDc5b8ee05b2ea472107E300226659A', - name: 'USD Coin', - display: 'ausdc', - symbol: 'aUSDC', - traces: [ + "base": "0x254d06f33bDc5b8ee05b2ea472107E300226659A", + "name": "USD Coin", + "display": "ausdc", + "symbol": "aUSDC", + "traces": [ { - type: 'synthetic', - counterparty: { - chain_name: 'forex', - base_denom: 'USD' + "type": "synthetic", + "counterparty": { + "chain_name": "forex", + "base_denom": "USD" }, - provider: 'Circle' + "provider": "Circle" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - coingecko_id: 'usd-coin', - images: [ + "coingecko_id": "usd-coin", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'fantomtestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "fantomtestnet", + "assets": [ { - description: - "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", - denom_units: [ + "description": "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", + "denom_units": [ { - denom: 'wei', - exponent: 0 + "denom": "wei", + "exponent": 0 }, { - denom: 'ftm', - exponent: 18 + "denom": "ftm", + "exponent": 18 } ], - base: 'wei', - name: 'Fantom', - display: 'ftm', - symbol: 'FTM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + "base": "wei", + "name": "Fantom", + "display": "ftm", + "symbol": "FTM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" } ] }, { - description: 'ERC20 wrapped version of FTM', - type_asset: 'erc20', - address: '0x812666209b90344Ec8e528375298ab9045c2Bd08', - denom_units: [ + "description": "ERC20 wrapped version of FTM", + "type_asset": "erc20", + "address": "0x812666209b90344Ec8e528375298ab9045c2Bd08", + "denom_units": [ { - denom: '0x812666209b90344Ec8e528375298ab9045c2Bd08', - exponent: 0 + "denom": "0x812666209b90344Ec8e528375298ab9045c2Bd08", + "exponent": 0 }, { - denom: 'wftm', - exponent: 18 + "denom": "wftm", + "exponent": 18 } ], - base: '0x812666209b90344Ec8e528375298ab9045c2Bd08', - name: 'Wrapped Fantom', - display: 'wftm', - symbol: 'WFTM', - traces: [ + "base": "0x812666209b90344Ec8e528375298ab9045c2Bd08", + "name": "Wrapped Fantom", + "display": "wftm", + "symbol": "WFTM", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'fantomtestnet', - base_denom: 'wei' + "type": "wrapped", + "counterparty": { + "chain_name": "fantomtestnet", + "base_denom": "wei" }, - chain: { - contract: '0x812666209b90344Ec8e528375298ab9045c2Bd08' + "chain": { + "contract": "0x812666209b90344Ec8e528375298ab9045c2Bd08" }, - provider: 'Fantom' + "provider": "Fantom" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'fantomtestnet', - base_denom: 'wei' + "image_sync": { + "chain_name": "fantomtestnet", + "base_denom": "wei" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" } } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'moonbeamtestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "moonbeamtestnet", + "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', - images: [ + "coingecko_id": "moonbeam", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" } ] }, { - description: - 'An ERC-20 representation of GLMR, the native token of Moonbeam.', - type_asset: 'erc20', - address: '0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715', - denom_units: [ + "description": "An ERC-20 representation of GLMR, the native token of Moonbeam.", + "type_asset": "erc20", + "address": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715", + "denom_units": [ { - denom: '0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715', - exponent: 0, - aliases: ['wglmr-wei'] + "denom": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715", + "exponent": 0, + "aliases": [ + "wglmr-wei" + ] }, { - denom: 'wglmr', - exponent: 18 + "denom": "wglmr", + "exponent": 18 } ], - base: '0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715', - name: 'Wrapped Moonbeam', - display: 'wglmr', - symbol: 'WGLMR', - traces: [ + "base": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WGLMR", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'moonbeamtestnet', - base_denom: 'Wei' + "type": "wrapped", + "counterparty": { + "chain_name": "moonbeamtestnet", + "base_denom": "Wei" }, - provider: 'Moonbeam' + "provider": "Moonbeam" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" }, - coingecko_id: 'wrapped-moonbeam', - images: [ + "coingecko_id": "wrapped-moonbeam", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.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: '0xD1633F7Fb3d716643125d6415d4177bC36b7186b', - 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": "0xD1633F7Fb3d716643125d6415d4177bC36b7186b", + "denom_units": [ { - denom: '0xD1633F7Fb3d716643125d6415d4177bC36b7186b', - exponent: 0, - aliases: ['uusdc'] + "denom": "0xD1633F7Fb3d716643125d6415d4177bC36b7186b", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'axlusdc', - exponent: 6 + "denom": "axlusdc", + "exponent": 6 } ], - base: '0xD1633F7Fb3d716643125d6415d4177bC36b7186b', - name: 'Axelar Wrapped USD Coin', - display: 'axlusdc', - symbol: 'axlUSDC', - traces: [ + "base": "0xD1633F7Fb3d716643125d6415d4177bC36b7186b", + "name": "Axelar Wrapped USD Coin", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelartestnet', - base_denom: 'uusdc' + "type": "bridge", + "counterparty": { + "chain_name": "axelartestnet", + "base_denom": "uusdc" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'polkadottestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "polkadottestnet", + "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', - images: [ + "coingecko_id": "polkadot", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'polygontestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "polygontestnet", + "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', - images: [ + "coingecko_id": "matic-network", + "images": [ { - 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' + "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" } ] }, { - description: - 'Polygon combines the best of Ethereum and sovereign blockchains into a full-fledged multi-chain system.', - type_asset: 'erc20', - address: '0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889', - denom_units: [ + "description": "Polygon combines the best of Ethereum and sovereign blockchains into a full-fledged multi-chain system.", + "type_asset": "erc20", + "address": "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889", + "denom_units": [ { - denom: '0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889', - exponent: 0, - aliases: ['wmatic-wei'] + "denom": "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889", + "exponent": 0, + "aliases": [ + "wmatic-wei" + ] }, { - denom: 'wmatic', - exponent: 18, - aliases: ['polygon'] + "denom": "wmatic", + "exponent": 18, + "aliases": [ + "polygon" + ] } ], - base: '0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889', - name: 'Wrapped Matic', - display: 'wmatic', - symbol: 'WMATIC', - traces: [ + "base": "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", + "traces": [ { - type: 'wrapped', - counterparty: { - chain_name: 'polygontestnet', - base_denom: 'wei' + "type": "wrapped", + "counterparty": { + "chain_name": "polygontestnet", + "base_denom": "wei" }, - provider: 'Polygon' + "provider": "Polygon" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" }, - coingecko_id: 'wmatic', - images: [ + "coingecko_id": "wmatic", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.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: '0x2c852e740B62308c46DD29B982FBb650D063Bd07', - 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": "0x2c852e740B62308c46DD29B982FBb650D063Bd07", + "denom_units": [ { - denom: '0x2c852e740B62308c46DD29B982FBb650D063Bd07', - exponent: 0, - aliases: ['uusdc'] + "denom": "0x2c852e740B62308c46DD29B982FBb650D063Bd07", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'axlusdc', - exponent: 6 + "denom": "axlusdc", + "exponent": 6 } ], - base: '0x2c852e740B62308c46DD29B982FBb650D063Bd07', - name: 'Axelar Wrapped USD Coin', - display: 'axlusdc', - symbol: 'axlUSDC', - traces: [ + "base": "0x2c852e740B62308c46DD29B982FBb650D063Bd07", + "name": "Axelar Wrapped USD Coin", + "display": "axlusdc", + "symbol": "axlUSDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'axelartestnet', - base_denom: 'uusdc' + "type": "bridge", + "counterparty": { + "chain_name": "axelartestnet", + "base_denom": "uusdc" }, - provider: 'Axelar' + "provider": "Axelar" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'akashtestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "akashtestnet", + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'archwaytestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "archwaytestnet", + "assets": [ { - description: 'The native token of Archway testnetwork', - denom_units: [ + "description": "The native token of Archway testnetwork", + "denom_units": [ { - denom: 'aconst', - exponent: 0 + "denom": "aconst", + "exponent": 0 }, { - denom: 'uconst', - exponent: 12 + "denom": "uconst", + "exponent": 12 }, { - denom: 'const', - exponent: 18 + "denom": "const", + "exponent": 18 } ], - base: 'aconst', - name: 'Archway', - display: 'const', - symbol: 'CONST' + "base": "aconst", + "name": "Archway", + "display": "const", + "symbol": "CONST" } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'arkeonetworktestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "arkeonetworktestnet", + "assets": [ { - description: '', - denom_units: [ + "description": "", + "denom_units": [ { - denom: 'uarkeo', - exponent: 6 + "denom": "uarkeo", + "exponent": 6 } ], - base: 'uarkeo', - display: 'arkeo', - name: 'Arkeo', - symbol: 'ARKEO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/arkeonetworktestnet/images/arkeo.png' + "base": "uarkeo", + "display": "arkeo", + "name": "Arkeo", + "symbol": "ARKEO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/arkeonetworktestnet/images/arkeo.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/arkeonetworktestnet/images/arkeo.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/arkeonetworktestnet/images/arkeo.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'artelatestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "artelatestnet", + "assets": [ { - description: - 'The native EVM, governance and staking token of the Artela Network', - denom_units: [ + "description": "The native EVM, governance and staking token of the Artela Network", + "denom_units": [ { - denom: 'uart', - exponent: 0 + "denom": "uart", + "exponent": 0 }, { - denom: 'art', - exponent: 18 + "denom": "art", + "exponent": 18 } ], - base: 'uart', - name: 'Artela Testnet', - display: 'art', - symbol: 'ART', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/artelatestnet/images/artela.png' + "base": "uart", + "name": "Artela Testnet", + "display": "art", + "symbol": "ART", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/artelatestnet/images/artela.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/artelatestnet/images/artela.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/artelatestnet/images/artela.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'auratestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "auratestnet", + "assets": [ { - description: 'The native token of Aura Test Network', - denom_units: [ + "description": "The native token of Aura Test Network", + "denom_units": [ { - denom: 'ueaura', - exponent: 0 + "denom": "ueaura", + "exponent": 0 }, { - denom: 'eaura', - exponent: 6 + "denom": "eaura", + "exponent": 6 } ], - base: 'ueaura', - name: 'EAura', - display: 'eaura', - symbol: 'EAURA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg' + "base": "ueaura", + "name": "EAura", + "display": "eaura", + "symbol": "EAURA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'axelartestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "axelartestnet", + "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', - images: [ + "coingecko_id": "axelar", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" } ] }, { - description: "Circle's stablecoin on Axelar", - denom_units: [ + "description": "Circle's stablecoin on Axelar", + "denom_units": [ { - denom: 'uausdc', - exponent: 0 + "denom": "uausdc", + "exponent": 0 }, { - denom: 'ausdc', - exponent: 6 + "denom": "ausdc", + "exponent": 6 } ], - base: 'uausdc', - name: 'USD Coin', - display: 'ausdc', - symbol: 'aUSDC', - traces: [ + "base": "uausdc", + "name": "USD Coin", + "display": "ausdc", + "symbol": "aUSDC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereumtestnet', - base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + "type": "bridge", + "counterparty": { + "chain_name": "ethereumtestnet", + "base_denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereumtestnet', - base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + "image_sync": { + "chain_name": "ethereumtestnet", + "base_denom": "0x254d06f33bDc5b8ee05b2ea472107E300226659A" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } }, { - description: 'Wrapped Ether on Axelar', - denom_units: [ + "description": "Wrapped Ether on Axelar", + "denom_units": [ { - denom: 'eth-wei', - exponent: 0 + "denom": "eth-wei", + "exponent": 0 }, { - denom: 'weth', - exponent: 18 + "denom": "weth", + "exponent": 18 } ], - base: 'eth-wei', - name: 'Wrapped Ether', - display: 'weth', - symbol: 'axlWETH', - traces: [ + "base": "eth-wei", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "axlWETH", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'ethereumtestnet', - base_denom: '0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6' + "type": "bridge", + "counterparty": { + "chain_name": "ethereumtestnet", + "base_denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'ethereumtestnet', - base_denom: '0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6' + "image_sync": { + "chain_name": "ethereumtestnet", + "base_denom": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" } }, { - 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: 'WDEV', - traces: [ + "base": "wglmr-wei", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WDEV", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'moonbeamtestnet', - base_denom: '0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715' + "type": "bridge", + "counterparty": { + "chain_name": "moonbeamtestnet", + "base_denom": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'moonbeamtestnet', - base_denom: '0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715' + "image_sync": { + "chain_name": "moonbeamtestnet", + "base_denom": "0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" } }, { - description: 'Wrapped Matic on Axelar', - denom_units: [ + "description": "Wrapped Matic on Axelar", + "denom_units": [ { - denom: 'wmatic-wei', - exponent: 0 + "denom": "wmatic-wei", + "exponent": 0 }, { - denom: 'wmatic', - exponent: 18 + "denom": "wmatic", + "exponent": 18 } ], - base: 'wmatic-wei', - name: 'Wrapped Matic', - display: 'wmatic', - symbol: 'WMATIC', - traces: [ + "base": "wmatic-wei", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'polygontestnet', - base_denom: '0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889' + "type": "bridge", + "counterparty": { + "chain_name": "polygontestnet", + "base_denom": "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'polygontestnet', - base_denom: '0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889' + "image_sync": { + "chain_name": "polygontestnet", + "base_denom": "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" } }, { - description: 'Wrapped BNB on Axelar', - denom_units: [ + "description": "Wrapped BNB on Axelar", + "denom_units": [ { - denom: 'wbnb-wei', - exponent: 0 + "denom": "wbnb-wei", + "exponent": 0 }, { - denom: 'wbnb', - exponent: 18 + "denom": "wbnb", + "exponent": 18 } ], - base: 'wbnb-wei', - name: 'Wrapped BNB', - display: 'wbnb', - symbol: 'WBNB', - traces: [ + "base": "wbnb-wei", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'binancesmartchaintestnet', - base_denom: '0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd' + "type": "bridge", + "counterparty": { + "chain_name": "binancesmartchaintestnet", + "base_denom": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'binancesmartchaintestnet', - base_denom: '0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd' + "image_sync": { + "chain_name": "binancesmartchaintestnet", + "base_denom": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg" } }, { - description: 'Wrapped AVAX on Axelar.', - denom_units: [ + "description": "Wrapped AVAX on Axelar.", + "denom_units": [ { - denom: 'wavax-wei', - exponent: 0 + "denom": "wavax-wei", + "exponent": 0 }, { - denom: 'avax', - exponent: 18 + "denom": "avax", + "exponent": 18 } ], - base: 'wavax-wei', - name: 'Wrapped AVAX', - display: 'avax', - symbol: 'WAVAX', - traces: [ + "base": "wavax-wei", + "name": "Wrapped AVAX", + "display": "avax", + "symbol": "WAVAX", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'avalanchetestnet', - base_denom: '0xd00ae08403B9bbb9124bB305C09058E32C39A48c' + "type": "bridge", + "counterparty": { + "chain_name": "avalanchetestnet", + "base_denom": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'avalanchetestnet', - base_denom: '0xd00ae08403B9bbb9124bB305C09058E32C39A48c' + "image_sync": { + "chain_name": "avalanchetestnet", + "base_denom": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" } }, { - description: 'Wrapped FTM on Axelar.', - denom_units: [ + "description": "Wrapped FTM on Axelar.", + "denom_units": [ { - denom: 'wftm-wei', - exponent: 0 + "denom": "wftm-wei", + "exponent": 0 }, { - denom: 'ftm', - exponent: 18 + "denom": "ftm", + "exponent": 18 } ], - base: 'wftm-wei', - name: 'Wrapped FTM', - display: 'ftm', - symbol: 'WFTM', - traces: [ + "base": "wftm-wei", + "name": "Wrapped FTM", + "display": "ftm", + "symbol": "WFTM", + "traces": [ { - type: 'bridge', - counterparty: { - chain_name: 'fantomtestnet', - base_denom: '0x812666209b90344Ec8e528375298ab9045c2Bd08' + "type": "bridge", + "counterparty": { + "chain_name": "fantomtestnet", + "base_denom": "0x812666209b90344Ec8e528375298ab9045c2Bd08" }, - provider: 'Axelar' + "provider": "Axelar" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'fantomtestnet', - base_denom: '0x812666209b90344Ec8e528375298ab9045c2Bd08' + "image_sync": { + "chain_name": "fantomtestnet", + "base_denom": "0x812666209b90344Ec8e528375298ab9045c2Bd08" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" } } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'babylontestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "babylontestnet", + "assets": [ { - description: 'The native staking token of Babylon.', - denom_units: [ + "description": "The native staking token of Babylon.", + "denom_units": [ { - denom: 'ubbn', - exponent: 0 + "denom": "ubbn", + "exponent": 0 }, { - denom: 'bbn', - exponent: 6 + "denom": "bbn", + "exponent": 6 } ], - base: 'uatom', - name: 'Babylon BBN', - display: 'bbn', - symbol: 'BBN', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg' + "base": "uatom", + "name": "Babylon BBN", + "display": "bbn", + "symbol": "BBN", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'bitcannadevnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "bitcannadevnet", + "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/testnets/bitcannadevnet/images/bcna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet/images/bcna.svg' + "base": "ubcna", + "display": "bcna", + "name": "BitCanna", + "symbol": "BCNA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet/images/bcna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet/images/bcna.svg" }, - coingecko_id: 'bitcanna', - images: [ + "coingecko_id": "bitcanna", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet/images/bcna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet/images/bcna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet/images/bcna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet/images/bcna.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'bitcannadevnet2', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "bitcannadevnet2", + "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/testnets/bitcannadevnet2/images/bcna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet2/images/bcna.svg' + "base": "ubcna", + "display": "bcna", + "name": "BitCanna", + "symbol": "BCNA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet2/images/bcna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet2/images/bcna.svg" }, - coingecko_id: 'bitcanna', - images: [ + "coingecko_id": "bitcanna", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet2/images/bcna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet2/images/bcna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet2/images/bcna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadevnet2/images/bcna.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'cascadiatestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "cascadiatestnet", + "assets": [ { - description: "The World's First Neocybernetic Blockchain", - denom_units: [ + "description": "The World's First Neocybernetic Blockchain", + "denom_units": [ { - denom: 'aCC', - exponent: 0 + "denom": "aCC", + "exponent": 0 }, { - denom: 'tCC', - exponent: 18 + "denom": "tCC", + "exponent": 18 } ], - base: 'aCC', - name: 'Сascadia Testnet', - display: 'tCC', - symbol: 'TCC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cascadiatestnet/images/cascadia.png' + "base": "aCC", + "name": "Сascadia Testnet", + "display": "tCC", + "symbol": "TCC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cascadiatestnet/images/cascadia.png" }, - keywords: ['cascadia', 'neocybernetic'], - images: [ + "keywords": [ + "cascadia", + "neocybernetic" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cascadiatestnet/images/cascadia.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cascadiatestnet/images/cascadia.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'celestiatestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "celestiatestnet", + "assets": [ { - description: '', - denom_units: [ + "description": "", + "denom_units": [ { - denom: 'utia', - exponent: 0 + "denom": "utia", + "exponent": 0 }, { - denom: 'tia', - exponent: 6 + "denom": "tia", + "exponent": 6 } ], - base: 'utia', - name: 'Celestia', - display: 'tia', - symbol: 'TIA', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg' + "base": "utia", + "name": "Celestia", + "display": "tia", + "symbol": "TIA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'celestiatestnet2', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "celestiatestnet2", + "assets": [ { - description: '', - denom_units: [ + "description": "", + "denom_units": [ { - denom: 'utia', - exponent: 0 + "denom": "utia", + "exponent": 0 }, { - denom: 'tia', - exponent: 6 + "denom": "tia", + "exponent": 6 } ], - base: 'utia', - name: 'Celestia', - display: 'tia', - symbol: 'TIA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet2/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet2/images/celestia.svg' + "base": "utia", + "name": "Celestia", + "display": "tia", + "symbol": "TIA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet2/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet2/images/celestia.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet2/images/celestia.svg', - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet2/images/celestia.png' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet2/images/celestia.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet2/images/celestia.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'celestiatestnet3', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "celestiatestnet3", + "assets": [ { - description: '', - denom_units: [ + "description": "", + "denom_units": [ { - denom: 'utia', - exponent: 0 + "denom": "utia", + "exponent": 0 }, { - denom: 'tia', - exponent: 6 + "denom": "tia", + "exponent": 6 } ], - base: 'utia', - name: 'Celestia', - display: 'tia', - symbol: 'TIA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet3/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet3/images/celestia.svg' + "base": "utia", + "name": "Celestia", + "display": "tia", + "symbol": "TIA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet3/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet3/images/celestia.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet3/images/celestia.svg', - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet3/images/celestia.png' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet3/images/celestia.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet3/images/celestia.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'chain4energytestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "chain4energytestnet", + "assets": [ { - description: 'The native token of Chain4Energy', - denom_units: [ + "description": "The native token of Chain4Energy", + "denom_units": [ { - denom: 'uc4e', - exponent: 0 + "denom": "uc4e", + "exponent": 0 }, { - denom: 'c4e', - exponent: 6 + "denom": "c4e", + "exponent": 6 } ], - base: 'uc4e', - name: 'Chain4Energy', - display: 'c4e', - symbol: 'C4E', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png' + "base": "uc4e", + "name": "Chain4Energy", + "display": "c4e", + "symbol": "C4E", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'cheqdtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "cheqdtestnet", + "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/testnets/cheqdtestnet/images/cheq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cheqdtestnet/images/cheq.svg' + "base": "ncheq", + "display": "cheq", + "name": "cheqd", + "symbol": "CHEQ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cheqdtestnet/images/cheq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cheqdtestnet/images/cheq.svg" }, - coingecko_id: 'cheqd-network', - images: [ + "coingecko_id": "cheqd-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cheqdtestnet/images/cheq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cheqdtestnet/images/cheq.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cheqdtestnet/images/cheq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cheqdtestnet/images/cheq.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'chimbatestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "chimbatestnet", + "assets": [ { - description: 'The first blokchain in colombia', - denom_units: [ + "description": "The first blokchain in colombia", + "denom_units": [ { - denom: 'ucmba', - exponent: 0 + "denom": "ucmba", + "exponent": 0 }, { - denom: 'chimba', - exponent: 6 + "denom": "chimba", + "exponent": 6 } ], - base: 'ucmba', - name: 'Chimba', - display: 'chimba', - symbol: 'CMBA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg' + "base": "ucmba", + "name": "Chimba", + "display": "chimba", + "symbol": "CMBA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'composabletestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "composabletestnet", + "assets": [ { - description: - 'The native staking and governance token of the Composable testnet.', - denom_units: [ + "description": "The native staking and governance token of the Composable testnet.", + "denom_units": [ { - denom: 'ppica', - exponent: 0 + "denom": "ppica", + "exponent": 0 }, { - denom: 'pica', - exponent: 12 + "denom": "pica", + "exponent": 12 } ], - base: 'ppica', - name: 'Pica', - display: 'pica', - symbol: 'PICA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg' + "base": "ppica", + "name": "Pica", + "display": "pica", + "symbol": "PICA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'coolcattestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "coolcattestnet", + "assets": [ { - description: - 'CoolCat - The Interchain Gaming Hub. $CCAT is the native token for use in the CoolCat Network.', - denom_units: [ + "description": "CoolCat - The Interchain Gaming Hub. $CCAT is the native token for use in the CoolCat Network.", + "denom_units": [ { - denom: 'uccat', - exponent: 0 + "denom": "uccat", + "exponent": 0 }, { - denom: 'ccat', - exponent: 6 + "denom": "ccat", + "exponent": 6 } ], - base: 'uccat', - name: 'CoolCat', - display: 'ccat', - symbol: 'CCAT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/coolcattestnet/images/coolcat.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/coolcattestnet/images/coolcat.svg' + "base": "uccat", + "name": "CoolCat", + "display": "ccat", + "symbol": "CCAT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/coolcattestnet/images/coolcat.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/coolcattestnet/images/coolcat.svg" }, - keywords: ['nft', 'staking', 'games'], - images: [ + "keywords": [ + "nft", + "staking", + "games" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/coolcattestnet/images/coolcat.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/coolcattestnet/images/coolcat.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/coolcattestnet/images/coolcat.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/coolcattestnet/images/coolcat.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'coreumtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "coreumtestnet", + "assets": [ { - description: 'The native token of Coreum', - denom_units: [ + "description": "The native token of Coreum", + "denom_units": [ { - denom: 'utestcore', - exponent: 0 + "denom": "utestcore", + "exponent": 0 }, { - denom: 'testcore', - exponent: 6 + "denom": "testcore", + "exponent": 6 } ], - base: 'utestcore', - name: 'Coreum', - display: 'testcore', - symbol: 'TESTCORE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + "base": "utestcore", + "name": "Coreum", + "display": "testcore", + "symbol": "TESTCORE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg" }, - coingecko_id: 'coreum', - keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'], - images: [ + "coingecko_id": "coreum", + "keywords": [ + "dex", + "staking", + "wasm", + "assets", + "nft" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'cosmoshubtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "cosmoshubtestnet", + "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/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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'cosmwasmtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "cosmwasmtestnet", + "assets": [ { - description: 'Fee Token', - denom_units: [ + "description": "Fee Token", + "denom_units": [ { - denom: 'umlg', - exponent: 0 + "denom": "umlg", + "exponent": 0 }, { - denom: 'MLG', - exponent: 6 + "denom": "MLG", + "exponent": 6 } ], - base: 'umlg', - name: 'Malaga', - display: 'umlg', - symbol: 'MLG', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg' + "base": "umlg", + "name": "Malaga", + "display": "umlg", + "symbol": "MLG", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg" } ] }, { - description: 'Staking Token', - denom_units: [ + "description": "Staking Token", + "denom_units": [ { - denom: 'uand', - exponent: 0 + "denom": "uand", + "exponent": 0 }, { - denom: 'AND', - exponent: 6 + "denom": "AND", + "exponent": 6 } ], - base: 'uand', - name: 'Malaga Stake', - display: 'uand', - symbol: 'AND', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg' + "base": "uand", + "name": "Malaga Stake", + "display": "uand", + "symbol": "AND", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cosmwasmtestnet/images/cosmwasm.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'cosstestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "cosstestnet", + "assets": [ { - description: 'The native token of COSS', - denom_units: [ + "description": "The native token of COSS", + "denom_units": [ { - denom: 'ucgas', - exponent: 0, - aliases: [] + "denom": "ucgas", + "exponent": 0, + "aliases": [] }, { - denom: 'cgas', - exponent: 6, - aliases: [] + "denom": "cgas", + "exponent": 6, + "aliases": [] } ], - base: 'ucgas', - name: 'cgas', - display: 'cgas', - symbol: 'cgas' + "base": "ucgas", + "name": "cgas", + "display": "cgas", + "symbol": "cgas" } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'cudostestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "cudostestnet", + "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/testnets/cudostestnet/images/cudos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cudostestnet/images/cudos.svg' + "base": "acudos", + "name": "Cudos", + "display": "cudos", + "symbol": "CUDOS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cudostestnet/images/cudos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cudostestnet/images/cudos.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cudostestnet/images/cudos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cudostestnet/images/cudos.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cudostestnet/images/cudos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cudostestnet/images/cudos.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'deardogetestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "deardogetestnet", + "assets": [ { - description: - 'The native staking and governance token of the Theta testnet version of the Dear Doge Testnet.', - denom_units: [ + "description": "The native staking and governance token of the Theta testnet version of the Dear Doge Testnet.", + "denom_units": [ { - denom: 'udear', - exponent: 0 + "denom": "udear", + "exponent": 0 }, { - denom: 'dear', - exponent: 6 + "denom": "dear", + "exponent": 6 } ], - base: 'udear', - name: 'Dear Doge Testnet', - display: 'dear', - symbol: 'DEAR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/deardogetestnet/images/deardoge.png' + "base": "udear", + "name": "Dear Doge Testnet", + "display": "dear", + "symbol": "DEAR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/deardogetestnet/images/deardoge.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/deardogetestnet/images/deardoge.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/deardogetestnet/images/deardoge.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'desmostestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "desmostestnet", + "assets": [ { - description: 'The native token of Desmos', - denom_units: [ + "description": "The native token of Desmos", + "denom_units": [ { - denom: 'udaric', - exponent: 0 + "denom": "udaric", + "exponent": 0 }, { - denom: 'daric', - exponent: 6 + "denom": "daric", + "exponent": 6 } ], - base: 'udaric', - name: 'Desmos Testnet', - display: 'daric', - symbol: 'DARIC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.svg' + "base": "udaric", + "name": "Desmos Testnet", + "display": "daric", + "symbol": "DARIC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.svg" }, - coingecko_id: 'desmos', - images: [ + "coingecko_id": "desmos", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'doravotatestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "doravotatestnet", + "assets": [ { - description: - 'The native staking and governance token of the Theta testnet version of the Dora Vota Testnet.', - denom_units: [ + "description": "The native staking and governance token of the Theta testnet version of the Dora Vota Testnet.", + "denom_units": [ { - denom: 'peaka', - exponent: 0 + "denom": "peaka", + "exponent": 0 }, { - denom: 'DORA', - exponent: 18 + "denom": "DORA", + "exponent": 18 } ], - base: 'peaka', - name: 'Dora Vota Testnet', - display: 'DORA', - symbol: 'DORA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png' + "base": "peaka", + "name": "Dora Vota Testnet", + "display": "DORA", + "symbol": "DORA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'doravotatestnet2', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "doravotatestnet2", + "assets": [ { - description: - 'The native staking and governance token of the Theta incentive version of the Dora Vota Testnet.', - denom_units: [ + "description": "The native staking and governance token of the Theta incentive version of the Dora Vota Testnet.", + "denom_units": [ { - denom: 'peaka', - exponent: 0 + "denom": "peaka", + "exponent": 0 }, { - denom: 'DORA', - exponent: 18 + "denom": "DORA", + "exponent": 18 } ], - base: 'peaka', - name: 'Dora Vota Incentive Testnet', - display: 'DORA', - symbol: 'DORA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png' + "base": "peaka", + "name": "Dora Vota Incentive Testnet", + "display": "DORA", + "symbol": "DORA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/doravotatestnet/images/doravota.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'dydxtestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "dydxtestnet", + "assets": [ { - description: 'The native staking token of dYdX Protocol.', - denom_units: [ + "description": "The native staking token of dYdX Protocol.", + "denom_units": [ { - denom: 'adydx', - exponent: 0 + "denom": "adydx", + "exponent": 0 }, { - denom: 'dydx', - exponent: 18 + "denom": "dydx", + "exponent": 18 } ], - base: 'adydx', - name: 'dYdX', - display: 'dydx', - symbol: 'DYDX', - coingecko_id: 'dydx', - traces: [ + "base": "adydx", + "name": "dYdX", + "display": "dydx", + "symbol": "DYDX", + "coingecko_id": "dydx", + "traces": [ { - type: 'test-mintage', - counterparty: { - chain_name: 'dydx', - base_denom: 'adydx' + "type": "test-mintage", + "counterparty": { + "chain_name": "dydx", + "base_denom": "adydx" }, - provider: 'Dydx' + "provider": "Dydx" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" }, { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg', - theme: { - circle: true + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", + "theme": { + "circle": true } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'elystestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "elystestnet", + "assets": [ { - description: 'The native token of Elys Network', - denom_units: [ + "description": "The native token of Elys Network", + "denom_units": [ { - denom: 'uelys', - exponent: 0, - aliases: ['microelys'] + "denom": "uelys", + "exponent": 0, + "aliases": [ + "microelys" + ] }, { - denom: 'melys', - exponent: 3, - aliases: ['millielys'] + "denom": "melys", + "exponent": 3, + "aliases": [ + "millielys" + ] }, { - denom: 'elys', - exponent: 6, - aliases: [] + "denom": "elys", + "exponent": 6, + "aliases": [] } ], - base: 'uelys', - name: 'Elys Network', - display: 'elys', - symbol: 'ELYS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png' + "base": "uelys", + "name": "Elys Network", + "display": "elys", + "symbol": "ELYS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png" }, - coingecko_id: 'elys', - images: [ + "coingecko_id": "elys", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png" } ] }, { - description: 'Eden token definition', - denom_units: [ + "description": "Eden token definition", + "denom_units": [ { - denom: 'ueden', - exponent: 0, - aliases: ['microeden'] + "denom": "ueden", + "exponent": 0, + "aliases": [ + "microeden" + ] }, { - denom: 'meden', - exponent: 3, - aliases: ['millieden'] + "denom": "meden", + "exponent": 3, + "aliases": [ + "millieden" + ] }, { - denom: 'eden', - exponent: 6, - aliases: [] + "denom": "eden", + "exponent": 6, + "aliases": [] } ], - base: 'ueden', - name: 'Eden', - display: 'eden', - symbol: 'EDEN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png' + "base": "ueden", + "name": "Eden", + "display": "eden", + "symbol": "EDEN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'empowertestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "empowertestnet", + "assets": [ { - description: - 'The native staking and governance token of the testnet version of Empower.', - denom_units: [ + "description": "The native staking and governance token of the testnet version of Empower.", + "denom_units": [ { - denom: 'umpwr', - exponent: 0 + "denom": "umpwr", + "exponent": 0 }, { - denom: 'mpwr', - exponent: 6 + "denom": "mpwr", + "exponent": 6 } ], - base: 'umpwr', - name: 'MPWR', - display: 'mpwr', - symbol: 'MPWR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/empowertestnet/images/mpwr.png' + "base": "umpwr", + "name": "MPWR", + "display": "mpwr", + "symbol": "MPWR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/empowertestnet/images/mpwr.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/empowertestnet/images/mpwr.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/empowertestnet/images/mpwr.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'entrypointtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "entrypointtestnet", + "assets": [ { - description: 'The native token of EntryPoint', - denom_units: [ + "description": "The native token of EntryPoint", + "denom_units": [ { - denom: 'uentry', - exponent: 0, - aliases: [] + "denom": "uentry", + "exponent": 0, + "aliases": [] }, { - denom: 'entry', - exponent: 6, - aliases: [] + "denom": "entry", + "exponent": 6, + "aliases": [] } ], - base: 'uentry', - name: 'EntryPoint', - display: 'entry', - symbol: 'ENTRY', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entry.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entry.svg' + "base": "uentry", + "name": "EntryPoint", + "display": "entry", + "symbol": "ENTRY", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entry.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entry.svg" }, - keywords: ['staking', 'governance', 'vaults'], - images: [ + "keywords": [ + "staking", + "governance", + "vaults" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entry.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entry.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entry.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entry.svg" } ] }, { - description: - 'The native staking and governance token of the Theta testnet version of the Cosmos Hub, via Osmosis.', - denom_units: [ + "description": "The native staking and governance token of the Theta testnet version of the Cosmos Hub, via Osmosis.", + "denom_units": [ { - denom: - 'ibc/8A138BC76D0FB2665F8937EC2BF01B9F6A714F6127221A0E155106A45E09BCC5', - exponent: 0 + "denom": "ibc/8A138BC76D0FB2665F8937EC2BF01B9F6A714F6127221A0E155106A45E09BCC5", + "exponent": 0 }, { - denom: 'atom', - exponent: 6 + "denom": "atom", + "exponent": 6 } ], - base: 'ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C', - name: 'Cosmos', - display: 'atom', - symbol: 'ATOM', - traces: [ + "base": "ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C", + "name": "Cosmos", + "display": "atom", + "symbol": "ATOM", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosis', - base_denom: - 'ibc/B28CFD38D84A480EF2A03AC575DCB05004D934A603A5A642888847BCDA6340C0', - channel_id: 'channel-4156' + "type": "ibc", + "counterparty": { + "chain_name": "osmosis", + "base_denom": "ibc/B28CFD38D84A480EF2A03AC575DCB05004D934A603A5A642888847BCDA6340C0", + "channel_id": "channel-4156" }, - chain: { - channel_id: 'channel-0', - path: 'transfer/channel-0/transfer/channel-4156/uatom' + "chain": { + "channel_id": "channel-0", + "path": "transfer/channel-0/transfer/channel-4156/uatom" } } ], - 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' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'evmostestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "evmostestnet", + "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: 'atevmos', - exponent: 0 + "denom": "atevmos", + "exponent": 0 }, { - denom: 'tevmos', - exponent: 18 + "denom": "tevmos", + "exponent": 18 } ], - base: 'atevmos', - name: 'Evmos Testnet', - display: 'tevmos', - symbol: 'TEVMOS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/evmostestnet/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/evmostestnet/images/evmos.svg' + "base": "atevmos", + "name": "Evmos Testnet", + "display": "tevmos", + "symbol": "TEVMOS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/evmostestnet/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/evmostestnet/images/evmos.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/evmostestnet/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/evmostestnet/images/evmos.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/evmostestnet/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/evmostestnet/images/evmos.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'fetchhubtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "fetchhubtestnet", + "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: 'atestfet', - exponent: 0 + "denom": "atestfet", + "exponent": 0 }, { - denom: 'testfet', - exponent: 18 + "denom": "testfet", + "exponent": 18 } ], - base: 'atestfet', - 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": "atestfet", + "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', - images: [ + "coingecko_id": "fetch-ai", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'gitopiatestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "gitopiatestnet", + "assets": [ { - description: - 'The native staking and governance token of the testnet version of Gitopia.', - denom_units: [ + "description": "The native staking and governance token of the testnet version of Gitopia.", + "denom_units": [ { - denom: 'utlore', - exponent: 0 + "denom": "utlore", + "exponent": 0 }, { - denom: 'tlore', - exponent: 6 + "denom": "tlore", + "exponent": 6 } ], - base: 'utlore', - name: 'TLORE', - display: 'tlore', - symbol: 'TLORE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/gitopiatestnet/images/gitopia.png' + "base": "utlore", + "name": "TLORE", + "display": "tlore", + "symbol": "TLORE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/gitopiatestnet/images/gitopia.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/gitopiatestnet/images/gitopia.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/gitopiatestnet/images/gitopia.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'humanstestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "humanstestnet", + "assets": [ { - description: - 'The native staking and governance token of the testnet version of Humans AI.', - denom_units: [ + "description": "The native staking and governance token of the testnet version of Humans AI.", + "denom_units": [ { - denom: 'uheart', - exponent: 0 + "denom": "uheart", + "exponent": 0 }, { - denom: 'heart', - exponent: 6 + "denom": "heart", + "exponent": 6 } ], - base: 'uheart', - name: 'HEART', - display: 'heart', - symbol: 'HEART', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/humanstestnet/images/humans.png' + "base": "uheart", + "name": "HEART", + "display": "heart", + "symbol": "HEART", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/humanstestnet/images/humans.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/humanstestnet/images/humans.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/humanstestnet/images/humans.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'hypersigntestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "hypersigntestnet", + "assets": [ { - description: 'Native token for Hypersign Identity Network', - denom_units: [ + "description": "Native token for Hypersign Identity Network", + "denom_units": [ { - denom: 'uhid', - exponent: 0 + "denom": "uhid", + "exponent": 0 }, { - denom: 'hid', - exponent: 6 + "denom": "hid", + "exponent": 6 } ], - base: 'uhid', - display: 'hid', - name: 'Hypersign', - symbol: 'HID', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/hypersigntestnet/images/hypersign.png' + "base": "uhid", + "display": "hid", + "name": "Hypersign", + "symbol": "HID", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/hypersigntestnet/images/hypersign.png" }, - coingecko_id: 'hypersign-identity-token', - images: [ + "coingecko_id": "hypersign-identity-token", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/hypersigntestnet/images/hypersign.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/hypersigntestnet/images/hypersign.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'impacthubdevnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "impacthubdevnet", + "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/testnets/impacthubdevnet/images/ixo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/impacthubdevnet/images/ixo.svg' + "base": "uixo", + "name": "IXO", + "display": "ixo", + "symbol": "IXO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/impacthubdevnet/images/ixo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/impacthubdevnet/images/ixo.svg" }, - coingecko_id: 'ixo', - images: [ + "coingecko_id": "ixo", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/impacthubdevnet/images/ixo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/impacthubdevnet/images/ixo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/impacthubdevnet/images/ixo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/impacthubdevnet/images/ixo.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'impacthubtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "impacthubtestnet", + "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', - traces: [ + "base": "uixo", + "name": "IXO", + "display": "ixo", + "symbol": "IXO", + "traces": [ { - type: 'test-mintage', - counterparty: { - chain_name: 'impacthub', - base_denom: 'uixo' + "type": "test-mintage", + "counterparty": { + "chain_name": "impacthub", + "base_denom": "uixo" }, - provider: 'impacthub' + "provider": "impacthub" } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'impacthub', - base_denom: 'uixo' + "image_sync": { + "chain_name": "impacthub", + "base_denom": "uixo" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" } } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'imversedtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "imversedtestnet", + "assets": [ { - description: - 'The native staking and governance token of the Imversed testnet.', - denom_units: [ + "description": "The native staking and governance token of the Imversed testnet.", + "denom_units": [ { - denom: 'nimv', - exponent: 0, - aliases: [] + "denom": "nimv", + "exponent": 0, + "aliases": [] }, { - denom: 'imv', - exponent: 6, - aliases: [] + "denom": "imv", + "exponent": 6, + "aliases": [] } ], - base: 'nimv', - name: 'Imv', - display: 'imv', - symbol: 'IMV', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg' + "base": "nimv", + "name": "Imv", + "display": "imv", + "symbol": "IMV", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg" } ] }, { - description: - 'The native staking and governance token of the Imversed testnet.', - denom_units: [ + "description": "The native staking and governance token of the Imversed testnet.", + "denom_units": [ { - denom: - 'ibc/C6438A7D613196373D939891C99CA7EEF4F78F4A78DC8590E51E62F8ED16E72B', - exponent: 0, - aliases: ['usaage'] + "denom": "ibc/C6438A7D613196373D939891C99CA7EEF4F78F4A78DC8590E51E62F8ED16E72B", + "exponent": 0, + "aliases": [ + "usaage" + ] }, { - denom: 'imv', - exponent: 6 + "denom": "imv", + "exponent": 6 } ], - base: 'ibc/C6438A7D613196373D939891C99CA7EEF4F78F4A78DC8590E51E62F8ED16E72B', - name: 'Imv', - display: 'imv', - symbol: 'IMV', - ibc: { - source_channel: 'channel-1', - dst_channel: 'channel-221', - source_denom: 'nimv' + "base": "ibc/C6438A7D613196373D939891C99CA7EEF4F78F4A78DC8590E51E62F8ED16E72B", + "name": "Imv", + "display": "imv", + "symbol": "IMV", + "ibc": { + "source_channel": "channel-1", + "dst_channel": "channel-221", + "source_denom": "nimv" }, - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/imversedtestnet/images/imversed.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'injectivetestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "injectivetestnet", + "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: 'inj', - exponent: 0 + "denom": "inj", + "exponent": 0 }, { - denom: 'INJ', - exponent: 18 + "denom": "INJ", + "exponent": 18 } ], - base: 'inj', - 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": "inj", + "name": "Injective", + "display": "INJ", + "symbol": "INJ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" }, - coingecko_id: 'injective-protocol', - images: [ + "coingecko_id": "injective-protocol", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + "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" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'jackaltestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "jackaltestnet", + "assets": [ { - description: 'The native staking and governance token of Jackal.', - denom_units: [ + "description": "The native staking and governance token of Jackal.", + "denom_units": [ { - denom: 'ujkl', - exponent: 0 + "denom": "ujkl", + "exponent": 0 }, { - denom: 'jkl', - exponent: 6 + "denom": "jkl", + "exponent": 6 } ], - base: 'ujkl', - name: 'Jackal', - display: 'jkl', - symbol: 'JKL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.svg' + "base": "ujkl", + "name": "Jackal", + "display": "jkl", + "symbol": "JKL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.svg" }, - coingecko_id: 'jackal', - images: [ + "coingecko_id": "jackal", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'junotestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "junotestnet", + "assets": [ { - description: 'The native token of JUNO Chain', - denom_units: [ + "description": "The native token of JUNO Chain", + "denom_units": [ { - denom: 'ujunox', - exponent: 0 + "denom": "ujunox", + "exponent": 0 }, { - denom: 'junox', - exponent: 6 + "denom": "junox", + "exponent": 6 } ], - base: 'ujunox', - name: 'Juno Testnet', - display: 'junox', - symbol: 'JUNOX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg' + "base": "ujunox", + "name": "Juno Testnet", + "display": "junox", + "symbol": "JUNOX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg" }, - coingecko_id: 'juno-network', - images: [ + "coingecko_id": "juno-network", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg" } ] }, { - description: 'The native token of NEXX GEN AI', - denom_units: [ + "description": "The native token of NEXX GEN AI", + "denom_units": [ { - denom: 'factory/juno12klaltyqvg2j6v034jwdxrk5n4242ttse4sdpt/NEXX', - exponent: 0 + "denom": "factory/juno12klaltyqvg2j6v034jwdxrk5n4242ttse4sdpt/NEXX", + "exponent": 0 }, { - denom: 'nexx', - exponent: 6 + "denom": "nexx", + "exponent": 6 } ], - base: 'factory/juno12klaltyqvg2j6v034jwdxrk5n4242ttse4sdpt/NEXX', - name: 'NEXX GEN AI', - display: 'nexx', - symbol: 'NEXX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/nexx.png' + "base": "factory/juno12klaltyqvg2j6v034jwdxrk5n4242ttse4sdpt/NEXX", + "name": "NEXX GEN AI", + "display": "nexx", + "symbol": "NEXX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/nexx.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/nexx.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/nexx.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'kichaintestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "kichaintestnet", + "assets": [ { - description: 'The native token of Ki Chain', - denom_units: [ + "description": "The native token of Ki Chain", + "denom_units": [ { - denom: 'utki', - exponent: 0 + "denom": "utki", + "exponent": 0 }, { - denom: 'tki', - exponent: 6 + "denom": "tki", + "exponent": 6 } ], - base: 'utki', - name: 'Ki', - display: 'tki', - symbol: 'TKI', - 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": "utki", + "name": "Ki", + "display": "tki", + "symbol": "TKI", + "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', - images: [ + "coingecko_id": "ki", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'kujiratestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "kujiratestnet", + "assets": [ { - description: - 'The native staking and governance token of the Harpoon testnet version of Kujira.', - denom_units: [ + "description": "The native staking and governance token of the Harpoon testnet version of Kujira.", + "denom_units": [ { - denom: 'ukuji', - exponent: 0 + "denom": "ukuji", + "exponent": 0 }, { - denom: 'kuji', - exponent: 6 + "denom": "kuji", + "exponent": 6 } ], - base: 'ukuji', - name: 'Kuji', - display: 'kuji', - symbol: 'KUJI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/kuji.png' + "base": "ukuji", + "name": "Kuji", + "display": "kuji", + "symbol": "KUJI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/kuji.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/kuji.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/kuji.png" } ] }, { - description: 'The testnet token of Fuzion', - denom_units: [ + "description": "The testnet token of Fuzion", + "denom_units": [ { - denom: 'factory/kujira16qpvzhmawvsm8mcj4hdvtz25dadatdhhgw79xa/FUZN', - exponent: 0 + "denom": "factory/kujira16qpvzhmawvsm8mcj4hdvtz25dadatdhhgw79xa/FUZN", + "exponent": 0 }, { - denom: 'fuzn', - exponent: 6 + "denom": "fuzn", + "exponent": 6 } ], - base: 'factory/kujira16qpvzhmawvsm8mcj4hdvtz25dadatdhhgw79xa/FUZN', - name: 'Fuzion', - display: 'fuzn', - symbol: 'FUZN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/fuzn.png' + "base": "factory/kujira16qpvzhmawvsm8mcj4hdvtz25dadatdhhgw79xa/FUZN", + "name": "Fuzion", + "display": "fuzn", + "symbol": "FUZN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/fuzn.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/fuzn.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kujiratestnet/images/fuzn.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'kyvedevnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "kyvedevnet", + "assets": [ { - description: - 'The native utility token of the Korellia devnet version of KYVE.', - denom_units: [ + "description": "The native utility token of the Korellia devnet version of KYVE.", + "denom_units": [ { - denom: 'tkyve', - exponent: 0 + "denom": "tkyve", + "exponent": 0 }, { - denom: 'kyve', - exponent: 9 + "denom": "kyve", + "exponent": 9 } ], - base: 'tkyve', - name: 'KYVE', - display: 'kyve', - symbol: 'KYVE', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvedevnet/images/kyve.svg' + "base": "tkyve", + "name": "KYVE", + "display": "kyve", + "symbol": "KYVE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvedevnet/images/kyve.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvedevnet/images/kyve.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvedevnet/images/kyve.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'kyvetestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "kyvetestnet", + "assets": [ { - description: - 'The native utility token of the Kaon testnet version of KYVE.', - denom_units: [ + "description": "The native utility token of the Kaon testnet version of KYVE.", + "denom_units": [ { - denom: 'tkyve', - exponent: 0 + "denom": "tkyve", + "exponent": 0 }, { - denom: 'kyve', - exponent: 6 + "denom": "kyve", + "exponent": 6 } ], - base: 'tkyve', - name: 'KYVE', - display: 'kyve', - symbol: 'KYVE', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvetestnet/images/kyve.svg' + "base": "tkyve", + "name": "KYVE", + "display": "kyve", + "symbol": "KYVE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvetestnet/images/kyve.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvetestnet/images/kyve.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kyvetestnet/images/kyve.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'lavatestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "lavatestnet", + "assets": [ { - description: 'The native token of Lava', - denom_units: [ + "description": "The native token of Lava", + "denom_units": [ { - denom: 'ulava', - exponent: 0 + "denom": "ulava", + "exponent": 0 }, { - denom: 'lava', - exponent: 6 + "denom": "lava", + "exponent": 6 } ], - base: 'ulava', - name: 'LAVA', - display: 'lava', - symbol: 'LAVA', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg' + "base": "ulava", + "name": "LAVA", + "display": "lava", + "symbol": "LAVA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" }, - keywords: ['rpc', 'api'], - images: [ + "keywords": [ + "rpc", + "api" + ], + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'lavatestnet2', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "lavatestnet2", + "assets": [ { - description: 'The native token of Lava', - denom_units: [ + "description": "The native token of Lava", + "denom_units": [ { - denom: 'ulava', - exponent: 0 + "denom": "ulava", + "exponent": 0 }, { - denom: 'lava', - exponent: 6 + "denom": "lava", + "exponent": 6 } ], - base: 'ulava', - name: 'LAVA', - display: 'lava', - symbol: 'LAVA', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg' + "base": "ulava", + "name": "LAVA", + "display": "lava", + "symbol": "LAVA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" }, - keywords: ['rpc', 'api'], - images: [ + "keywords": [ + "rpc", + "api" + ], + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'likecointestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "likecointestnet", + "assets": [ { - description: 'EKIL is the native token for LikeCoin Testnet', - denom_units: [ + "description": "EKIL is the native token for LikeCoin Testnet", + "denom_units": [ { - denom: 'nanoekil', - exponent: 0 + "denom": "nanoekil", + "exponent": 0 }, { - denom: 'ekil', - exponent: 9 + "denom": "ekil", + "exponent": 9 } ], - base: 'nanoekil', - name: 'LikeCoin', - display: 'ekil', - symbol: 'EKIL', - 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": "nanoekil", + "name": "LikeCoin", + "display": "ekil", + "symbol": "EKIL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'lumenxtestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "lumenxtestnet", + "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/testnets/lumenxtestnet/images/lumen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lumenxtestnet/images/lumen.svg' + "base": "ulumen", + "name": "LUMEN", + "display": "lumen", + "symbol": "LUMEN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lumenxtestnet/images/lumen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lumenxtestnet/images/lumen.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lumenxtestnet/images/lumen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lumenxtestnet/images/lumen.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lumenxtestnet/images/lumen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lumenxtestnet/images/lumen.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'marstestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "marstestnet", + "assets": [ { - description: 'The native token of Mars Protocol', - denom_units: [ + "description": "The native token of Mars Protocol", + "denom_units": [ { - denom: 'umars', - exponent: 0 + "denom": "umars", + "exponent": 0 }, { - denom: 'mars', - exponent: 6 + "denom": "mars", + "exponent": 6 } ], - base: 'umars', - name: 'Mars', - display: 'mars', - symbol: 'MARS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + "base": "umars", + "name": "Mars", + "display": "mars", + "symbol": "MARS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'migalootestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "migalootestnet", + "assets": [ { - description: 'The native token of Migaloo Chain', - denom_units: [ + "description": "The native token of Migaloo Chain", + "denom_units": [ { - denom: 'uwhale', - exponent: 0 + "denom": "uwhale", + "exponent": 0 }, { - denom: 'whale', - exponent: 6 + "denom": "whale", + "exponent": 6 } ], - base: 'uwhale', - name: 'Whale', - display: 'whale', - symbol: 'WHALE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + "base": "uwhale", + "name": "Whale", + "display": "whale", + "symbol": "WHALE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'neutrontestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "neutrontestnet", + "assets": [ { - description: 'The native token of Neutron chain', - denom_units: [ + "description": "The native token of Neutron chain", + "denom_units": [ { - denom: 'untrn', - exponent: 0 + "denom": "untrn", + "exponent": 0 }, { - denom: 'ntrn', - exponent: 6 + "denom": "ntrn", + "exponent": 6 } ], - base: 'untrn', - name: 'Neutron Testnet', - display: 'ntrn', - symbol: 'NTRN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron.svg' + "base": "untrn", + "name": "Neutron Testnet", + "display": "ntrn", + "symbol": "NTRN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'nobletestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "nobletestnet", + "assets": [ { - description: 'The controlled staking asset for Noble Chain', - denom_units: [ + "description": "The controlled staking asset for Noble Chain", + "denom_units": [ { - denom: 'ustake', - exponent: 0, - aliases: ['microstake'] + "denom": "ustake", + "exponent": 0, + "aliases": [ + "microstake" + ] }, { - denom: 'stake', - exponent: 6 + "denom": "stake", + "exponent": 6 } ], - base: 'ustake', - name: 'Stake', - display: 'stake', - symbol: 'STAKE' + "base": "ustake", + "name": "Stake", + "display": "stake", + "symbol": "STAKE" }, { - description: - 'Love is a test tokenfactory asset controlled by the Strangelove Team', - denom_units: [ + "description": "Love is a test tokenfactory asset controlled by the Strangelove Team", + "denom_units": [ { - denom: 'ulove', - exponent: 0, - aliases: ['microlove'] + "denom": "ulove", + "exponent": 0, + "aliases": [ + "microlove" + ] }, { - denom: 'love', - exponent: 6 + "denom": "love", + "exponent": 6 } ], - base: 'ulove', - display: 'love', - name: 'Love', - symbol: 'LOVE' + "base": "ulove", + "display": "love", + "name": "Love", + "symbol": "LOVE" }, { - description: 'USD Coin', - denom_units: [ + "description": "USD Coin", + "denom_units": [ { - denom: 'uusdc', - exponent: 0, - aliases: ['microusdc'] + "denom": "uusdc", + "exponent": 0, + "aliases": [ + "microusdc" + ] }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - base: 'uusdc', - display: 'usdc', - name: 'USD Coin', - symbol: 'USDC', - traces: [ + "base": "uusdc", + "display": "usdc", + "name": "USD Coin", + "symbol": "USDC", + "traces": [ { - type: 'test-mintage', - counterparty: { - chain_name: 'noble', - base_denom: 'uusdc' + "type": "test-mintage", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdc" }, - provider: 'Circle' + "provider": "Circle" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ] }, { - description: - 'USDLR is a fiat-backed stablecoin issued by Stable. Stable pays DeFi protocols who distribute USDLR.', - denom_units: [ + "description": "USDLR is a fiat-backed stablecoin issued by Stable. Stable pays DeFi protocols who distribute USDLR.", + "denom_units": [ { - denom: 'uusdlr', - exponent: 0, - aliases: ['microusdlr'] + "denom": "uusdlr", + "exponent": 0, + "aliases": [ + "microusdlr" + ] }, { - denom: 'usdlr', - exponent: 6 + "denom": "usdlr", + "exponent": 6 } ], - base: 'uusdlr', - display: 'usdlr', - name: 'USDLR by Stable', - symbol: 'USDLR', - traces: [ + "base": "uusdlr", + "display": "usdlr", + "name": "USDLR by Stable", + "symbol": "USDLR", + "traces": [ { - type: 'test-mintage', - counterparty: { - chain_name: 'noble', - base_denom: 'uusdlr' + "type": "test-mintage", + "counterparty": { + "chain_name": "noble", + "base_denom": "uusdlr" }, - provider: 'Stable' + "provider": "Stable" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'noistestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "noistestnet", + "assets": [ { - description: 'The native token of Nois', - denom_units: [ + "description": "The native token of Nois", + "denom_units": [ { - denom: 'unois', - exponent: 0 + "denom": "unois", + "exponent": 0 }, { - denom: 'nois', - exponent: 6 + "denom": "nois", + "exponent": 6 } ], - base: 'unois', - name: 'Nois', - display: 'nois', - symbol: 'NOIS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + "base": "unois", + "name": "Nois", + "display": "nois", + "symbol": "NOIS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" }, - keywords: ['nois', 'randomness', 'drand', 'wasm'], - images: [ + "keywords": [ + "nois", + "randomness", + "drand", + "wasm" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'nolustestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "nolustestnet", + "assets": [ { - description: 'The native token of Nolus chain', - denom_units: [ + "description": "The native token of Nolus chain", + "denom_units": [ { - denom: 'unls', - exponent: 0 + "denom": "unls", + "exponent": 0 }, { - denom: 'nls', - exponent: 6 + "denom": "nls", + "exponent": 6 } ], - base: 'unls', - name: 'Nolus', - display: 'nls', - symbol: 'NLS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg' + "base": "unls", + "name": "Nolus", + "display": "nls", + "symbol": "NLS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'ojotestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "ojotestnet", + "assets": [ { - description: 'The native token of Ojo Network', - denom_units: [ + "description": "The native token of Ojo Network", + "denom_units": [ { - denom: 'uojo', - exponent: 0 + "denom": "uojo", + "exponent": 0 }, { - denom: 'ojo', - exponent: 6 + "denom": "ojo", + "exponent": 6 } ], - base: 'uojo', - name: 'ojo', - display: 'ojo', - symbol: 'OJO', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ojotestnet/images/ojo.svg' + "base": "uojo", + "name": "ojo", + "display": "ojo", + "symbol": "OJO", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ojotestnet/images/ojo.svg" }, - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ojotestnet/images/ojo.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ojotestnet/images/ojo.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'okp4testnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "okp4testnet", + "assets": [ { - description: 'The native token of ØKP4.', - denom_units: [ + "description": "The native token of ØKP4.", + "denom_units": [ { - denom: 'uknow', - exponent: 0 + "denom": "uknow", + "exponent": 0 }, { - denom: 'know', - exponent: 6 + "denom": "know", + "exponent": 6 } ], - base: 'uknow', - name: 'OKP4 Network', - display: 'know', - symbol: 'KNOW', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png' + "base": "uknow", + "name": "OKP4 Network", + "display": "know", + "symbol": "KNOW", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'osmosistestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "osmosistestnet", + "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'], - images: [ + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } ] }, { - denom_units: [ + "denom_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'], - images: [ + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + "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" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'osmosistestnet4', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "osmosistestnet4", + "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'], - images: [ + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } ] }, { - denom_units: [ + "denom_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'], - images: [ + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + "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" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'permtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "permtestnet", + "assets": [ { - description: 'Perm A Permissioned Blockchain', - denom_units: [ + "description": "Perm A Permissioned Blockchain", + "denom_units": [ { - denom: 'uperm', - exponent: 0 + "denom": "uperm", + "exponent": 0 }, { - denom: 'perm', - exponent: 6 + "denom": "perm", + "exponent": 6 } ], - base: 'uperm', - name: 'Perm', - display: 'perm', - symbol: 'PERM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/permtestnet/images/Perm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/permtestnet/images/Perm.svg' + "base": "uperm", + "name": "Perm", + "display": "perm", + "symbol": "PERM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/permtestnet/images/Perm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/permtestnet/images/Perm.svg" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/permtestnet/images/Perm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/permtestnet/images/Perm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/permtestnet/images/Perm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/permtestnet/images/Perm.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'persistencetestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "persistencetestnet", + "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', - images: [ + "coingecko_id": "persistence", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" } ] }, { - description: 'PSTAKE Liquid-Staked ATOM', - denom_units: [ + "description": "PSTAKE Liquid-Staked ATOM", + "denom_units": [ { - denom: 'stk/uatom', - exponent: 0, - aliases: [] + "denom": "stk/uatom", + "exponent": 0, + "aliases": [] }, { - denom: 'stkatom', - exponent: 6, - aliases: ['stk/atom'] + "denom": "stkatom", + "exponent": 6, + "aliases": [ + "stk/atom" + ] } ], - base: 'stk/uatom', - name: 'PSTAKE staked ATOM', - display: 'stkatom', - symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + "base": "stk/uatom", + "name": "PSTAKE staked ATOM", + "display": "stkatom", + "symbol": "stkATOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'persistencetestnet2', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "persistencetestnet2", + "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', - images: [ + "coingecko_id": "persistence", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" } ] }, { - description: 'PSTAKE Liquid-Staked ATOM', - denom_units: [ + "description": "PSTAKE Liquid-Staked ATOM", + "denom_units": [ { - denom: 'stk/uatom', - exponent: 0, - aliases: [] + "denom": "stk/uatom", + "exponent": 0, + "aliases": [] }, { - denom: 'stkatom', - exponent: 6, - aliases: ['stk/atom'] + "denom": "stkatom", + "exponent": 6, + "aliases": [ + "stk/atom" + ] } ], - base: 'stk/uatom', - name: 'PSTAKE staked ATOM', - display: 'stkatom', - symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + "base": "stk/uatom", + "name": "PSTAKE staked ATOM", + "display": "stkatom", + "symbol": "stkATOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" } ] }, { - description: 'PSTAKE Liquid-Staked OSMO', - denom_units: [ + "description": "PSTAKE Liquid-Staked OSMO", + "denom_units": [ { - denom: 'stk/uosmo', - exponent: 0, - aliases: [] + "denom": "stk/uosmo", + "exponent": 0, + "aliases": [] }, { - denom: 'stkosmo', - exponent: 6, - aliases: ['stk/osmo'] + "denom": "stkosmo", + "exponent": 6, + "aliases": [ + "stk/osmo" + ] } ], - base: 'stk/uosmo', - name: 'PSTAKE staked OSMO', - display: 'stkosmo', - symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + "base": "stk/uosmo", + "name": "PSTAKE staked OSMO", + "display": "stkosmo", + "symbol": "stkOSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg" } ] }, { - description: 'PSTAKE Liquid-Staked DV4TNT', - denom_units: [ + "description": "PSTAKE Liquid-Staked DV4TNT", + "denom_units": [ { - denom: 'stk/adv4tnt', - exponent: 0, - aliases: [] + "denom": "stk/adv4tnt", + "exponent": 0, + "aliases": [] }, { - denom: 'stkdv4tnt', - exponent: 18, - aliases: ['stk/dv4tnt'] + "denom": "stkdv4tnt", + "exponent": 18, + "aliases": [ + "stk/dv4tnt" + ] } ], - base: 'stk/adv4tnt', - name: 'PSTAKE staked DV4TNT', - display: 'stkdv4tnt', - symbol: 'stkDV4TNT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdv4tnt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdv4tnt.svg' + "base": "stk/adv4tnt", + "name": "PSTAKE staked DV4TNT", + "display": "stkdv4tnt", + "symbol": "stkDV4TNT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdv4tnt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdv4tnt.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdv4tnt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdv4tnt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdv4tnt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdv4tnt.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'pryzmtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "pryzmtestnet", + "assets": [ { - description: 'The native token of PRYZM', - denom_units: [ + "description": "The native token of PRYZM", + "denom_units": [ { - denom: 'upryzm', - exponent: 0 + "denom": "upryzm", + "exponent": 0 }, { - denom: 'pryzm', - exponent: 6 + "denom": "pryzm", + "exponent": 6 } ], - base: 'upryzm', - name: 'Pryzm', - display: 'pryzm', - symbol: 'PRYZM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.svg' + "base": "upryzm", + "name": "Pryzm", + "display": "pryzm", + "symbol": "PRYZM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'quasartestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "quasartestnet", + "assets": [ { - description: 'The native token of Quasar', - denom_units: [ + "description": "The native token of Quasar", + "denom_units": [ { - denom: 'uqsr', - exponent: 0, - aliases: [] + "denom": "uqsr", + "exponent": 0, + "aliases": [] }, { - denom: 'qsr', - exponent: 6, - aliases: [] + "denom": "qsr", + "exponent": 6, + "aliases": [] } ], - base: 'uqsr', - name: 'Quasar', - display: 'qsr', - symbol: 'QSR' + "base": "uqsr", + "name": "Quasar", + "display": "qsr", + "symbol": "QSR" }, { - denom_units: [ + "denom_units": [ { - denom: 'uayy', - exponent: 0 + "denom": "uayy", + "exponent": 0 }, { - denom: 'ayy', - exponent: 6 + "denom": "ayy", + "exponent": 6 } ], - base: 'uay', - name: 'AYY', - display: 'ayy', - symbol: 'AYY' + "base": "uay", + "name": "AYY", + "display": "ayy", + "symbol": "AYY" }, { - denom_units: [ + "denom_units": [ { - denom: 'uoro', - exponent: 0 + "denom": "uoro", + "exponent": 0 }, { - denom: 'oro', - exponent: 6 + "denom": "oro", + "exponent": 6 } ], - base: 'oro', - name: 'oro', - display: 'oro', - symbol: 'ORO' + "base": "oro", + "name": "oro", + "display": "oro", + "symbol": "ORO" } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'quicksilvertestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "quicksilvertestnet", + "assets": [ { - description: 'QCK - native token of Quicksilver', - denom_units: [ + "description": "QCK - native token of Quicksilver", + "denom_units": [ { - denom: 'uqck', - exponent: 0, - aliases: [] + "denom": "uqck", + "exponent": 0, + "aliases": [] }, { - denom: 'qck', - exponent: 6, - aliases: [] + "denom": "qck", + "exponent": 6, + "aliases": [] } ], - base: 'uqck', - name: 'Quicksilver', - display: 'qck', - symbol: 'QCK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + "base": "uqck", + "name": "Quicksilver", + "display": "qck", + "symbol": "QCK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" }, - coingecko_id: 'quicksilver', - images: [ + "coingecko_id": "quicksilver", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'qwoyntestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "qwoyntestnet", + "assets": [ { - description: - 'QWOYN is the native governance token for the Qwoyn Studios Platform', - denom_units: [ + "description": "QWOYN is the native governance token for the Qwoyn Studios Platform", + "denom_units": [ { - denom: 'uqwoyn', - exponent: 0 + "denom": "uqwoyn", + "exponent": 0 }, { - denom: 'qwoyn', - exponent: 6 + "denom": "qwoyn", + "exponent": 6 } ], - base: 'uqwoyn', - name: 'Qwoyn Blockchain', - display: 'qwoyn', - symbol: 'QWOYN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png' + "base": "uqwoyn", + "name": "Qwoyn Blockchain", + "display": "qwoyn", + "symbol": "QWOYN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'rsprovidertestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "rsprovidertestnet", + "assets": [ { - description: - 'The native staking and governance token of the Replicated Security Testnet.', - denom_units: [ + "description": "The native staking and governance token of the Replicated Security Testnet.", + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'sagatestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "sagatestnet", + "assets": [ { - description: 'The native token of Saga Testnet', - denom_units: [ + "description": "The native token of Saga Testnet", + "denom_units": [ { - denom: 'utsaga', - exponent: 0, - aliases: [] + "denom": "utsaga", + "exponent": 0, + "aliases": [] }, { - denom: 'tsaga', - exponent: 6, - aliases: [] + "denom": "tsaga", + "exponent": 6, + "aliases": [] } ], - base: 'utsaga', - name: 'Saga', - display: 'tsaga', - symbol: 'TSAGA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg' + "base": "utsaga", + "name": "Saga", + "display": "tsaga", + "symbol": "TSAGA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'secretnetworktestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "secretnetworktestnet", + "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', - images: [ + "coingecko_id": "secret", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + "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" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'secretnetworktestnet2', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "secretnetworktestnet2", + "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" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'seidevnet3', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "seidevnet3", + "assets": [ { - description: - 'The native staking and governance token of the Atlantic testnet version of Sei.', - denom_units: [ + "description": "The native staking and governance token of the Atlantic testnet version of Sei.", + "denom_units": [ { - denom: 'usei', - exponent: 0 + "denom": "usei", + "exponent": 0 }, { - denom: 'sei', - exponent: 6 + "denom": "sei", + "exponent": 6 } ], - base: 'usei', - name: 'Sei', - display: 'sei', - symbol: 'SEI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seidevnet3/images/sei.png' + "base": "usei", + "name": "Sei", + "display": "sei", + "symbol": "SEI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seidevnet3/images/sei.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seidevnet3/images/sei.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seidevnet3/images/sei.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'seitestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "seitestnet", + "assets": [ { - description: - 'The native staking and governance token of the Atlantic testnet version of Sei.', - denom_units: [ + "description": "The native staking and governance token of the Atlantic testnet version of Sei.", + "denom_units": [ { - denom: 'usei', - exponent: 0 + "denom": "usei", + "exponent": 0 }, { - denom: 'sei', - exponent: 6 + "denom": "sei", + "exponent": 6 } ], - base: 'usei', - name: 'Sei', - display: 'sei', - symbol: 'SEI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet/images/sei.png' + "base": "usei", + "name": "Sei", + "display": "sei", + "symbol": "SEI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet/images/sei.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet/images/sei.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet/images/sei.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'seitestnet2', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "seitestnet2", + "assets": [ { - description: - 'The native staking and governance token of the Atlantic testnet version of Sei.', - denom_units: [ + "description": "The native staking and governance token of the Atlantic testnet version of Sei.", + "denom_units": [ { - denom: 'usei', - exponent: 0 + "denom": "usei", + "exponent": 0 }, { - denom: 'sei', - exponent: 6 + "denom": "sei", + "exponent": 6 } ], - base: 'usei', - name: 'Sei', - display: 'sei', - symbol: 'SEI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet2/images/sei.png' + "base": "usei", + "name": "Sei", + "display": "sei", + "symbol": "SEI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet2/images/sei.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet2/images/sei.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet2/images/sei.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'selfchaindevnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "selfchaindevnet", + "assets": [ { - description: - 'Self Chain Is the First Modular Intent-Centric Access Layer L1 Blockchain and Keyless Wallet Infrastructure Service That Uses MPC-TSS/AA for Multi-Chain Web3 Access.', - denom_units: [ + "description": "Self Chain Is the First Modular Intent-Centric Access Layer L1 Blockchain and Keyless Wallet Infrastructure Service That Uses MPC-TSS/AA for Multi-Chain Web3 Access.", + "denom_units": [ { - denom: 'uself', - exponent: 0 + "denom": "uself", + "exponent": 0 }, { - denom: 'self', - exponent: 6 + "denom": "self", + "exponent": 6 } ], - base: 'uself', - name: 'self', - display: 'self', - symbol: 'SELF', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/selfchaindevnet/images/selfchain.png' + "base": "uself", + "name": "self", + "display": "self", + "symbol": "SELF", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/selfchaindevnet/images/selfchain.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/selfchaindevnet/images/selfchain.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/selfchaindevnet/images/selfchain.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'sgetestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "sgetestnet", + "assets": [ { - description: - 'The SGE token is primarily a governance token for the SGE Network blockchain.', - denom_units: [ + "description": "The SGE token is primarily a governance token for the SGE Network blockchain.", + "denom_units": [ { - denom: 'usge', - exponent: 0, - aliases: [] + "denom": "usge", + "exponent": 0, + "aliases": [] }, { - denom: 'usge', - exponent: 6, - aliases: [] + "denom": "usge", + "exponent": 6, + "aliases": [] } ], - base: 'usge', - name: 'SGE Testnet', - display: 'sge', - symbol: 'SGE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png' + "base": "usge", + "name": "SGE Testnet", + "display": "sge", + "symbol": "SGE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'sixtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "sixtestnet", + "assets": [ { - description: 'The native staking token of the SIX Protocol.', - denom_units: [ + "description": "The native staking token of the SIX Protocol.", + "denom_units": [ { - denom: 'usix', - exponent: 0 + "denom": "usix", + "exponent": 0 }, { - denom: 'six', - exponent: 6 + "denom": "six", + "exponent": 6 } ], - base: 'usix', - name: 'Six token', - display: 'six', - symbol: 'six', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sixtestnet/images/six.png' + "base": "usix", + "name": "Six token", + "display": "six", + "symbol": "six", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sixtestnet/images/six.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sixtestnet/images/six.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sixtestnet/images/six.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'sourcetestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "sourcetestnet", + "assets": [ { - description: 'The native token of SOURCE Chain', - denom_units: [ + "description": "The native token of SOURCE Chain", + "denom_units": [ { - denom: 'usource', - exponent: 0 + "denom": "usource", + "exponent": 0 }, { - denom: 'source', - exponent: 6 + "denom": "source", + "exponent": 6 } ], - base: 'usource', - name: 'Source Testnet', - display: 'source', - symbol: 'SOURCE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.svg' + "base": "usource", + "name": "Source Testnet", + "display": "source", + "symbol": "SOURCE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.svg" }, - coingecko_id: 'source-protocol', - images: [ + "coingecko_id": "source-protocol", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'stargazetestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "stargazetestnet", + "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', - images: [ + "coingecko_id": "stargaze", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'statesettestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "statesettestnet", + "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' + "base": "ustate", + "name": "Stateset", + "display": "state", + "symbol": "STATE" } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'stridetestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "stridetestnet", + "assets": [ { - description: 'The native token of Stride', - denom_units: [ + "description": "The native token of Stride", + "denom_units": [ { - denom: 'ustrd', - exponent: 0 + "denom": "ustrd", + "exponent": 0 }, { - denom: 'strd', - exponent: 6 + "denom": "strd", + "exponent": 6 } ], - base: 'ustrd', - name: 'Stride', - display: 'strd', - symbol: 'STRD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "base": "ustrd", + "name": "Stride", + "display": "strd", + "symbol": "STRD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'temporaltestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "temporaltestnet", + "assets": [ { - description: - 'The native staking and governance token of the testnet version of Temporal.', - denom_units: [ + "description": "The native staking and governance token of the testnet version of Temporal.", + "denom_units": [ { - denom: 'utprl', - exponent: 0 + "denom": "utprl", + "exponent": 0 }, { - denom: 'tprl', - exponent: 6 + "denom": "tprl", + "exponent": 6 } ], - base: 'utprl', - name: 'TPRL', - display: 'tprl', - symbol: 'TPRL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/temporaltestnet/images/temporal.png' + "base": "utprl", + "name": "TPRL", + "display": "tprl", + "symbol": "TPRL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/temporaltestnet/images/temporal.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/temporaltestnet/images/temporal.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/temporaltestnet/images/temporal.png" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'terpnettestnet', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "terpnettestnet", + "assets": [ { - description: - "Terp Token (TERP) is the Terp 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": "Terp Token (TERP) is the Terp 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: 'uterpx', - exponent: 0 + "denom": "uterpx", + "exponent": 0 }, { - denom: 'terpx', - exponent: 6 + "denom": "terpx", + "exponent": 6 } ], - base: 'uterpx', - name: 'Terp Testnet Token', - display: 'terpx', - symbol: 'TERPX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png' + "base": "uterpx", + "name": "Terp Testnet Token", + "display": "terpx", + "symbol": "TERPX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png" } ] }, { - description: - "Persy Gas Token (Persy) is the Terp 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": "Persy Gas Token (Persy) is the Terp 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: 'uthiolx', - exponent: 0 + "denom": "uthiolx", + "exponent": 0 }, { - denom: 'thiolx', - exponent: 6 + "denom": "thiolx", + "exponent": 6 } ], - base: 'uthiolx', - name: 'Thiol Testnet Gas Token', - display: 'thiolx', - symbol: 'THIOLX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png' + "base": "uthiolx", + "name": "Thiol Testnet Gas Token", + "display": "thiolx", + "symbol": "THIOLX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/thiol.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'terra2testnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "terra2testnet", + "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/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + "base": "uluna", + "name": "Luna", + "display": "luna", + "symbol": "LUNA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" }, - coingecko_id: 'terra-luna-2', - images: [ + "coingecko_id": "terra-luna-2", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'ulastestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "ulastestnet", + "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/ulastestnet/images/logo.png' + "base": "uulas", + "name": "ULAS Network", + "display": "ULAS", + "symbol": "ULAS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ulastestnet/images/logo.png" }, - coingecko_id: 'ulas', - images: [ + "coingecko_id": "ulas", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ulastestnet/images/logo.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ulastestnet/images/logo.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'uniontestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "uniontestnet", + "assets": [ { - description: 'The native token of union', - denom_units: [ + "description": "The native token of union", + "denom_units": [ { - denom: 'muno', - exponent: 0, - aliases: [] + "denom": "muno", + "exponent": 0, + "aliases": [] }, { - denom: 'uno', - exponent: 6, - aliases: [] + "denom": "uno", + "exponent": 6, + "aliases": [] } ], - base: 'muno', - name: 'union', - display: 'union', - symbol: 'UNION', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png' + "base": "muno", + "name": "union", + "display": "union", + "symbol": "UNION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" }, - coingecko_id: 'unionlabs', - keywords: ['staking'], - images: [ + "coingecko_id": "unionlabs", + "keywords": [ + "staking" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'upticktestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "upticktestnet", + "assets": [ { - description: 'The native token of Uptick', - denom_units: [ + "description": "The native token of Uptick", + "denom_units": [ { - denom: 'auptick', - exponent: 0 + "denom": "auptick", + "exponent": 0 }, { - denom: 'uptick', - exponent: 18 + "denom": "uptick", + "exponent": 18 } ], - base: 'auptick', - name: 'Uptick', - display: 'uptick', - symbol: 'UPTICK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/upticktestnet/images/uptick.png' + "base": "auptick", + "name": "Uptick", + "display": "uptick", + "symbol": "UPTICK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/upticktestnet/images/uptick.png" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/upticktestnet/images/uptick.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/upticktestnet/images/uptick.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'vincechaintestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "vincechaintestnet", + "assets": [ { - description: - 'Vince Chain is an Industry-Grade Blockchain For DeFi, Remote work, Gaming, Web3 and will power the new internet.', - denom_units: [ + "description": "Vince Chain is an Industry-Grade Blockchain For DeFi, Remote work, Gaming, Web3 and will power the new internet.", + "denom_units": [ { - denom: 'avce', - exponent: 0 + "denom": "avce", + "exponent": 0 }, { - denom: 'vce', - exponent: 18 + "denom": "vce", + "exponent": 18 } ], - base: 'avce', - name: 'VinceChain', - display: 'vce', - symbol: 'VCE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png' + "base": "avce", + "name": "VinceChain", + "display": "vce", + "symbol": "VCE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'wavehashtestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "wavehashtestnet", + "assets": [ { - description: 'WaveHash A Permissioned Blockchain', - denom_units: [ + "description": "WaveHash A Permissioned Blockchain", + "denom_units": [ { - denom: 'uwahax', - exponent: 0 + "denom": "uwahax", + "exponent": 0 }, { - denom: 'wahax', - exponent: 6 + "denom": "wahax", + "exponent": 6 } ], - base: 'uwahax', - name: 'WaveHash', - display: 'wahax', - symbol: 'WAHAX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/wavehashtestnet/images/WaveHash.png' + "base": "uwahax", + "name": "WaveHash", + "display": "wahax", + "symbol": "WAHAX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/wavehashtestnet/images/WaveHash.png" }, - coingecko_id: '', - images: [ + "coingecko_id": "", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/wavehashtestnet/images/WaveHash.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/wavehashtestnet/images/WaveHash.png" } ] } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'xiontestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "xiontestnet", + "assets": [ { - description: 'The native staking token of the Xion network.', - denom_units: [ + "description": "The native staking token of the Xion network.", + "denom_units": [ { - denom: 'uxion', - exponent: 0, - aliases: ['microxion'] + "denom": "uxion", + "exponent": 0, + "aliases": [ + "microxion" + ] }, { - denom: 'mxion', - exponent: 3, - aliases: ['millixion'] + "denom": "mxion", + "exponent": 3, + "aliases": [ + "millixion" + ] }, { - denom: 'XION', - exponent: 6, - aliases: ['xion'] + "denom": "XION", + "exponent": 6, + "aliases": [ + "xion" + ] } ], - base: 'uxion', - display: 'XION', - name: 'xion', - symbol: 'XION', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png' + "base": "uxion", + "display": "XION", + "name": "xion", + "symbol": "XION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png" } ] }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2', - exponent: 0, - aliases: ['uaxl'] + "denom": "ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2", + "exponent": 0, + "aliases": [ + "uaxl" + ] }, { - denom: 'axl', - exponent: 6 + "denom": "axl", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2', - name: 'Axelar AXL Token', - display: 'axl', - symbol: 'AXL', - traces: [ + "type_asset": "ics20", + "base": "ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2", + "name": "Axelar AXL Token", + "display": "axl", + "symbol": "AXL", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'axelartestnet', - base_denom: 'uaxl', - channel_id: 'channel-283' + "type": "ibc", + "counterparty": { + "chain_name": "axelartestnet", + "base_denom": "uaxl", + "channel_id": "channel-283" }, - chain: { - channel_id: 'channel-5', - path: 'transfer/channel-5/uaxl' + "chain": { + "channel_id": "channel-5", + "path": "transfer/channel-5/uaxl" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'axelartestnet', - base_denom: 'uaxl' + "image_sync": { + "chain_name": "axelartestnet", + "base_denom": "uaxl" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333', - exponent: 0, - aliases: ['uosmo'] + "denom": "ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333", + "exponent": 0, + "aliases": [ + "uosmo" + ] }, { - denom: 'osmo', - exponent: 6 + "denom": "osmo", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/6AE2756AA7EAA8FA06E11472EA05CA681BD8D3FBC1AAA9F06C79D1EC1C90DC9B', - name: 'Osmosis OSMO Token', - display: 'osmo', - symbol: 'OSMO', - traces: [ + "type_asset": "ics20", + "base": "ibc/6AE2756AA7EAA8FA06E11472EA05CA681BD8D3FBC1AAA9F06C79D1EC1C90DC9B", + "name": "Osmosis OSMO Token", + "display": "osmo", + "symbol": "OSMO", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'osmosistestnet', - base_denom: 'uosmo', - channel_id: 'channel-1299' + "type": "ibc", + "counterparty": { + "chain_name": "osmosistestnet", + "base_denom": "uosmo", + "channel_id": "channel-1299" }, - chain: { - channel_id: 'channel-8', - path: 'transfer/channel-8/uosmo' + "chain": { + "channel_id": "channel-8", + "path": "transfer/channel-8/uosmo" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'osmosistestnet', - base_denom: 'uosmo' + "image_sync": { + "chain_name": "osmosistestnet", + "base_denom": "uosmo" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" } }, { - denom_units: [ + "denom_units": [ { - denom: - 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F', - exponent: 0, - aliases: ['uusdc'] + "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "exponent": 0, + "aliases": [ + "uusdc" + ] }, { - denom: 'usdc', - exponent: 6 + "denom": "usdc", + "exponent": 6 } ], - type_asset: 'ics20', - base: 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F', - name: 'Noble USDC Token', - display: 'usdc', - symbol: 'USDC', - traces: [ + "type_asset": "ics20", + "base": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "name": "Noble USDC Token", + "display": "usdc", + "symbol": "USDC", + "traces": [ { - type: 'ibc', - counterparty: { - chain_name: 'nobletestnet', - base_denom: 'uusdc', - channel_id: 'channel-17' + "type": "ibc", + "counterparty": { + "chain_name": "nobletestnet", + "base_denom": "uusdc", + "channel_id": "channel-17" }, - chain: { - channel_id: 'channel-9', - path: 'transfer/channel-9/uusdc' + "chain": { + "channel_id": "channel-9", + "path": "transfer/channel-9/uusdc" } } ], - images: [ + "images": [ { - image_sync: { - chain_name: 'nobletestnet', - base_denom: 'uusdc' + "image_sync": { + "chain_name": "nobletestnet", + "base_denom": "uusdc" }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" } } ] }, { - $schema: '../../assetlist.schema.json', - chain_name: 'zetachaintestnet', - assets: [ + "$schema": "../../assetlist.schema.json", + "chain_name": "zetachaintestnet", + "assets": [ { - description: 'The native token of ZetaChain', - denom_units: [ + "description": "The native token of ZetaChain", + "denom_units": [ { - denom: 'azeta', - exponent: 0 + "denom": "azeta", + "exponent": 0 }, { - denom: 'tzeta', - exponent: 18 + "denom": "tzeta", + "exponent": 18 } ], - base: 'azeta', - name: 'ZetaChain Testnet', - display: 'tzeta', - symbol: 'tZETA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zetachaintestnet/images/zetachaintestnet.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zetachaintestnet/images/zetachaintestnet.svg' + "base": "azeta", + "name": "ZetaChain Testnet", + "display": "tzeta", + "symbol": "tZETA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zetachaintestnet/images/zetachaintestnet.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zetachaintestnet/images/zetachaintestnet.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zetachaintestnet/images/zetachaintestnet.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zetachaintestnet/images/zetachaintestnet.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zetachaintestnet/images/zetachaintestnet.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zetachaintestnet/images/zetachaintestnet.svg" } ] } ] }, { - $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 + "denom": "utgd", + "exponent": 0 }, { - denom: 'tgd', - exponent: 6 + "denom": "tgd", + "exponent": 6 } ], - 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', - images: [ + "coingecko_id": "tgrade", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + "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" } ] } ] }, { - $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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + "base": "uumee", + "name": "Umee", + "display": "umee", + "symbol": "UMEE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg" }, - coingecko_id: 'umee', - images: [ + "coingecko_id": "umee", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'unification', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "unification", + "assets": [ { - description: - 'Staking and governance coin for the Unification Blockchain', - denom_units: [ + "description": "Staking and governance coin for the Unification Blockchain", + "denom_units": [ { - denom: 'nund', - exponent: 0 + "denom": "nund", + "exponent": 0 }, { - denom: 'FUND', - exponent: 9 + "denom": "FUND", + "exponent": 9 } ], - base: 'nund', - name: 'Unification Network', - display: 'FUND', - symbol: 'FUND', - images: [ + "base": "nund", + "name": "Unification Network", + "display": "FUND", + "symbol": "FUND", + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg', - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg" }, - coingecko_id: 'unification' + "coingecko_id": "unification" } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'ununifi', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "ununifi", + "assets": [ { - description: 'The governance token of UnUniFi protocol.', - denom_units: [ + "description": "The governance token of UnUniFi protocol.", + "denom_units": [ { - denom: 'uguu', - exponent: 0 + "denom": "uguu", + "exponent": 0 }, { - denom: 'guu', - exponent: 6 + "denom": "guu", + "exponent": 6 } ], - base: 'uguu', - name: 'UnUniFi', - display: 'guu', - symbol: 'GUU', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.svg' + "base": "uguu", + "name": "UnUniFi", + "display": "guu", + "symbol": "GUU", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.svg" }, - keywords: ['staking', 'wasm', 'assets', 'nft'], - images: [ + "keywords": [ + "staking", + "wasm", + "assets", + "nft" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'uptick', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "uptick", + "assets": [ { - description: 'The native token of Uptick', - denom_units: [ + "description": "The native token of Uptick", + "denom_units": [ { - denom: 'auptick', - exponent: 0 + "denom": "auptick", + "exponent": 0 }, { - denom: 'uptick', - exponent: 18 + "denom": "uptick", + "exponent": 18 } ], - base: 'auptick', - name: 'Uptick', - display: 'uptick', - symbol: 'UPTICK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.svg' + "base": "auptick", + "name": "Uptick", + "display": "uptick", + "symbol": "UPTICK", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.svg" } ] } ] }, { - $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 + "denom": "uvdl", + "exponent": 0 }, { - denom: 'vdl', - exponent: 6 + "denom": "vdl", + "exponent": 6 } ], - base: 'uvdl', - name: 'Vidulum', - display: 'vdl', - symbol: 'VDL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + "base": "uvdl", + "name": "Vidulum", + "display": "vdl", + "symbol": "VDL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg" }, - coingecko_id: 'vidulum', - images: [ + "coingecko_id": "vidulum", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg" } ] } ] }, { - $schema: '../assetlist.schema.json', - chain_name: 'xpla', - assets: [ + "$schema": "../assetlist.schema.json", + "chain_name": "xpla", + "assets": [ { - description: 'The native staking token of XPLA.', - denom_units: [ + "description": "The native staking token of XPLA.", + "denom_units": [ { - denom: 'axpla', - exponent: 0 + "denom": "axpla", + "exponent": 0 }, { - denom: 'xpla', - exponent: 18 + "denom": "xpla", + "exponent": 18 } ], - base: 'axpla', - name: 'Xpla', - display: 'xpla', - symbol: 'XPLA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + "base": "axpla", + "name": "Xpla", + "display": "xpla", + "symbol": "XPLA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg" }, - coingecko_id: 'xpla', - images: [ + "coingecko_id": "xpla", + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg" } ] } @@ -32982,3 +32958,4 @@ const assets: AssetList[] = [ } ]; 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 00d56d4a1..8ade119eb 100644 --- a/packages/chain-registry/src/chains.ts +++ b/packages/chain-registry/src/chains.ts @@ -1,49304 +1,30584 @@ import { Chain } from '@chain-registry/types'; const chains: Chain[] = [ { - $schema: '../chain.schema.json', - chain_name: '8ball', - status: 'live', - website: 'https://8ball.info/', - network_type: 'mainnet', - pretty_name: '8ball', - chain_id: 'eightball-1', - bech32_prefix: '8ball', - daemon_name: '8ball', - node_home: '$HOME/.8ball', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uebl', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uebl' - } - ] - }, - codebase: { - git_repo: 'https://secp256k1.net/8ball.git', - recommended_version: 'v1', - compatible_versions: ['v1'], - cosmos_sdk_version: '0.46.7', - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': 'https://8ball.info/8ball.tar.gz' - }, - genesis: { - genesis_url: 'https://8ball.info/8ball-genesis.json' - }, - versions: [ - { - name: 'v1', - recommended_version: 'v1', - compatible_versions: ['v1'], - cosmos_sdk_version: '0.46.7', - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': 'https://8ball.info/8ball.tar.gz' - } + "$schema": "../chain.schema.json", + "chain_name": "8ball", + "status": "live", + "website": "https://8ball.info/", + "network_type": "mainnet", + "pretty_name": "8ball", + "chain_id": "eightball-1", + "bech32_prefix": "8ball", + "daemon_name": "8ball", + "node_home": "$HOME/.8ball", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uebl", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' - }, - peers: { - seeds: [], - persistent_peers: [ - { - id: 'fca96d0a1d7357afb226a49c4c7d9126118c37e9', - address: 'one.8ball.info:26656', - provider: '8ball' - }, - { - id: 'aa918e17c8066cd3b031f490f0019c1a95afe7e3', - address: 'two.8ball.info:26656', - provider: '8ball' - }, + "staking": { + "staking_tokens": [ { - id: 'ce168b8022e525650011352175fa020ce75edcfa', - address: '45.141.122.178:34656', - provider: 'genznodes' - }, - { - id: '49778546e7511a1cd6dde65805cd70547c75ce2b', - address: 'rpc.8ball.nodexcapital.com:11056', - provider: 'NodeX Validator' + "denom": "uebl" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46.7", + "cosmwasm_enabled": true + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.8ball.info/', - provider: '8ball' + "address": "https://rpc.8ball.info/", + "provider": "8ball" }, { - address: 'https://rpc.8ball.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.8ball.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://8ball-rpc.genznodes.dev/', - provider: 'genznodes' + "address": "https://8ball-rpc.genznodes.dev/", + "provider": "genznodes" } ], - rest: [ + "rest": [ { - address: 'https://rest.8ball.info', - provider: '8ball' + "address": "https://rest.8ball.info", + "provider": "8ball" }, { - address: 'https://api.8ball.nodestake.top', - provider: 'NodeStake' + "address": "https://api.8ball.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://8ball-api.genznodes.dev/', - provider: 'genznodes' + "address": "https://8ball-api.genznodes.dev/", + "provider": "genznodes" }, { - address: 'https://api-8ball.nodine.id/', - provider: 'Nodine.ID' + "address": "https://api-8ball.nodine.id/", + "provider": "Nodine.ID" } ], - grpc: [ + "grpc": [ { - address: 'grpc.8ball.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.8ball.nodestake.top:443", + "provider": "NodeStake" }, { - address: '8ball-grpc.genznodes.dev:31090', - provider: 'genznodes' + "address": "8ball-grpc.genznodes.dev:31090", + "provider": "genznodes" }, { - address: 'https://grpc.8ball.nodexcapital.com:443', - provider: 'NodeX Validator' + "address": "https://grpc.8ball.nodexcapital.com:443", + "provider": "NodeX Validator" } ] }, - explorers: [ + "explorers": [ { - url: 'https://explorer.8ball.info/', - tx_page: 'https://explorer.8ball.info/8ball/tx/${txHash}' + "url": "https://explorer.8ball.info/", + "tx_page": "https://explorer.8ball.info/8ball/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/8ball', - tx_page: 'https://ping.pub/8ball/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/8ball", + "tx_page": "https://ping.pub/8ball/tx/${txHash}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/8ball/', - tx_page: 'https://explorer.nodestake.top/8ball/tx/${txHash}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/8ball/", + "tx_page": "https://explorer.nodestake.top/8ball/tx/${txHash}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/8ball', - tx_page: 'https://explorer.tcnetwork.io/8ball/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/8ball", + "tx_page": "https://explorer.tcnetwork.io/8ball/transaction/${txHash}" }, { - kind: 'TC Network', - url: 'https://explorer.co.id/8ball', - tx_page: 'https://explorer.co.id/8ball/tx/${txHash}' + "kind": "TC Network", + "url": "https://explorer.co.id/8ball", + "tx_page": "https://explorer.co.id/8ball/tx/${txHash}" }, { - kind: 'NODEXPLORER', - url: 'https://explorer.nodexcapital.com/8ball', - tx_page: 'https://explorer.nodexcapital.com/8ball/tx/${txHash}' + "kind": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com/8ball", + "tx_page": "https://explorer.nodexcapital.com/8ball/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'acrechain', - status: 'live', - network_type: 'mainnet', - website: 'https://arable.finance/', - pretty_name: 'Acrechain', - chain_id: 'acre_9052-1', - bech32_prefix: 'acre', - node_home: '$HOME/.acred', - daemon_name: 'acred', - key_algos: ['ethsecp256k1'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'aacre', - fixed_min_gas_price: 250000000, - low_gas_price: 20000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "acrechain", + "status": "live", + "network_type": "mainnet", + "website": "https://arable.finance/", + "pretty_name": "Acrechain", + "chain_id": "acre_9052-1", + "bech32_prefix": "acre", + "node_home": "$HOME/.acred", + "daemon_name": "acred", + "key_algos": [ + "ethsecp256k1" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'aacre' + "denom": "aacre", + "fixed_min_gas_price": 250000000, + "low_gas_price": 20000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - codebase: { - git_repo: 'https://github.com/ArableProtocol/acrechain', - recommended_version: 'v1.1.1', - compatible_versions: ['v1.1.1'], - binaries: {}, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/ArableProtocol/acrechain/main/networks/mainnet/acre_9052-1/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.1.1', - recommended_version: 'v1.1.1', - compatible_versions: ['v1.1.1'], - binaries: {} + "denom": "aacre" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' - }, - peers: { - seeds: [ - { - id: 'ef28f065e24d60df275b06ae9f7fed8ba0823448', - address: '46.4.81.204:34656', - provider: 'Kalia Network' - }, - { - id: '1264ee73a2f40a16c2cbd80c1a824aad7cb082e4', - address: '149.102.146.252:26656', - provider: 'D-Stake' - }, - { - id: 'bac90a590452337700e0033315e96430d19a3ffa', - address: '23.106.238.167:26656', - provider: 'Synergy Nodes' - }, - { - id: 'd86d7a9d8059ae726f3322ff1eb9e2797fe62a72', - address: '65.108.233.44:26616', - provider: 'StakeTab' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'acrechain-mainnet-seed.autostake.com:26956', - provider: 'AutoStake 🛡️ Slash Protected' - } - ], - persistent_peers: [ - { - id: 'ef28f065e24d60df275b06ae9f7fed8ba0823448', - address: '46.4.81.204:34656', - provider: 'Kalia Network' - }, - { - id: '1264ee73a2f40a16c2cbd80c1a824aad7cb082e4', - address: '149.102.146.252:26656', - provider: 'D-Stake' - }, - { - id: 'bac90a590452337700e0033315e96430d19a3ffa', - address: '23.106.238.167:26656', - provider: 'Synergy Nodes' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'acrechain-mainnet-peer.autostake.com:26956', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '82726047c95e4ddf9a0fa82e4c4c4f17cbf3f140', - address: '213.32.24.201:27656', - provider: 'genznodes' - }, - { - id: '7d630b6e517598b4dc84a07c15fe328709a2705b', - address: 'mainnet-acre.konsortech.xyz:13656', - provider: 'KonsorTech' - }, - { - id: '402fca713e6b4ceddbc99684171b26375a39216b', - address: '65.108.195.29:26126', - provider: 'Staketab' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.acre.nodestake.top', - provider: 'nodestake' + "address": "https://rpc.acre.nodestake.top", + "provider": "nodestake" }, { - address: 'https://rpc-acre.synergynodes.com', - provider: 'Synergy Nodes' + "address": "https://rpc-acre.synergynodes.com", + "provider": "Synergy Nodes" }, { - address: 'https://acrechain-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://acrechain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rpc.acre.tcnetwork.io', - provider: 'TC Network' + "address": "https://rpc.acre.tcnetwork.io", + "provider": "TC Network" }, { - address: 'https://mainnet-acre-rpc.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-acre-rpc.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://acred-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://acred-rpc.staketab.org:443", + "provider": "Staketab" } ], - rest: [ + "rest": [ { - address: 'https://lcd-acre.synergynodes.com', - provider: 'Synergy Nodes' + "address": "https://lcd-acre.synergynodes.com", + "provider": "Synergy Nodes" }, { - address: 'https://acrechain-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://acrechain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rest.acre.tcnetwork.io', - provider: 'TC Network' + "address": "https://rest.acre.tcnetwork.io", + "provider": "TC Network" }, { - address: 'https://mainnet-acre-api.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-acre-api.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://acred-rest.staketab.org', - provider: 'Staketab' + "address": "https://acred-rest.staketab.org", + "provider": "Staketab" } ], - grpc: [ + "grpc": [ { - address: 'grpc.acre.nodestake.top:443', - provider: 'Nodestake' + "address": "grpc.acre.nodestake.top:443", + "provider": "Nodestake" }, { - address: 'acrechain-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "acrechain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'acre-grpc.genznodes.dev:27090', - provider: 'genznodes' + "address": "acre-grpc.genznodes.dev:27090", + "provider": "genznodes" }, { - address: 'services.staketab.com:9008', - provider: 'Staketab' + "address": "services.staketab.com:9008", + "provider": "Staketab" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://jsonrpc-acre.d-stake.xyz', - provider: 'D-stake' + "address": "https://jsonrpc-acre.d-stake.xyz", + "provider": "D-stake" }, { - address: 'https://rpc2-acre.synergynodes.com', - provider: 'Synergy Nodes' + "address": "https://rpc2-acre.synergynodes.com", + "provider": "Synergy Nodes" }, { - address: 'https://jsonrpc.acre.nodestake.top', - provider: 'Nodestake' + "address": "https://jsonrpc.acre.nodestake.top", + "provider": "Nodestake" }, { - address: 'https://acre-rpc-evm.genznodes.dev/', - provider: 'genznodes' + "address": "https://acre-rpc-evm.genznodes.dev/", + "provider": "genznodes" }, { - address: 'https://evm-acre.sr20de.xyz/', - provider: 'Sr20de' + "address": "https://evm-acre.sr20de.xyz/", + "provider": "Sr20de" }, { - address: 'https://evm.acrescan.com/', - provider: 'Anonstake' + "address": "https://evm.acrescan.com/", + "provider": "Anonstake" }, { - address: 'https://json-rpc.acre.tcnetwork.io', - provider: 'TC Network' + "address": "https://json-rpc.acre.tcnetwork.io", + "provider": "TC Network" }, { - address: 'https://mainnet-acre-evm.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-acre-evm.konsortech.xyz", + "provider": "KonsorTech" } ] }, - explorers: [ + "explorers": [ { - kind: 'blockscout', - url: 'https://acrescout.mindheartsoul.org', - tx_page: 'https://acrescout.mindheartsoul.org/tx/${txHash}' + "kind": "blockscout", + "url": "https://acrescout.mindheartsoul.org", + "tx_page": "https://acrescout.mindheartsoul.org/tx/${txHash}" }, { - kind: 'blockscout', - url: 'https://acrescan.com', - tx_page: 'https://acrescan.com/tx/${txHash}' + "kind": "blockscout", + "url": "https://acrescan.com", + "tx_page": "https://acrescan.com/tx/${txHash}" }, { - kind: 'blockscout', - url: 'https://acreblockexplorer.jet-node.com', - tx_page: 'https://acreblockexplorer.jet-node.com/tx/${txHash}' + "kind": "blockscout", + "url": "https://acreblockexplorer.jet-node.com", + "tx_page": "https://acreblockexplorer.jet-node.com/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://explorer.nodestake.top/acre', - tx_page: 'https://explorer.nodestake.top/acre/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explorer.nodestake.top/acre", + "tx_page": "https://explorer.nodestake.top/acre/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://cosmosrun.info/acre-mainnet', - tx_page: 'https://cosmosrun.info/acre-mainnet/tx/${txHash}' + "kind": "ping.pub", + "url": "https://cosmosrun.info/acre-mainnet", + "tx_page": "https://cosmosrun.info/acre-mainnet/tx/${txHash}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/acre', - tx_page: 'https://explorer.tcnetwork.io/acre/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/acre", + "tx_page": "https://explorer.tcnetwork.io/acre/transaction/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'agoric', - status: 'live', - network_type: 'mainnet', - website: 'https://agoric.com/', - pretty_name: 'Agoric', - chain_id: 'agoric-3', - bech32_prefix: 'agoric', - daemon_name: 'agd', - node_home: '$HOME/.agoric', - slip44: 564, - alternative_slip44s: [118], - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "agoric", + "status": "live", + "network_type": "mainnet", + "website": "https://agoric.com/", + "pretty_name": "Agoric", + "chain_id": "agoric-3", + "bech32_prefix": "agoric", + "daemon_name": "agd", + "node_home": "$HOME/.agoric", + "slip44": 564, + "alternative_slip44s": [ + 118 + ], + "fees": { + "fee_tokens": [ { - denom: 'ubld', - low_gas_price: 0.03, - average_gas_price: 0.05, - high_gas_price: 0.07 + "denom": "ubld", + "low_gas_price": 0.03, + "average_gas_price": 0.05, + "high_gas_price": 0.07 }, { - denom: 'uist', - low_gas_price: 0.0034, - average_gas_price: 0.007, - high_gas_price: 0.02 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ubld' + "denom": "uist", + "low_gas_price": 0.0034, + "average_gas_price": 0.007, + "high_gas_price": 0.02 } ] }, - codebase: { - git_repo: 'https://github.com/Agoric/agoric-sdk/', - recommended_version: 'agoric-upgrade-8', - compatible_versions: ['agoric-upgrade-8'], - genesis: { - genesis_url: 'https://main.agoric.net/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'agoric-upgrade-8', - recommended_version: 'agoric-upgrade-8', - compatible_versions: ['agoric-upgrade-8'] + "denom": "ubld" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.svg' - }, - description: - 'The Agoric platform makes it safe and seamless to build decentralized apps using your existing JavaScript knowledge.', - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:14456', - provider: 'Polkachu' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'agoric.rpc.kjnodes.com:12759', - provider: 'kjnodes' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'agoric-mainnet-seed.autostake.com:27106', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '6ab5521047ae8e7bb0273a90029a6d445eb1a0a1', - address: 'seed-agoric-01.stakeflow.io:2206', - provider: 'Stakeflow' - } - ], - persistent_peers: [ - { - id: '6e26a1b4afa6889f841d7957e8c2b5d50d32d485', - address: '95.216.53.26:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'agoric-mainnet-peer.autostake.com:27106', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '6ab5521047ae8e7bb0273a90029a6d445eb1a0a1', - address: 'peer-agoric-01.stakeflow.io:2206', - provider: 'Stakeflow' - }, - { - id: 'bf1bffc8a4a78b64f23deedefa6b9bbd4ce11174', - address: 'agoric.mellifera.network:12756', - provider: 'MELLIFERA' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.svg" }, - apis: { - rpc: [ + "description": "The Agoric platform makes it safe and seamless to build decentralized apps using your existing JavaScript knowledge.", + "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" }, { - address: 'https://agoric.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://agoric.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://agoric-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://agoric-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rpc-agoric-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-agoric-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://agoric-rpc.0base.dev', - provider: '0base.vc' + "address": "https://agoric-rpc.0base.dev", + "provider": "0base.vc" }, { - address: 'https://agoric-rpc.stakeangle.com', - provider: 'StakeAngle' + "address": "https://agoric-rpc.stakeangle.com", + "provider": "StakeAngle" }, { - address: 'https://agoric-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://agoric-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://rpc.agoric.stakewith.us', - provider: 'StakeWithUs' + "address": "https://rpc.agoric.stakewith.us", + "provider": "StakeWithUs" }, { - address: 'https://rpc-agoric-ia.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://rpc-agoric-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'https://agoric-rpc.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://agoric-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://rpc.agoric.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.agoric.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - 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" }, { - address: 'https://agoric-api.polkachu.com', - provider: 'Polkachu' + "address": "https://agoric-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://agoric.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://agoric.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://agoric-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://agoric-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://api-agoric-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-agoric-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://agoric-rest.0base.dev', - provider: '0base.vc' + "address": "https://agoric-rest.0base.dev", + "provider": "0base.vc" }, { - address: 'https://agoric-api.w3coins.io', - provider: 'w3coins' + "address": "https://agoric-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://api.agoric.stakewith.us', - provider: 'StakeWithUs' + "address": "https://api.agoric.stakewith.us", + "provider": "StakeWithUs" }, { - address: 'https://api-agoric-ia.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://api-agoric-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'https://agoric-api.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://agoric-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://lcd.agoric.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.agoric.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'grpc.agoric.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.agoric.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'agoric-grpc.polkachu.com:14490', - provider: 'Polkachu' + "address": "agoric-grpc.polkachu.com:14490", + "provider": "Polkachu" }, { - address: 'agoric-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "agoric-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'agoric.grpc.kjnodes.com:12790', - provider: 'kjnodes' + "address": "agoric.grpc.kjnodes.com:12790", + "provider": "kjnodes" }, { - address: 'grpc-agoric-01.stakeflow.io:2202', - provider: 'Stakeflow' + "address": "grpc-agoric-01.stakeflow.io:2202", + "provider": "Stakeflow" }, { - address: 'agoric.mellifera.network:9090', - provider: 'MELLIFERA' + "address": "agoric.mellifera.network:9090", + "provider": "MELLIFERA" }, { - address: 'agoric-grpc.w3coins.io:14490', - provider: 'w3coins' + "address": "agoric-grpc.w3coins.io:14490", + "provider": "w3coins" }, { - address: 'https://grpc.agoric.stakewith.us', - provider: 'StakeWithUs' + "address": "https://grpc.agoric.stakewith.us", + "provider": "StakeWithUs" }, { - address: 'grpc-agoric-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-agoric-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'agoric-grpc.stakeandrelax.net:14490', - provider: 'Stake&Relax 🦥' + "address": "agoric-grpc.stakeandrelax.net:14490", + "provider": "Stake&Relax 🦥" }, { - address: 'https://grpc.agoric.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.agoric.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://agoric.bigdipper.live/', - tx_page: 'https://agoric.bigdipper.live/transactions/${txHash}', - account_page: 'https://agoric.bigdipper.live/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://agoric.bigdipper.live/", + "tx_page": "https://agoric.bigdipper.live/transactions/${txHash}", + "account_page": "https://agoric.bigdipper.live/accounts/${accountAddress}" }, { - kind: 'explorers.guru', - url: 'https://agoric.explorers.guru', - tx_page: 'https://agoric.explorers.guru/transaction/${txHash}', - account_page: 'https://agoric.explorers.guru/account/${accountAddress}' + "kind": "explorers.guru", + "url": "https://agoric.explorers.guru", + "tx_page": "https://agoric.explorers.guru/transaction/${txHash}", + "account_page": "https://agoric.explorers.guru/account/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/agoric/', - tx_page: 'https://atomscan.com/agoric/transactions/${txHash}', - account_page: 'https://atomscan.com/agoric/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/agoric/", + "tx_page": "https://atomscan.com/agoric/transactions/${txHash}", + "account_page": "https://atomscan.com/agoric/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/agoric', - account_page: 'https://stakeflow.io/agoric/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/agoric", + "account_page": "https://stakeflow.io/agoric/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'aioz', - status: 'live', - network_type: 'mainnet', - website: 'https://aioz.network/', - pretty_name: 'AIOZ Network', - chain_id: 'aioz_168-1', - bech32_prefix: 'aioz', - daemon_name: 'aiozd', - node_home: '$HOME/.aioz', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'attoaioz', - fixed_min_gas_price: 1000000000, - low_gas_price: 1000000000, - average_gas_price: 1000000000, - high_gas_price: 1500000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'attoaioz' - } - ], - lock_duration: { - time: '2419200s' - } - }, - codebase: { - git_repo: 'https://github.com/AIOZNetwork/go-aioz', - recommended_version: 'v1.4.1', - compatible_versions: ['v1.4.1', 'v1.4.0'], - binaries: { - 'linux/amd64': - 'https://archive.aioz.network/aiozd-v1.4.1-linux-amd64.tar.gz', - 'darwin/amd64': - 'https://archive.aioz.network/aiozd-v1.4.1-darwin-amd64.tar.gz', - 'windows/amd64': - 'https://archive.aioz.network/aiozd-v1.4.1-windows-amd64.zip' - }, - genesis: { - genesis_url: 'https://archive.aioz.network/aioz_168-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - binaries: { - 'linux/amd64': - 'https://archive.aioz.network/aiozd-v1.0.0-linux-amd64.tar.gz', - 'darwin/amd64': - 'https://archive.aioz.network/aiozd-v1.0.0-darwin-amd64.tar.gz', - 'windows/amd64': - 'https://archive.aioz.network/aiozd-v1.0.0-windows-amd64.zip' - }, - next_version_name: 'v1.2.0' - }, - { - name: 'v1.2.0', - 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' - }, - next_version_name: 'v1.3.0' - }, - { - name: 'v1.3.0', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'], - binaries: { - 'linux/amd64': - 'https://archive.aioz.network/aiozd-v1.3.0-linux-amd64.tar.gz', - 'darwin/amd64': - 'https://archive.aioz.network/aiozd-v1.3.0-darwin-amd64.tar.gz', - 'windows/amd64': - 'https://archive.aioz.network/aiozd-v1.3.0-windows-amd64.zip' - }, - next_version_name: 'v1.4.0' - }, - { - name: 'v1.4', - recommended_version: 'v1.4.1', - compatible_versions: ['v1.4.1', 'v1.4.0'], - binaries: { - 'linux/amd64': - 'https://archive.aioz.network/aiozd-v1.4.1-linux-amd64.tar.gz', - 'darwin/amd64': - 'https://archive.aioz.network/aiozd-v1.4.1-darwin-amd64.tar.gz', - 'windows/amd64': - 'https://archive.aioz.network/aiozd-v1.4.1-windows-amd64.zip' - } + "$schema": "../chain.schema.json", + "chain_name": "aioz", + "status": "live", + "network_type": "mainnet", + "website": "https://aioz.network/", + "pretty_name": "AIOZ Network", + "chain_id": "aioz_168-1", + "bech32_prefix": "aioz", + "daemon_name": "aiozd", + "node_home": "$HOME/.aioz", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "attoaioz", + "fixed_min_gas_price": 1000000000, + "low_gas_price": 1000000000, + "average_gas_price": 1000000000, + "high_gas_price": 1500000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg' - }, - description: - 'AIOZ Network is a DePIN for Web3 AI, Storage and Streaming.\n\nAIOZ empowers a faster, secure and decentralized future.\n\nPowered by a global network of DePINs, AIOZ rewards you for sharing your computational resources for storing, transcoding, and streaming digital media content and powering decentralized AI computation.', - peers: { - seeds: [ - { - id: 'aab202d5648772a8b5be3db575a8a7dd577db78f', - address: '167.172.6.76:26656' - }, - { - id: 'ef834ca8044d345db334fbf6a6bfe7230f429739', - address: '35.236.45.174:26656' - }, - { - id: 'b13a849f59ff3e0558d248c3e9eb9bf4a360bb77', - address: '20.187.94.254:26656' - }, + "staking": { + "staking_tokens": [ { - id: '849e6023440355412bc9a9d5bc0731143e7d657a', - address: '13.53.208.41:26656' + "denom": "attoaioz" } ], - persistent_peers: [ - { - id: 'aab202d5648772a8b5be3db575a8a7dd577db78f', - address: '167.172.6.76:26656' - }, - { - id: 'ef834ca8044d345db334fbf6a6bfe7230f429739', - address: '35.236.45.174:26656' - }, - { - id: 'b13a849f59ff3e0558d248c3e9eb9bf4a360bb77', - address: '20.187.94.254:26656' - }, - { - id: '849e6023440355412bc9a9d5bc0731143e7d657a', - address: '13.53.208.41:26656' - } - ] + "lock_duration": { + "time": "2419200s" + } + }, + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg" }, - apis: { - 'evm-http-jsonrpc': [ + "description": "AIOZ Network is a DePIN for Web3 AI, Storage and Streaming.\n\nAIOZ empowers a faster, secure and decentralized future.\n\nPowered by a global network of DePINs, AIOZ rewards you for sharing your computational resources for storing, transcoding, and streaming digital media content and powering decentralized AI computation.", + "apis": { + "evm-http-jsonrpc": [ { - address: 'https://eth-dataseed.aioz.network', - provider: 'AIOZ Network' + "address": "https://eth-dataseed.aioz.network", + "provider": "AIOZ Network" } ], - rpc: [ + "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: 'grpc-dataseed.aioz.network:443', - provider: 'AIOZ Network' + "address": "grpc-dataseed.aioz.network:443", + "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}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'akash', - status: 'live', - network_type: 'mainnet', - website: 'https://akash.network/', - pretty_name: 'Akash', - chain_id: 'akashnet-2', - bech32_prefix: 'akash', - daemon_name: 'akash', - node_home: '$HOME/.akash', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uakt', - fixed_min_gas_price: 0, - low_gas_price: 0.00025, - average_gas_price: 0.0025, - high_gas_price: 0.025 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uakt' - } - ] - }, - codebase: { - git_repo: 'https://github.com/akash-network/node/', - recommended_version: 'v0.30.0', - compatible_versions: ['v0.30.0'], - binaries: { - 'linux/amd64': - 'https://github.com/akash-network/node/releases/download/v0.30.0/akash_linux_amd64.zip', - 'linux/arm64': - 'https://github.com/akash-network/node/releases/download/v0.30.0/akash_linux_arm64.zip' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/akash-network/net/master/mainnet/genesis.json' - }, - versions: [ - { - name: 'v0.22.0', - recommended_version: 'v0.22.7', - compatible_versions: ['v0.22.7'], - binaries: { - 'linux/amd64': - 'https://github.com/akash-network/node/releases/download/v0.22.7/akash_linux_amd64.zip', - 'linux/arm64': - 'https://github.com/akash-network/node/releases/download/v0.22.7/akash_linux_arm64.zip' - }, - next_version_name: 'v0.24.0' - }, - { - name: 'v0.24.0', - recommended_version: 'v0.24.0', - compatible_versions: ['v0.24.0'], - binaries: { - 'linux/amd64': - 'https://github.com/akash-network/node/releases/download/v0.24.0/akash_linux_amd64.zip', - 'linux/arm64': - 'https://github.com/akash-network/node/releases/download/v0.24.0/akash_linux_arm64.zip' - }, - next_version_name: 'v0.26.0' - }, - { - name: 'v0.26.0', - recommended_version: 'v0.26.2', - compatible_versions: ['v0.26.1', 'v0.26.2'], - proposal: 231, - height: 12992204, - binaries: { - 'linux/amd64': - 'https://github.com/akash-network/node/releases/download/v0.26.2/akash_linux_amd64.zip', - 'linux/arm64': - 'https://github.com/akash-network/node/releases/download/v0.26.2/akash_linux_arm64.zip' - }, - next_version_name: 'v0.28.0' - }, - { - name: 'v0.28.0', - recommended_version: 'v0.28.2', - compatible_versions: ['v0.28.2'], - proposal: 237, - height: 13759618, - binaries: { - 'linux/amd64': - 'https://github.com/akash-network/node/releases/download/v0.28.2/akash_linux_amd64.zip', - 'linux/arm64': - 'https://github.com/akash-network/node/releases/download/v0.28.2/akash_linux_arm64.zip' - }, - next_version_name: 'v0.30.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "akash", + "status": "live", + "network_type": "mainnet", + "website": "https://akash.network/", + "pretty_name": "Akash", + "chain_id": "akashnet-2", + "bech32_prefix": "akash", + "daemon_name": "akash", + "node_home": "$HOME/.akash", + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v0.30.0', - recommended_version: 'v0.30.0', - compatible_versions: ['v0.30.0'], - proposal: 238, - height: 1388074, - binaries: { - 'linux/amd64': - 'https://github.com/akash-network/node/releases/download/v0.30.0/akash_linux_amd64.zip', - 'linux/arm64': - 'https://github.com/akash-network/node/releases/download/v0.30.0/akash_linux_arm64.zip' - }, - next_version_name: '' + "denom": "uakt", + "fixed_min_gas_price": 0, + "low_gas_price": 0.00025, + "average_gas_price": 0.0025, + "high_gas_price": 0.025 } ] }, - 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' - }, - description: - 'Akash is open-source Supercloud that lets users buy and sell computing resources securely and efficiently. Purpose-built for public utility.', - peers: { - seeds: [ - { - id: '4acf579e2744268f834c713e894850995bbf0ffa', - address: '50.18.31.225:26656' - }, - { - id: '86afe23f116ba4754a19819a55d153008eb74b48', - address: '15.164.87.75:26656' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:12856', - provider: 'Polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:12856', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'akash-mainnet-seed.autostake.com:26696', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '5e37aefd2a0b9d036b1609a45d6487606da0204b', - address: 'rpc.ny.akash.farm:26656' - }, - { - id: '47f7b7a021497ad7a338ea041f19a1a11ae06795', - address: 'rpc.la.akash.farm:26656' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: '9aa4c9097c818871e45aaca4118a9fe5e86c60e2', - address: 'seed-akash-01.stakeflow.io:1506', - provider: 'Stakeflow' - }, - { - id: '61686e588f0af938484579adbc2093adff06c7aa', - address: 'europlots.com:26656' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:12856', - provider: 'WhisperNode 🤐' - } - ], - persistent_peers: [ - { - id: '4acf579e2744268f834c713e894850995bbf0ffa', - address: '50.18.31.225:26656' - }, - { - id: '86afe23f116ba4754a19819a55d153008eb74b48', - address: '15.164.87.75:26656' - }, - { - id: '20180c45451739668f6e272e007818139dba31e7', - address: '88.198.62.198:2020' - }, - { - id: '1bfbbf77beeb2c1ace50443478035a255a7e510f', - address: '136.24.44.100:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'akash-mainnet-peer.autostake.com:26696', - provider: 'AutoStake 🛡️ Slash Protected' - }, + "staking": { + "staking_tokens": [ { - id: '9aa4c9097c818871e45aaca4118a9fe5e86c60e2', - address: 'peer-akash-01.stakeflow.io:1506', - provider: 'Stakeflow' + "denom": "uakt" } ] }, - apis: { - rpc: [ + "codebase": {}, + "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" + }, + "description": "Akash is open-source Supercloud that lets users buy and sell computing resources securely and efficiently. Purpose-built for public utility.", + "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.lavenderfive.com:443', - provider: 'Lavender.Five Nodes' + "address": "https://akash-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes" }, { - address: 'https://akash-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://akash-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc-akash.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-akash.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://rpc-akash-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "https://rpc-akash-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'http://akash.c29r3.xyz:80/rpc', - provider: 'c29r3' + "address": "http://akash.c29r3.xyz:80/rpc", + "provider": "c29r3" }, { - address: 'https://akash-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://akash-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://akash-rpc.kleomedes.network', - provider: 'Kleomedes' + "address": "https://akash-rpc.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://rpc-akash-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-akash-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://akash-mainnet-rpc.cosmonautstakes.com:443', - provider: 'Cosmonaut Stakes' + "address": "https://akash-mainnet-rpc.cosmonautstakes.com:443", + "provider": "Cosmonaut Stakes" }, { - address: 'https://akash-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://akash-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://akash-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://akash-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://akash-rpc.validatornode.com', - provider: 'ValidatorNode' + "address": "https://akash-rpc.validatornode.com", + "provider": "ValidatorNode" }, { - address: 'https://rpc-akash.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-akash.whispernode.com:443", + "provider": "WhisperNode 🤐" } ], - 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.lavenderfive.com:443', - provider: 'Lavender.Five Nodes' + "address": "https://akash-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes" }, { - address: 'https://akash-api.polkachu.com', - provider: 'Polkachu' + "address": "https://akash-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://api-akash.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-akash.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://api-akash-ia.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://api-akash-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'https://akash.c29r3.xyz:443/api', - provider: 'c29r3' + "address": "https://akash.c29r3.xyz:443/api", + "provider": "c29r3" }, { - address: 'https://akash-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://akash-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://akash-api.kleomedes.network', - provider: 'Kleomedes' + "address": "https://akash-api.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://api-akash-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-akash-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://akash-mainnet-rest.cosmonautstakes.com:443', - provider: 'Cosmonaut Stakes' + "address": "https://akash-mainnet-rest.cosmonautstakes.com:443", + "provider": "Cosmonaut Stakes" }, { - address: 'https://akash-api.w3coins.io', - provider: 'w3coins' + "address": "https://akash-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://akash-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://akash-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://akash-api.validatornode.com', - provider: 'ValidatorNode' + "address": "https://akash-api.validatornode.com", + "provider": "ValidatorNode" }, { - address: 'https://lcd-akash.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-akash.whispernode.com:443", + "provider": "WhisperNode 🤐" } ], - grpc: [ + "grpc": [ { - address: 'grpc-akash-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-akash-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'akash-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "akash-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'akash-grpc.polkachu.com:12890', - provider: 'Polkachu' + "address": "akash-grpc.polkachu.com:12890", + "provider": "Polkachu" }, { - address: 'akash-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "akash-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-akash.cosmos-spaces.cloud:1110', - provider: 'Cosmos Spaces' + "address": "grpc-akash.cosmos-spaces.cloud:1110", + "provider": "Cosmos Spaces" }, { - address: 'grpc-akash-01.stakeflow.io:1502', - provider: 'Stakeflow' + "address": "grpc-akash-01.stakeflow.io:1502", + "provider": "Stakeflow" }, { - address: 'akash-grpc.w3coins.io:12890', - provider: 'w3coins' + "address": "akash-grpc.w3coins.io:12890", + "provider": "w3coins" }, { - address: 'akash-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "akash-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/akash', - tx_page: 'https://app.ezstaking.io/akash/txs/${txHash}', - account_page: 'https://app.ezstaking.io/akash/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/akash", + "tx_page": "https://app.ezstaking.io/akash/txs/${txHash}", + "account_page": "https://app.ezstaking.io/akash/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/akash', - tx_page: 'https://www.mintscan.io/akash/transactions/${txHash}', - account_page: 'https://www.mintscan.io/akash/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/akash", + "tx_page": "https://www.mintscan.io/akash/transactions/${txHash}", + "account_page": "https://www.mintscan.io/akash/accounts/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/akash/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/akash", + "tx_page": "https://atomscan.com/akash/transactions/${txHash}", + "account_page": "https://atomscan.com/akash/accounts/${accountAddress}" }, { - kind: 'cloudmos', - url: 'https://cloudmos.io/blocks', - tx_page: 'https://cloudmos.io/transactions/${txHash}' + "kind": "cloudmos", + "url": "https://cloudmos.io/blocks", + "tx_page": "https://cloudmos.io/transactions/${txHash}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/akash', - account_page: 'https://stakeflow.io/akash/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/akash", + "account_page": "https://stakeflow.io/akash/accounts/${accountAddress}" }, { - kind: 'ValidatorNode', - url: 'https://explorer.validatornode.com/akash-network', - tx_page: 'https://explorer.validatornode.com/akash-network/tx/${txHash}' + "kind": "ValidatorNode", + "url": "https://explorer.validatornode.com/akash-network", + "tx_page": "https://explorer.validatornode.com/akash-network/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'andromeda', - chain_id: 'andromeda-1', - pretty_name: 'Andromeda', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'andr', - daemon_name: 'andromedad', - node_home: '$HOME/.andromeda', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "andromeda", + "chain_id": "andromeda-1", + "pretty_name": "Andromeda", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "andr", + "daemon_name": "andromedad", + "node_home": "$HOME/.andromeda", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uandr' + "denom": "uandr" } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'uandr' + "denom": "uandr" } ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/andromedaprotocol/andromedad', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/andromedaprotocol/mainnet/release/genesis.json' + "lock_duration": { + "time": "1814400s" } }, - peers: { - seeds: [ - { - id: 'df949a46ae6529ae1e09b034b49716468d5cc7e9', - address: 'seeds.stakerhouse.com:12156', - provider: 'StakerHouse' - } - ], - persistent_peers: [ - { - id: '17dda7b03ce866dbe36c048282fb742dd895a489', - address: '95.56.244.244:56659', - provider: 'Abduction' - }, - { - id: '0f310196e29d1f289966141e22caa72afaea8060', - address: 'seeds.cros-nest.com:46656', - provider: 'Crosnet' - }, - { - id: '301f9b0011f861693e08163f640c39cebbedd2f0', - address: '95.56.244.244:56658', - provider: 'Siradi' - }, - { - id: '26cdc42778d24c8b0b0b68ed07c97685bfd8682f', - address: '178.162.165.65:26656', - provider: 'Synergy Nodes' - }, - { - id: 'e4c2267b90c7cfbb45090ab7647dc01df97f58f9', - address: 'andromeda-m.peer.stavr.tech:4376', - provider: '🔥STAVR🔥' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:14956', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: '28876b3094518bef97a1250ef641c26b7d4a658d', - address: '138.201.21.197:39656', - provider: 'StakeTown' - } - ] - }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.andromeda-1.andromeda.aviaone.com', - provider: 'AVIAONE' + "address": "https://rpc.andromeda-1.andromeda.aviaone.com", + "provider": "AVIAONE" }, { - address: 'https://rpc-andromeda.nodeist.net', - provider: 'nodeist' + "address": "https://rpc-andromeda.nodeist.net", + "provider": "nodeist" }, { - address: 'https://andromeda.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://andromeda.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://andromeda.rpc.nodex.one', - provider: 'nodex' + "address": "https://andromeda.rpc.nodex.one", + "provider": "nodex" }, { - address: 'https://andro.rpc.m.stavr.tech/', - provider: '🔥STAVR🔥' + "address": "https://andro.rpc.m.stavr.tech/", + "provider": "🔥STAVR🔥" }, { - address: 'https://andromeda-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://andromeda-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://andromeda-rpc.stake-town.com:443', - provider: 'StakeTown' + "address": "https://andromeda-rpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'https://andromeda-rpc.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "https://andromeda-rpc.stakerhouse.com:443", + "provider": "StakerHouse" }, { - address: 'https://andromeda-rpc.highstakes.ch:26657', - provider: 'High Stakes 🇨🇭' + "address": "https://andromeda-rpc.highstakes.ch:26657", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://andromeda-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://andromeda-rpc.genznodes.dev", + "provider": "genznodes" } ], - rest: [ + "rest": [ { - address: 'https://api.andromeda-1.andromeda.aviaone.com/', - provider: 'AVIAONE' + "address": "https://api.andromeda-1.andromeda.aviaone.com/", + "provider": "AVIAONE" }, { - address: 'https://api-andromeda.nodeist.net', - provider: 'nodeist' + "address": "https://api-andromeda.nodeist.net", + "provider": "nodeist" }, { - address: 'https://andromeda.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://andromeda.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://andromeda.api.nodex.one', - provider: 'nodex' + "address": "https://andromeda.api.nodex.one", + "provider": "nodex" }, { - address: 'https://andro.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://andro.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://andromeda-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://andromeda-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://andromeda-api.stake-town.com:443', - provider: 'StakeTown' + "address": "https://andromeda-api.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'https://andromeda-rest.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "https://andromeda-rest.stakerhouse.com:443", + "provider": "StakerHouse" }, { - address: 'https://andromeda-api.highstakes.ch:1317', - provider: 'High Stakes 🇨🇭' + "address": "https://andromeda-api.highstakes.ch:1317", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://andromeda-api.genznodes.dev', - provider: 'genznodes' + "address": "https://andromeda-api.genznodes.dev", + "provider": "genznodes" } ], - grpc: [ + "grpc": [ { - address: 'andromeda-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "andromeda-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://grpc.andromeda-1.andromeda.aviaone.com:9094', - provider: 'AVIAONE' + "address": "https://grpc.andromeda-1.andromeda.aviaone.com:9094", + "provider": "AVIAONE" }, { - address: 'https://grpc-andromeda.nodeist.net:443', - provider: 'nodeist' + "address": "https://grpc-andromeda.nodeist.net:443", + "provider": "nodeist" }, { - address: 'andromeda.grpc.kjnodes.com:443', - provider: 'kjnodes' + "address": "andromeda.grpc.kjnodes.com:443", + "provider": "kjnodes" }, { - address: 'https://andromeda.grpc.nodex.one:443', - provider: 'nodex' + "address": "https://andromeda.grpc.nodex.one:443", + "provider": "nodex" }, { - address: 'http://andromedad.grpc.t.stavr.tech:132', - provider: '🔥STAVR🔥' + "address": "http://andromedad.grpc.t.stavr.tech:132", + "provider": "🔥STAVR🔥" }, { - address: 'andromeda-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "andromeda-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'andromeda-grpc.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "andromeda-grpc.stakerhouse.com:443", + "provider": "StakerHouse" }, { - address: 'andromeda-grpc.genznodes.dev:27090', - provider: 'genznodes' + "address": "andromeda-grpc.genznodes.dev:27090", + "provider": "genznodes" } ] }, - explorers: [ + "explorers": [ { - kind: '🔥STAVR🔥 Explorer', - url: 'https://explorer.stavr.tech/Andromeda-Mainnet', - tx_page: 'https://explorer.stavr.tech/Andromeda-Mainnet/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Andromeda-Mainnet/account/${accountAddress}' + "kind": "🔥STAVR🔥 Explorer", + "url": "https://explorer.stavr.tech/Andromeda-Mainnet", + "tx_page": "https://explorer.stavr.tech/Andromeda-Mainnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Andromeda-Mainnet/account/${accountAddress}" }, { - kind: 'exploreme.pro', - url: 'https://andromeda.exploreme.pro', - tx_page: 'https://andromeda.exploreme.pro/transaction/${txHash}', - account_page: - 'https://andromeda.exploreme.pro/account/${accountAddress}' + "kind": "exploreme.pro", + "url": "https://andromeda.exploreme.pro", + "tx_page": "https://andromeda.exploreme.pro/transaction/${txHash}", + "account_page": "https://andromeda.exploreme.pro/account/${accountAddress}" }, { - kind: 'Cosmotracker', - url: 'https://cosmotracker.com/andromeda', - tx_page: 'https://cosmotracker.com/andromeda/tx/${txHash}', - account_page: - 'https://cosmotracker.com/andromeda/account/${accountAddress}' + "kind": "Cosmotracker", + "url": "https://cosmotracker.com/andromeda", + "tx_page": "https://cosmotracker.com/andromeda/tx/${txHash}", + "account_page": "https://cosmotracker.com/andromeda/account/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'archway', - status: 'live', - network_type: 'mainnet', - website: 'https://archway.io/', - pretty_name: 'Archway', - chain_id: 'archway-1', - bech32_prefix: 'archway', - daemon_name: 'archwayd', - node_home: '$HOME/.archway', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'aarch', - fixed_min_gas_price: 900000000000, - low_gas_price: 1000000000000, - average_gas_price: 1500000000000, - high_gas_price: 2000000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'aarch' - } - ], - lock_duration: { - time: '1209600s' - } - }, - codebase: { - git_repo: 'https://github.com/archway-network/archway', - recommended_version: 'v4.0.3', - compatible_versions: ['v4.0.3'], - binaries: { - 'linux/amd64': - 'https://github.com/archway-network/archway/releases/download/v4.0.3/archwayd_linux_amd64', - 'linux/arm64': - 'https://github.com/archway-network/archway/releases/download/v4.0.3/archwayd_linux_arm64', - 'darwin/amd64': - 'https://github.com/archway-network/archway/releases/download/v4.0.3/archwayd_darwin_amd64', - 'darwin/arm64': - 'https://github.com/archway-network/archway/releases/download/v4.0.3/archwayd_darwin_arm64' - }, - cosmos_sdk_version: 'v0.45.16', - consensus: { - type: 'tendermint', - version: 'v0.34.27' - }, - cosmwasm_version: 'v0.33.0', - cosmwasm_enabled: true, - ibc_go_version: 'v4.3.1', - genesis: { - genesis_url: - 'https://github.com/archway-network/networks/raw/main/archway/genesis/genesis.json.gz' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.1', - compatible_versions: ['v1.0.0', 'v1.0.1'], - tag: 'v1.0.1', - height: 1, - consensus: { - type: 'tendermint', - version: 'v0.34.27' - }, - cosmos_sdk_version: 'v0.45.16', - cosmwasm_version: 'v0.32.0', - cosmwasm_enabled: true, - ibc_go_version: 'v4.3.1', - cosmwasm_path: '$HOME/.archway/data/wasm', - binaries: { - 'linux/amd64': - 'https://github.com/archway-network/archway/releases/download/v1.0.1/archwayd_linux_amd64', - 'linux/arm64': - 'https://github.com/archway-network/archway/releases/download/v1.0.1/archwayd_linux_arm64' - }, - next_version_name: 'v2.0.0' - }, - { - name: 'v2.0.0', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - tag: 'v2.0.0', - proposal: 10, - height: 525000, - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - cosmos_sdk_version: 'v0.45.16', - cosmwasm_version: 'v0.32.0', - cosmwasm_enabled: true, - ibc_go_version: 'v4.3.1', - cosmwasm_path: '$HOME/.archway/data/wasm', - binaries: { - 'linux/amd64': - 'https://github.com/archway-network/archway/releases/download/v2.0.0/archwayd_linux_amd64', - 'linux/arm64': - 'https://github.com/archway-network/archway/releases/download/v2.0.0/archwayd_linux_arm64' - }, - next_version_name: 'v4.0.2' - }, - { - name: 'v4.0.2', - recommended_version: 'v4.0.3', - compatible_versions: ['v4.0.3'], - proposal: 21, - height: 1215711, - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - cosmos_sdk_version: 'v0.45.16', - cosmwasm_version: 'v0.33.0', - cosmwasm_enabled: true, - ibc_go_version: 'v4.3.1', - cosmwasm_path: '$HOME/.archway/data/wasm', - binaries: { - 'linux/amd64': - 'https://github.com/archway-network/archway/releases/download/v4.0.3/archwayd_linux_amd64', - 'linux/arm64': - 'https://github.com/archway-network/archway/releases/download/v4.0.3/archwayd_linux_arm64', - 'darwin/amd64': - 'https://github.com/archway-network/archway/releases/download/v4.0.3/archwayd_darwin_amd64', - 'darwin/arm64': - 'https://github.com/archway-network/archway/releases/download/v4.0.3/archwayd_darwin_arm64' - }, - next_version_name: '' - } + "$schema": "../chain.schema.json", + "chain_name": "archway", + "status": "live", + "network_type": "mainnet", + "website": "https://archway.io/", + "pretty_name": "Archway", + "chain_id": "archway-1", + "bech32_prefix": "archway", + "daemon_name": "archwayd", + "node_home": "$HOME/.archway", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "aarch", + "fixed_min_gas_price": 900000000000, + "low_gas_price": 1000000000000, + "average_gas_price": 1500000000000, + "high_gas_price": 2000000000000 + } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' - }, - description: - 'An incentivized L1 blockchain that allows developers to capture the value their dapps create, enabling sustainable economic models.', - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: '3ba7bf08f00e228026177e9cdc027f6ef6eb2b39', - address: '35.232.234.58:26656', - provider: 'Archway Foundation' - }, - { - id: 'b308dda41e4db2ee00852d91846f981c49943d46', - address: '161.97.96.91:46656', - provider: 'AM Solutions' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:11556', - provider: 'WhisperNode 🤐' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'archway-mainnet-seed.autostake.com:26946', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:11556', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'b6c1198fa025ce24d26d90527c5d2b71f9399756', - address: 'seed-node.mms.team:34656', - provider: 'MMS' - }, - { - id: '6471ac9ff8474373e8055d45b6246fd8c5204890', - address: 'archway.seed.mzonder.com:10756', - provider: 'MZONDER' - }, - { - id: '261acb73f483d1cace653cb54f7b8815f63b7e56', - address: 'archway.lgns.net:26656', - provider: 'Luganodes' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'archway.rpc.kjnodes.com:15659', - provider: 'kjnodes' - }, - { - id: 'bd9332cd0a99f5830ea457a32a56b32790f68716', - address: '135.181.58.28:27456', - provider: 'Validatrium' - }, - { - id: '6b0ffcce9b59b91ceb8eea5d4599e27707e3604a', - address: 'seeds.stakeup.tech:10214', - provider: 'StakeUp' - }, - { - id: '17d6cb2601b67ad916d5433a404bfc000b0b6ef1', - address: 'rpc.archway.nodestake.top:666', - provider: 'NodeStake' + "denom": "aarch" } ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'archway-mainnet-peer.autostake.com:26946', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'a477bfcef79f283d82e531ec1a6717677c8caf59', - address: 'peer-archway.mms.team:56108', - provider: 'MMS' - }, - { - id: '218eed47b5472642034e81fdf408dec8b79dcba7', - address: '138.201.21.197:31656', - provider: 'StakeTown' - }, - { - id: '34999776ce08cb4298a9849609c4b43c78e8be37', - address: '65.108.238.203:25656', - provider: '[NODERS]TEAM' - } - ] + "lock_duration": { + "time": "1209600s" + } }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.45.16", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.33.0" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" + }, + "description": "An incentivized L1 blockchain that allows developers to capture the value their dapps create, enabling sustainable economic models.", + "apis": { + "rpc": [ { - address: 'https://rpc.mainnet.archway.io', - provider: 'Archway Foundation' + "address": "https://rpc.mainnet.archway.io", + "provider": "Archway Foundation" }, { - address: 'https://rpc-archway.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-archway.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://archway-mainnet-archive.allthatnode.com:26657', - provider: 'All That Node' + "address": "https://archway-mainnet-archive.allthatnode.com:26657", + "provider": "All That Node" }, { - address: 'https://m-archway.rpc.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-archway.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://rpc-1.archway.nodes.guru', - provider: 'Nodes.Guru' + "address": "https://rpc-1.archway.nodes.guru", + "provider": "Nodes.Guru" }, { - address: 'https://archway.rpc.silknodes.io/', - provider: 'Silk Nodes' + "address": "https://archway.rpc.silknodes.io/", + "provider": "Silk Nodes" }, { - address: 'https://archway.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://archway.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://rpc-archway.cryptech.com.ua', - provider: 'cryptech' + "address": "https://rpc-archway.cryptech.com.ua", + "provider": "cryptech" }, { - address: 'https://rpc.archway.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.archway.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://rpc-archway.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://rpc-archway.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://rpc-archway.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-archway.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://archway-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://archway-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://m-archway.rpc.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-archway.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://archway-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://archway-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-archway.mms.team', - provider: 'MMS' + "address": "https://rpc-archway.mms.team", + "provider": "MMS" }, { - address: 'https://rpc-archway.mzonder.com', - provider: 'MZONDER' + "address": "https://rpc-archway.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://rpc.archway.lgns.net', - provider: 'Luganodes' + "address": "https://rpc.archway.lgns.net", + "provider": "Luganodes" }, { - address: 'https://archway-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://archway-rpc.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://archway-rpc.0base.dev', - provider: '0base.vc' + "address": "https://archway-rpc.0base.dev", + "provider": "0base.vc" }, { - address: 'https://archway-mainnet.rpc.l0vd.com', - provider: 'L0vd.com' + "address": "https://archway-mainnet.rpc.l0vd.com", + "provider": "L0vd.com" }, { - address: 'https://archway-rpc.openbitlab.com', - provider: 'openbitlab' + "address": "https://archway-rpc.openbitlab.com", + "provider": "openbitlab" }, { - address: 'https://rpc-archway.mzonder.com', - provider: 'MZONDER' + "address": "https://rpc-archway.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://rpc-archway.mainnet.validatrium.club', - provider: 'Validatrium' + "address": "https://rpc-archway.mainnet.validatrium.club", + "provider": "Validatrium" }, { - address: 'https://rpc.archway.stakeup.tech', - provider: 'StakeUp' + "address": "https://rpc.archway.stakeup.tech", + "provider": "StakeUp" }, { - address: 'https://archway.api.trivium.network:26657', - provider: 'TriviumX | Architech' + "address": "https://archway.api.trivium.network:26657", + "provider": "TriviumX | Architech" }, { - address: 'https://archway-rpc.tienthuattoan.ventures', - provider: 'TienThuatToan' + "address": "https://archway-rpc.tienthuattoan.ventures", + "provider": "TienThuatToan" }, { - address: 'https://archway-rpc.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://archway-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://rpc.archway.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.archway.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ + "rest": [ { - address: 'https://api.mainnet.archway.io', - provider: 'Archway Foundation' + "address": "https://api.mainnet.archway.io", + "provider": "Archway Foundation" }, { - address: 'https://archway-api.w3coins.io', - provider: 'w3coins' + "address": "https://archway-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://m-archway.api.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-archway.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://api-1.archway.nodes.guru', - provider: 'Nodes.Guru' + "address": "https://api-1.archway.nodes.guru", + "provider": "Nodes.Guru" }, { - address: 'https://archway.api.silknodes.io/', - provider: 'Silk Nodes' + "address": "https://archway.api.silknodes.io/", + "provider": "Silk Nodes" }, { - address: 'https://archway.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://archway.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://api-archway.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-archway.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://api-archway.cryptech.com.ua', - provider: 'cryptech' + "address": "https://api-archway.cryptech.com.ua", + "provider": "cryptech" }, { - address: 'https://api.archway.nodestake.top', - provider: 'NodeStake' + "address": "https://api.archway.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://rest-archway.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://rest-archway.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://lcd-archway.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-archway.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://archway-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://archway-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-archway.mms.team', - provider: 'MMS' + "address": "https://api-archway.mms.team", + "provider": "MMS" }, { - address: 'https://api-archway.mzonder.com', - provider: 'MZONDER' + "address": "https://api-archway.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://rest.archway.lgns.net', - provider: 'Luganodes' + "address": "https://rest.archway.lgns.net", + "provider": "Luganodes" }, { - address: 'https://archway-api.stake-town.com', - provider: 'StakeTown' + "address": "https://archway-api.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://archway-rest.0base.dev', - provider: '0base.vc' + "address": "https://archway-rest.0base.dev", + "provider": "0base.vc" }, { - address: 'https://archway-mainnet.api.l0vd.com', - provider: 'L0vd.com' + "address": "https://archway-mainnet.api.l0vd.com", + "provider": "L0vd.com" }, { - address: 'https://archway-api.openbitlab.com', - provider: 'openbitlab' + "address": "https://archway-api.openbitlab.com", + "provider": "openbitlab" }, { - address: 'https://api-archway.mainnet.validatrium.club', - provider: 'Validatrium' + "address": "https://api-archway.mainnet.validatrium.club", + "provider": "Validatrium" }, { - address: 'https://api.archway.stakeup.tech', - provider: 'StakeUp' + "address": "https://api.archway.stakeup.tech", + "provider": "StakeUp" }, { - address: 'https://archway.api.trivium.network:1317', - provider: 'TriviumX | Architech' + "address": "https://archway.api.trivium.network:1317", + "provider": "TriviumX | Architech" }, { - address: 'https://archway-mainnet-archive.allthatnode.com:1317', - provider: 'All That Node' + "address": "https://archway-mainnet-archive.allthatnode.com:1317", + "provider": "All That Node" }, { - address: 'https://archway-api.tienthuattoan.ventures', - provider: 'TienThuatToan' + "address": "https://archway-api.tienthuattoan.ventures", + "provider": "TienThuatToan" }, { - address: 'https://archway-api.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://archway-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://lcd.archway.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.archway.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'grpc.mainnet.archway.io:443', - provider: 'Archway Foundation' + "address": "grpc.mainnet.archway.io:443", + "provider": "Archway Foundation" }, { - address: 'grpc-1.archway.nodes.guru:10690', - provider: 'Nodes.Guru' + "address": "grpc-1.archway.nodes.guru:10690", + "provider": "Nodes.Guru" }, { - address: 'archway.grpc.kjnodes.com:15690', - provider: 'kjnodes' + "address": "archway.grpc.kjnodes.com:15690", + "provider": "kjnodes" }, { - address: 'https://grpc-archway.cryptech.com.ua', - provider: 'cryptech' + "address": "https://grpc-archway.cryptech.com.ua", + "provider": "cryptech" }, { - address: 'https://grpc.archway.nodestake.top:443', - provider: 'NodeStake' + "address": "https://grpc.archway.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'grpc-archway.theamsolutions.info:443', - provider: 'AM Solutions' + "address": "grpc-archway.theamsolutions.info:443", + "provider": "AM Solutions" }, { - address: 'archway-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "archway-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'archway.grpc.nodersteam.com:9090', - provider: '[NODERS]TEAM' + "address": "archway.grpc.nodersteam.com:9090", + "provider": "[NODERS]TEAM" }, { - address: 'grpc-archway.mms.team:443', - provider: 'MMS' + "address": "grpc-archway.mms.team:443", + "provider": "MMS" }, { - address: 'grpc-archway.mzonder.com:443', - provider: 'MZONDER' + "address": "grpc-archway.mzonder.com:443", + "provider": "MZONDER" }, { - address: 'grpc.archway.lgns.net:443', - provider: 'Luganodes' + "address": "grpc.archway.lgns.net:443", + "provider": "Luganodes" }, { - address: 'archway-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "archway-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'archway-grpc.huginn.tech:4090', - provider: 'Huginn' + "address": "archway-grpc.huginn.tech:4090", + "provider": "Huginn" }, { - address: 'archway-mainnet.grpc.l0vd.com:80', - provider: 'L0vd.com' + "address": "archway-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com" }, { - address: 'archway-grpc.openbitlab.com:443', - provider: 'openbitlab' + "address": "archway-grpc.openbitlab.com:443", + "provider": "openbitlab" }, { - address: 'grpc-archway.mainnet.validatrium.club:27490', - provider: 'Validatrium' + "address": "grpc-archway.mainnet.validatrium.club:27490", + "provider": "Validatrium" }, { - address: 'grpc.archway.stakeup.tech:443', - provider: 'StakeUp' + "address": "grpc.archway.stakeup.tech:443", + "provider": "StakeUp" }, { - address: 'grpc-archway.cosmos-spaces.cloud:4820', - provider: 'Cosmos Spaces' + "address": "grpc-archway.cosmos-spaces.cloud:4820", + "provider": "Cosmos Spaces" }, { - address: 'grpc-archway-mainnet.testnet-pride.com:9096', - provider: 'TestnetPride' + "address": "grpc-archway-mainnet.testnet-pride.com:9096", + "provider": "TestnetPride" }, { - address: 'archway.api.trivium.network:9090', - provider: 'TriviumX | Architech' + "address": "archway.api.trivium.network:9090", + "provider": "TriviumX | Architech" }, { - address: 'archway-grpc.tienthuattoan.ventures:9290', - provider: 'TienThuatToan' + "address": "archway-grpc.tienthuattoan.ventures:9290", + "provider": "TienThuatToan" }, { - address: 'archway-grpc.stakeandrelax.net:11590', - provider: 'Stake&Relax 🦥' + "address": "archway-grpc.stakeandrelax.net:11590", + "provider": "Stake&Relax 🦥" }, { - address: 'https://grpc.archway.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.archway.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'Nodes Guru', - url: 'https://archway.explorers.guru/', - tx_page: 'https://archway.explorers.guru/transaction/${txHash}', - account_page: 'https://archway.explorers.guru/account/${accountAddress}' + "kind": "Nodes Guru", + "url": "https://archway.explorers.guru/", + "tx_page": "https://archway.explorers.guru/transaction/${txHash}", + "account_page": "https://archway.explorers.guru/account/${accountAddress}" }, { - kind: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀', - url: 'https://exp.utsa.tech/archway', - tx_page: 'https://exp.utsa.tech/archway/tx/${txHash}', - account_page: 'https://exp.utsa.tech/archway/account/${accountAddress}' + "kind": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀", + "url": "https://exp.utsa.tech/archway", + "tx_page": "https://exp.utsa.tech/archway/tx/${txHash}", + "account_page": "https://exp.utsa.tech/archway/account/${accountAddress}" }, { - kind: 'Mintscan', - url: 'https://mintscan.io/archway/', - tx_page: 'https://mintscan.io/archway/transactions/${txHash}', - account_page: 'https://mintscan.io/archway/accounts/${accountAddress}' + "kind": "Mintscan", + "url": "https://mintscan.io/archway/", + "tx_page": "https://mintscan.io/archway/transactions/${txHash}", + "account_page": "https://mintscan.io/archway/accounts/${accountAddress}" }, { - kind: 'Silk Nodes', - url: 'https://explorer.silknodes.io/archway', - tx_page: 'https://explorer.silknodes.io/archway/tx/${txHash}', - account_page: - 'https://explorer.silknodes.io/archway/account/${accountAddress}' + "kind": "Silk Nodes", + "url": "https://explorer.silknodes.io/archway", + "tx_page": "https://explorer.silknodes.io/archway/tx/${txHash}", + "account_page": "https://explorer.silknodes.io/archway/account/${accountAddress}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/archway/', - tx_page: 'https://explorer.nodestake.top/archway/txs/${txHash}', - account_page: - 'https://explorer.nodestake.top/archway/account/${accountAddress}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/archway/", + "tx_page": "https://explorer.nodestake.top/archway/txs/${txHash}", + "account_page": "https://explorer.nodestake.top/archway/account/${accountAddress}" }, { - kind: 'Exploreme', - url: 'https://archway.exploreme.pro/', - tx_page: 'https://archway.exploreme.pro/transaction/${txHash}', - account_page: 'https://archway.exploreme.pro/account/${accountAddress}' + "kind": "Exploreme", + "url": "https://archway.exploreme.pro/", + "tx_page": "https://archway.exploreme.pro/transaction/${txHash}", + "account_page": "https://archway.exploreme.pro/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/archway', - tx_page: 'https://ping.pub/archway/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/archway", + "tx_page": "https://ping.pub/archway/tx/${txHash}" }, { - kind: 'Big Dipper', - url: 'https://bigdipper.live/archway', - tx_page: 'https://bigdipper.live/archway/transactions/${txHash}', - account_page: - 'https://bigdipper.live/archway/accounts/${accountAddress}' + "kind": "Big Dipper", + "url": "https://bigdipper.live/archway", + "tx_page": "https://bigdipper.live/archway/transactions/${txHash}", + "account_page": "https://bigdipper.live/archway/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'arkh', - status: 'live', - network_type: 'mainnet', - website: 'https://arkhadian.com/', - pretty_name: 'Arkhadian', - chain_id: 'arkh', - bech32_prefix: 'arkh', - daemon_name: 'arkhd', - node_home: '$HOME/.arkh', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'arkh', - fixed_min_gas_price: 0.01, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.03 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'arkh' - } - ] - }, - codebase: { - git_repo: 'https://github.com/vincadian/arkh-blockchain', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.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' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/vincadian/arkh-blockchain/master/genesis/genesis.json' - }, - versions: [ - { - name: 'v2.0.0', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.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", + "website": "https://arkhadian.com/", + "pretty_name": "Arkhadian", + "chain_id": "arkh", + "bech32_prefix": "arkh", + "daemon_name": "arkhd", + "node_home": "$HOME/.arkh", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "arkh", + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + "staking": { + "staking_tokens": [ + { + "denom": "arkh" + } + ] }, - peers: { - seeds: [] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://asc-dataseed.arkhadian.com/', - provider: 'arkhnetwork' + "address": "https://asc-dataseed.arkhadian.com/", + "provider": "arkhnetwork" }, { - address: 'https://rpc.arkh.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.arkh.nodestake.top", + "provider": "NodeStake" } ], - rest: [ + "rest": [ { - address: 'https://asc-blockchain-api.arkhadian.com/', - provider: 'arkhnetwork' + "address": "https://asc-blockchain-api.arkhadian.com/", + "provider": "arkhnetwork" }, { - address: 'https://api.arkh.nodestake.top', - provider: 'NodeStake' + "address": "https://api.arkh.nodestake.top", + "provider": "NodeStake" } ], - grpc: [ + "grpc": [ { - address: 'grpc.arkh.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.arkh.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://grpc.arkh.nodexcapital.com:443', - provider: 'NodeX Validator' + "address": "https://grpc.arkh.nodexcapital.com:443", + "provider": "NodeX Validator" } ] }, - explorers: [ + "explorers": [ { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/arkh', - tx_page: 'https://explorer.nodestake.top/arkh/tx/${txHash}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/arkh", + "tx_page": "https://explorer.nodestake.top/arkh/tx/${txHash}" }, { - kind: 'Kynraze Explorer', - url: 'https://explorer.kynraze.com/arkhadian', - tx_page: 'https://explorer.kynraze.com/arkhadian/tx/${txHash}' + "kind": "Kynraze Explorer", + "url": "https://explorer.kynraze.com/arkhadian", + "tx_page": "https://explorer.kynraze.com/arkhadian/tx/${txHash}" }, { - kind: 'NODEXPLORER', - url: 'https://explorer.nodexcapital.com/arkhadian', - tx_page: 'https://explorer.nodexcapital.com/arkhadian/tx/${txHash}' + "kind": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com/arkhadian", + "tx_page": "https://explorer.nodexcapital.com/arkhadian/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'assetmantle', - status: 'live', - network_type: 'mainnet', - website: 'https://assetmantle.one/', - pretty_name: 'AssetMantle', - chain_id: 'mantle-1', - bech32_prefix: 'mantle', - daemon_name: 'mantleNode', - node_home: '$HOME/.mantleNode', - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "assetmantle", + "status": "live", + "network_type": "mainnet", + "website": "https://assetmantle.one/", + "pretty_name": "AssetMantle", + "chain_id": "mantle-1", + "bech32_prefix": "mantle", + "daemon_name": "mantleNode", + "node_home": "$HOME/.mantleNode", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'umntl', - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.04 + "denom": "umntl", + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'umntl' + "denom": "umntl" } ] }, - codebase: { - git_repo: 'https://github.com/AssetMantle/node.git', - recommended_version: 'v0.3.0', - compatible_versions: ['v0.3.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/AssetMantle/genesisTransactions/main/mantle-1/final_genesis.json' - }, - versions: [ - { - name: 'v0.3.0', - recommended_version: 'v0.3.0', - compatible_versions: ['v0.3.0'] - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/AM_Logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/AM_Logo_Dark.svg' - }, - description: - 'AssetMantle’s suite of products is focused on the NFT ecosystem, helping you up your game with digital asset ownership.', - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:14656', - provider: 'Polkachu' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:14656', - provider: 'WhisperNode 🤐' - }, - { - id: 'df949a46ae6529ae1e09b034b49716468d5cc7e9', - address: 'seeds.stakerhouse.com:10156', - provider: 'StakerHouse' - } - ], - persistent_peers: [ - { - id: '4654c8bed4349e4800238cff1f88e97c1f880080', - address: '207.244.245.125:26656' - }, - { - id: 'a7aafd3330e57d3104be5b2820b6ad2d52ac19ec', - address: '3.39.94.36:26656' - }, - { - id: '9c97f6143d3fae032af5f155d472bbc52f4d90b3', - address: '194.34.232.225:26656' - }, - { - id: 'fd096224f9c918089410ac7ab6d42d21ec87db60', - address: '65.21.230.230:26656' - }, - { - id: 'f33b2125c3b3a7c4838e22a060e38d2cefd66e78', - address: '65.108.140.109:26656' - }, - { - id: '6261de9dac635a8fd8d19a70afc41f845c59db96', - address: '116.203.35.46:26656' - }, - { - id: 'e0deea2d5c15e77c9d5934305bb23148ce836709', - address: '185.252.232.79:26656' - }, - { - id: '4fc4fa6ec44f6da10830ffcb6344a8635156e11e', - address: '141.95.65.26:26656' - }, - { - id: '7362b3c4d082680aeffe137d18cea0e37cab5037', - address: '146.19.24.101:26656' - }, - { - id: '5e8e8e7071259beb3b32e39cb3d2bb059cff4d66', - address: '65.108.137.22:26656' - }, - { - id: '5b3c90e6c07e03ffddc5dc3aae786a2990bc5bd3', - address: '148.251.81.179:26656' - }, - { - id: '7ae8a8e62efcccf15198525868b0873b3c9bd698', - address: '65.108.121.37:36656' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/AM_Logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/AM_Logo_Dark.svg" }, - apis: { - rpc: [ + "description": "AssetMantle’s suite of products is focused on the NFT ecosystem, helping you up your game with digital asset ownership.", + "apis": { + "rpc": [ { - address: 'https://rpc.assetmantle.one', - provider: 'AssetMantle' + "address": "https://rpc.assetmantle.one", + "provider": "AssetMantle" }, { - address: 'https://rpc-assetmantle.blockpower.capital', - provider: 'Blockpower' + "address": "https://rpc-assetmantle.blockpower.capital", + "provider": "Blockpower" }, { - 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.assetmantle.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.assetmantle.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://rpc-assetmantle-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-assetmantle-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc-assetmantle.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-assetmantle.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://rpc.mantle.paranorm.pro:443', - provider: 'paranorm' + "address": "https://rpc.mantle.paranorm.pro:443", + "provider": "paranorm" }, { - address: 'https://assetmantle-rpc.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://assetmantle-rpc.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://assetmantle-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://assetmantle-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - 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://api.assetmantle.nodestake.top', - provider: 'NodeStake' + "address": "https://api.assetmantle.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://api-assetmantle-ia.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://api-assetmantle-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'https://assetmantle-api.polkachu.com', - provider: 'Polkachu' + "address": "https://assetmantle-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://lcd-assetmantle.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-assetmantle.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://api.mantle.paranorm.pro:443', - provider: 'paranorm' + "address": "https://api.mantle.paranorm.pro:443", + "provider": "paranorm" }, { - address: 'https://assetmantle-rest.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://assetmantle-rest.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://assetmantle-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://assetmantle-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ + "grpc": [ { - address: 'grpc.assetmantle.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.assetmantle.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'grpc-assetmantle-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-assetmantle-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'assetmantle-grpc.polkachu.com:14690', - provider: 'Polkachu' + "address": "assetmantle-grpc.polkachu.com:14690", + "provider": "Polkachu" }, { - address: 'assetmantle-grpc.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "assetmantle-grpc.stakerhouse.com:443", + "provider": "StakerHouse" }, { - address: 'assetmantle-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "assetmantle-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/assetmantle', - tx_page: 'https://app.ezstaking.io/assetmantle/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/assetmantle/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/assetmantle", + "tx_page": "https://app.ezstaking.io/assetmantle/txs/${txHash}", + "account_page": "https://app.ezstaking.io/assetmantle/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/asset-mantle', - tx_page: 'https://www.mintscan.io/asset-mantle/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/asset-mantle/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/asset-mantle", + "tx_page": "https://www.mintscan.io/asset-mantle/transactions/${txHash}", + "account_page": "https://www.mintscan.io/asset-mantle/accounts/${accountAddress}" }, { - 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}', - account_page: - 'https://atomscan.com/assetmantle/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/assetmantle", + "tx_page": "https://atomscan.com/assetmantle/transactions/${txHash}", + "account_page": "https://atomscan.com/assetmantle/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/assetmantle', - tx_page: 'https://bigdipper.live/assetmantle/transactions/${txHash}', - account_page: - 'https://bigdipper.live/assetmantle/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/assetmantle", + "tx_page": "https://bigdipper.live/assetmantle/transactions/${txHash}", + "account_page": "https://bigdipper.live/assetmantle/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/AM_Logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/AM_Logo_Dark.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/AM_Logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/AM_Logo_Dark.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'aura', - status: 'live', - network_type: 'mainnet', - website: 'https://aura.network/', - pretty_name: 'Aura Network', - chain_id: 'xstaxy-1', - bech32_prefix: 'aura', - daemon_name: 'aurad', - node_home: '$HOME/.aura', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uaura', - fixed_min_gas_price: 0.001, - low_gas_price: 0.001, - average_gas_price: 0.002, - high_gas_price: 0.0025 + "$schema": "../chain.schema.json", + "chain_name": "aura", + "status": "live", + "network_type": "mainnet", + "website": "https://aura.network/", + "pretty_name": "Aura Network", + "chain_id": "xstaxy-1", + "bech32_prefix": "aura", + "daemon_name": "aurad", + "node_home": "$HOME/.aura", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uaura", + "fixed_min_gas_price": 0.001, + "low_gas_price": 0.001, + "average_gas_price": 0.002, + "high_gas_price": 0.0025 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'uaura' + "denom": "uaura" } ], - lock_duration: { - time: '1209600s' + "lock_duration": { + "time": "1209600s" } }, - codebase: { - git_repo: 'https://github.com/aura-nw/aura', - recommended_version: 'v0.7.2', - compatible_versions: ['v0.7.2'], - cosmos_sdk_version: '0.47.4', - ibc_go_version: 'v7.2.0', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.41.0', - cosmwasm_enabled: true, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/aura-nw/mainnet-artifacts/main/xstaxy-1/genesis.json' - }, - versions: [ - { - name: 'aura_v0.4.4', - recommended_version: 'aura_v0.4.4', - compatible_versions: ['aura_v0.4.4'], - next_version_name: 'v0.4.5' - }, - { - name: 'v0.4.5', - proposal: 4, - height: 1292226, - recommended_version: 'aura_v0.4.5', - compatible_versions: ['aura_v0.4.5'], - next_version_name: 'v0.7.1' - }, - { - name: 'v0.7.1', - proposal: 7, - height: 3666129, - recommended_version: 'v0.7.1', - compatible_versions: ['v0.7.1'], - cosmos_sdk_version: '0.47.4', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.41.0', - cosmwasm_enabled: true, - next_version_name: 'v0.7.2' - }, - { - name: 'v0.7.2', - proposal: 8, - height: 4083908, - recommended_version: 'v0.7.2', - compatible_versions: ['v0.7.2'], - cosmos_sdk_version: '0.47.4', - ibc_go_version: 'v7.2.0', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.41.0', - cosmwasm_enabled: true, - next_version_name: '' - } - ] + "codebase": { + "cosmos_sdk_version": "0.47.4", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.41.0" }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" }, - peers: { - seeds: [ + "apis": { + "rpc": [ { - id: '22a0ca5f64187bb477be1d82166b1e9e184afe50', - address: '18.143.52.13:26656' + "address": "https://rpc.aura.network/", + "provider": "Aura Network Foundation" }, { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'auranetwork-mainnet-seed.autostake.com:26966', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://m-aura.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - id: '0b8bd8c1b956b441f036e71df3a4d96e85f843b8', - address: '13.250.159.219:26656' + "address": "https://rpc.aura.nodestake.top", + "provider": "NodeStake" }, { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'aura.rpc.kjnodes.com:11759', - provider: 'kjnodes' + "address": "http://aura.rpc.m.stavr.tech:11047", + "provider": "🔥STAVR🔥" }, { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:21756', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://aura-rpc.ramuchi.tech", + "provider": "ramuchi.tech" }, { - id: 'd05e3f406ed2275ec86957c5983a27768350ac47', - address: 'seed-node.mms.team:26656', - provider: 'MMS' - } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'auranetwork-mainnet-peer.autostake.com:26966', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://aura.rpc.kjnodes.com", + "provider": "kjnodes" }, { - id: 'ced3a13f4f7200ce1a2392a5738c88532f794359', - address: 'mainnet-aura.konsortech.xyz:25656', - provider: 'KonsorTech' + "address": "https://mainnet-aura-rpc.konsortech.xyz", + "provider": "KonsorTech" }, { - id: 'dce07d176e5ba4cfdc7b806eb80eabab162a09d0', - address: '45.76.213.229:26656', - provider: '[NODERS]TEAM' + "address": "https://aura-rpc.tienthuattoan.ventures", + "provider": "TienThuatToan" }, { - id: '57406c041d38af3bac9acdcb2b4bdc90dc7a8852', - address: 'aura.peers.stavr.tech:21056', - provider: '🔥STAVR🔥' + "address": "https://aura-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - id: '9ee34b0829e9d85d88784aa17857fa1719760da2', - address: 'aura.ramuchi.tech:30000', - provider: 'ramuchi.tech' + "address": "https://aura-rpc.staketab.org:443", + "provider": "Staketab" }, { - id: 'b6a0d0d030f35ffffcfe92e72ea13933c1adbe62', - address: '116.202.174.253:21656', - provider: 'Staketab' + "address": "https://rpc.aura.safeblock.space", + "provider": "Safe Block" }, { - id: '07317346ab58eb4de14fe8c7705863002186d340', - address: '142.132.201.53:36656', - provider: 'Stake-Take' + "address": "https://rpc.aura.silentvalidator.com", + "provider": "silent" }, { - id: 'da9f07269cac08619190dbce8b0978556315b359', - address: 'p2p.aura.safeblock.space:26656', - provider: 'Safe Block' + "address": "https://aura-rpc.sergo.dev", + "provider": "SerGo" }, { - id: 'bdd32536c902de9b240a36f0b23641233a080351', - address: 'peer-aura.mms.team:27656', - provider: 'MMS' + "address": "https://rpc-aura.mms.team", + "provider": "MMS" }, { - id: '2bd24dbac94c3b95707c8f06a57d61a31ae666fa', - address: '138.201.21.197:46656', - provider: 'StakeTown' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://rpc.aura.network/', - provider: 'Aura Network Foundation' - }, - { - address: 'https://m-aura.rpc.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' - }, - { - address: 'https://rpc.aura.nodestake.top', - provider: 'NodeStake' - }, - { - address: 'http://aura.rpc.m.stavr.tech:11047', - provider: '🔥STAVR🔥' - }, - { - address: 'https://aura-rpc.ramuchi.tech', - provider: 'ramuchi.tech' - }, - { - address: 'https://aura.rpc.kjnodes.com', - provider: 'kjnodes' - }, - { - address: 'https://mainnet-aura-rpc.konsortech.xyz', - provider: 'KonsorTech' - }, - { - address: 'https://aura-rpc.tienthuattoan.ventures', - provider: 'TienThuatToan' - }, - { - address: 'https://aura-rpc.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' - }, - { - address: 'https://aura-rpc.staketab.org:443', - provider: 'Staketab' - }, - { - address: 'https://rpc.aura.safeblock.space', - provider: 'Safe Block' - }, - { - address: 'https://rpc.aura.silentvalidator.com', - provider: 'silent' - }, - { - address: 'https://aura-rpc.sergo.dev', - provider: 'SerGo' - }, - { - address: 'https://rpc-aura.mms.team', - provider: 'MMS' - }, - { - address: 'https://aura-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://aura-rpc.stake-town.com", + "provider": "StakeTown" } ], - rest: [ + "rest": [ { - address: 'https://lcd.aura.network/', - provider: 'Aura Network Foundation' + "address": "https://lcd.aura.network/", + "provider": "Aura Network Foundation" }, { - address: 'https://m-aura.api.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-aura.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://aura.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://aura.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api.aura.nodestake.top', - provider: 'NodeStake' + "address": "https://api.aura.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://aura-api.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://aura-api.ramuchi.tech", + "provider": "ramuchi.tech" }, { - address: 'https://aura.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://aura.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://mainnet-aura-api.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-aura-api.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://aura-api.tienthuattoan.ventures', - provider: 'TienThuatToan' + "address": "https://aura-api.tienthuattoan.ventures", + "provider": "TienThuatToan" }, { - address: 'https://aura-api.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://aura-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://aura-rest.staketab.org', - provider: 'Staketab' + "address": "https://aura-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://api.aura.safeblock.space', - provider: 'Safe Block' + "address": "https://api.aura.safeblock.space", + "provider": "Safe Block" }, { - address: 'https://api.aura.silentvalidator.com', - provider: 'silent' + "address": "https://api.aura.silentvalidator.com", + "provider": "silent" }, { - address: 'https://aura-api.sergo.dev', - provider: 'SerGo' + "address": "https://aura-api.sergo.dev", + "provider": "SerGo" }, { - address: 'https://api-aura.mms.team', - provider: 'MMS' + "address": "https://api-aura.mms.team", + "provider": "MMS" }, { - address: 'https://aura-api.stake-town.com', - provider: 'StakeTown' + "address": "https://aura-api.stake-town.com", + "provider": "StakeTown" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.aura.network', - provider: 'Aura Network Foundation' + "address": "https://grpc.aura.network", + "provider": "Aura Network Foundation" }, { - address: 'auranetwork-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "auranetwork-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://grpc.aura.nodestake.top', - provider: 'NodeStake' + "address": "https://grpc.aura.nodestake.top", + "provider": "NodeStake" }, { - address: 'aura.mainnet.grpc.nodersteam.com:9100/', - provider: '[NODERS]TEAM' + "address": "aura.mainnet.grpc.nodersteam.com:9100/", + "provider": "[NODERS]TEAM" }, { - address: 'https://aura-grpc.ramuchi.tech:15000', - provider: 'ramuchi.tech' + "address": "https://aura-grpc.ramuchi.tech:15000", + "provider": "ramuchi.tech" }, { - address: 'http://aura.grpc.m.stavr.tech:9901', - provider: '🔥STAVR🔥' + "address": "http://aura.grpc.m.stavr.tech:9901", + "provider": "🔥STAVR🔥" }, { - address: 'aura.grpc.kjnodes.com:11790', - provider: 'kjnodes' + "address": "aura.grpc.kjnodes.com:11790", + "provider": "kjnodes" }, { - address: 'aura-grpc.tienthuattoan.ventures:9090', - provider: 'TienThuatToan' + "address": "aura-grpc.tienthuattoan.ventures:9090", + "provider": "TienThuatToan" }, { - address: 'aura-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "aura-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'services.staketab.com:9021', - provider: 'Staketab' + "address": "services.staketab.com:9021", + "provider": "Staketab" }, { - address: 'grpc.aura.silentvalidator.com:443', - provider: 'silent' + "address": "grpc.aura.silentvalidator.com:443", + "provider": "silent" }, { - address: 'grpc-aura.mms.team:443', - provider: 'MMS' + "address": "grpc-aura.mms.team:443", + "provider": "MMS" }, { - address: 'aura-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "aura-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'grpc.aura.safeblock.space:9090', - provider: 'Safe Block' + "address": "grpc.aura.safeblock.space:9090", + "provider": "Safe Block" } ] }, - explorers: [ + "explorers": [ { - kind: 'aurascan', - url: 'https://aurascan.io', - tx_page: 'https://aurascan.io/transaction/${txHash}', - account_page: 'https://aurascan.io/account/${accountAddress}' + "kind": "aurascan", + "url": "https://aurascan.io", + "tx_page": "https://aurascan.io/transaction/${txHash}", + "account_page": "https://aurascan.io/account/${accountAddress}" }, { - kind: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 Explorer', - url: 'https://exp.utsa.tech/aura', - tx_page: 'https://exp.utsa.tech/aura/tx/${txHash}', - account_page: 'https://exp.utsa.tech/aura/account/${accountAddress}' + "kind": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 Explorer", + "url": "https://exp.utsa.tech/aura", + "tx_page": "https://exp.utsa.tech/aura/tx/${txHash}", + "account_page": "https://exp.utsa.tech/aura/account/${accountAddress}" }, { - kind: '🔥STAVR🔥 Explorer', - url: 'https://explorer.stavr.tech/Aura-Mainnet', - tx_page: 'https://explorer.stavr.tech/aura-mainnet/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/aura-mainnet/account/${accountAddress}' + "kind": "🔥STAVR🔥 Explorer", + "url": "https://explorer.stavr.tech/Aura-Mainnet", + "tx_page": "https://explorer.stavr.tech/aura-mainnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/aura-mainnet/account/${accountAddress}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/aura', - tx_page: 'https://explorer.nodestake.top/aura/tx/${txHash}', - account_page: - 'https://explorer.nodestake.top/aura/account/${accountAddress}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/aura", + "tx_page": "https://explorer.nodestake.top/aura/tx/${txHash}", + "account_page": "https://explorer.nodestake.top/aura/account/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/aura', - tx_page: 'https://explorer.tcnetwork.io/aura/transaction/${txHash}', - account_page: - 'https://explorer.tcnetwork.io/aura/account/${accountAddress}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/aura", + "tx_page": "https://explorer.tcnetwork.io/aura/transaction/${txHash}", + "account_page": "https://explorer.tcnetwork.io/aura/account/${accountAddress}" }, { - kind: 'Stake-Take', - url: 'https://explorer.stake-take.com/aura', - tx_page: 'https://explorer.stake-take.com/aura/tx/${txHash}', - account_page: - 'https://explorer.stake-take.com/aura/account/${accountAddress}' + "kind": "Stake-Take", + "url": "https://explorer.stake-take.com/aura", + "tx_page": "https://explorer.stake-take.com/aura/tx/${txHash}", + "account_page": "https://explorer.stake-take.com/aura/account/${accountAddress}" }, { - kind: 'Safe Block', - url: 'https://explorer.safeblock.space/aura', - tx_page: 'https://explorer.safeblock.space/aura/tx/${txHash}', - account_page: - 'https://explorer.safeblock.space/aura/account/${accountAddress}' + "kind": "Safe Block", + "url": "https://explorer.safeblock.space/aura", + "tx_page": "https://explorer.safeblock.space/aura/tx/${txHash}", + "account_page": "https://explorer.safeblock.space/aura/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'axelar', - chain_id: 'axelar-dojo-1', - pretty_name: 'Axelar', - status: 'live', - network_type: 'mainnet', - website: 'https://axelar.network/', - bech32_prefix: 'axelar', - daemon_name: 'axelard', - node_home: '$HOME/.axelar', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uaxl', - fixed_min_gas_price: 0.007, - low_gas_price: 0.007, - average_gas_price: 0.007, - high_gas_price: 0.01 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "axelar", + "chain_id": "axelar-dojo-1", + "pretty_name": "Axelar", + "status": "live", + "network_type": "mainnet", + "website": "https://axelar.network/", + "bech32_prefix": "axelar", + "daemon_name": "axelard", + "node_home": "$HOME/.axelar", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uaxl' + "denom": "uaxl", + "fixed_min_gas_price": 0.007, + "low_gas_price": 0.007, + "average_gas_price": 0.007, + "high_gas_price": 0.01 } ] }, - codebase: { - git_repo: 'https://github.com/axelarnetwork/axelar-core', - recommended_version: 'v0.34.0', - compatible_versions: ['v0.34.0'], - binaries: { - 'linux/amd64': - 'https://github.com/axelarnetwork/axelar-core/releases/download/v0.34.0/axelard-linux-amd64-v0.34.0', - 'darwin/amd64': - 'https://github.com/axelarnetwork/axelar-core/releases/download/v0.34.0/axelard-darwin-amd64-v0.34.0' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/axelarnetwork/axelarate-community/main/resources/mainnet/genesis.json' - }, - versions: [ - { - name: 'v0.33.0', - recommended_version: 'v0.33.0', - compatible_versions: ['v0.33.0'], - binaries: { - 'linux/amd64': - 'https://github.com/axelarnetwork/axelar-core/releases/download/v0.33.0/axelard-linux-amd64-v0.33.0', - 'darwin/amd64': - 'https://github.com/axelarnetwork/axelar-core/releases/download/v0.33.0/axelard-darwin-amd64-v0.33.0' - }, - next_version_name: 'v0.34.0' - }, + "staking": { + "staking_tokens": [ { - name: 'v0.34.0', - recommended_version: 'v0.34.0', - compatible_versions: ['v0.34.0'], - binaries: { - 'linux/amd64': - 'https://github.com/axelarnetwork/axelar-core/releases/download/v0.34.0/axelard-linux-amd64-v0.34.0', - 'darwin/amd64': - 'https://github.com/axelarnetwork/axelar-core/releases/download/v0.34.0/axelard-darwin-amd64-v0.34.0' - }, - next_version_name: '' + "denom": "uaxl" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.svg' - }, - description: - 'Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.', - peers: { - seeds: [ - { - 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: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:15156', - provider: 'Polkachu' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'axelar-mainnet-seed.autostake.com:26826', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:15156', - provider: 'WhisperNode 🤐' - }, - { - id: '3470414cd299d15911e9bb28557f6bffb8e514c6', - address: 'seed-axelar-01.stakeflow.io:1606', - provider: 'Stakeflow' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: '353f7d0962594bcbfb63c81594e35e39c4c89a1a', - address: '18.223.127.165:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'axelar-mainnet-peer.autostake.com:26826', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '3470414cd299d15911e9bb28557f6bffb8e514c6', - address: 'peer-axelar-01.stakeflow.io:1606', - provider: 'Stakeflow' - }, - { - id: '381d7961c9e44bc25e02d60b94c26763a42db045', - address: '65.21.91.99:16756', - provider: 'Staketab' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.svg" }, - apis: { - 'grpc-web': [ + "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", + "apis": { + "grpc-web": [ { - address: 'axelar-grpcweb.chainode.tech', - provider: 'Chainode' + "address": "axelar-grpcweb.chainode.tech", + "provider": "Chainode" }, { - address: 'axelar-grpcweb.quantnode.tech:9091', - provider: 'Quantnode' + "address": "axelar-grpcweb.quantnode.tech:9091", + "provider": "Quantnode" } ], - rpc: [ + "rpc": [ { - address: 'https://rpc-axelar.imperator.co:443', - provider: 'Imperator.co' + "address": "https://rpc-axelar.imperator.co:443", + "provider": "Imperator.co" }, { - address: 'https://axelar-rpc.quickapi.com:443', - provider: 'chainlayer' + "address": "https://axelar-rpc.quickapi.com:443", + "provider": "chainlayer" }, { - address: 'https://rpc-axelar.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-axelar.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://axelar-rpc.pops.one:443', - provider: 'p-ops' + "address": "https://axelar-rpc.pops.one:443", + "provider": "p-ops" }, { - address: 'https://axelar-rpc.qubelabs.io:443', - provider: 'Qubelabs' + "address": "https://axelar-rpc.qubelabs.io:443", + "provider": "Qubelabs" }, { - 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.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-axelar-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://axelar-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://axelar-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://axelar.rpc.stakin-nodes.com', - provider: 'Stakin' + "address": "https://axelar.rpc.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'https://rpc.axelar.bh.rocks', - provider: 'BlockHunters 🎯' + "address": "https://rpc.axelar.bh.rocks", + "provider": "BlockHunters 🎯" }, { - address: 'https://axelar-rpc.validatrium.club', - provider: 'Validatrium' + "address": "https://axelar-rpc.validatrium.club", + "provider": "Validatrium" }, { - address: 'https://rpc-axelar.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-axelar.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://axelar-rpc.quantnode.tech/', - provider: 'QuantNode' + "address": "https://axelar-rpc.quantnode.tech/", + "provider": "QuantNode" }, { - address: 'https://axelar-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://axelar-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://axelar-rpc.rockrpc.net/', - provider: 'RockawayX Infra' + "address": "https://axelar-rpc.rockrpc.net/", + "provider": "RockawayX Infra" }, { - address: 'https://axelar-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://axelar-rpc.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://rpc-axelar-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-axelar-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://axelar-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://axelar-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://axelar-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://axelar-rpc.w3coins.io", + "provider": "w3coins" } ], - rest: [ + "rest": [ { - address: 'https://lcd-axelar.imperator.co:443', - provider: 'Imperator.co' + "address": "https://lcd-axelar.imperator.co:443", + "provider": "Imperator.co" }, { - address: 'https://axelar-lcd.quickapi.com:443', - provider: 'chainlayer' + "address": "https://axelar-lcd.quickapi.com:443", + "provider": "chainlayer" }, { - address: 'https://api-axelar.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-axelar.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://axelar-lcd.qubelabs.io:443', - provider: 'Qubelabs' + "address": "https://axelar-lcd.qubelabs.io:443", + "provider": "Qubelabs" }, { - 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.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-axelar-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://axelar-api.polkachu.com', - provider: 'Polkachu' + "address": "https://axelar-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://axelar.rest.stakin-nodes.com', - provider: 'Stakin' + "address": "https://axelar.rest.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'https://api.axelar.bh.rocks', - provider: 'BlockHunters 🎯' + "address": "https://api.axelar.bh.rocks", + "provider": "BlockHunters 🎯" }, { - address: 'https://axelar-api.validatrium.club', - provider: 'Validatrium' + "address": "https://axelar-api.validatrium.club", + "provider": "Validatrium" }, { - address: 'https://lcd-axelar.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-axelar.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://axelar-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://axelar-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://axelar-lcd.quantnode.tech/', - provider: 'QuantNode' + "address": "https://axelar-lcd.quantnode.tech/", + "provider": "QuantNode" }, { - address: 'https://axelar-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://axelar-api.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://api-axelar-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-axelar-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://axelar-rest.staketab.org', - provider: 'Staketab' + "address": "https://axelar-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://axelar-api.w3coins.io', - provider: 'w3coins' + "address": "https://axelar-api.w3coins.io", + "provider": "w3coins" } ], - grpc: [ + "grpc": [ { - address: 'axelar-grpc.qubelabs.io:9092', - provider: 'Qubelabs' + "address": "axelar-grpc.qubelabs.io:9092", + "provider": "Qubelabs" }, { - address: 'axelar-grpc.quantnode.tech:9090', - provider: 'Quantnode' + "address": "axelar-grpc.quantnode.tech:9090", + "provider": "Quantnode" }, { - address: 'services.staketab.com:9080', - provider: 'Staketab' + "address": "services.staketab.com:9080", + "provider": "Staketab" }, { - address: 'grpc-axelar.cosmos-spaces.cloud:1590', - provider: 'Cosmos Spaces' + "address": "grpc-axelar.cosmos-spaces.cloud:1590", + "provider": "Cosmos Spaces" }, { - address: 'grpc-axelar-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-axelar-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'axelar-grpc.polkachu.com:15190', - provider: 'Polkachu' + "address": "axelar-grpc.polkachu.com:15190", + "provider": "Polkachu" }, { - address: 'axelar.grpc.stakin-nodes.com:443', - provider: 'Stakin' + "address": "axelar.grpc.stakin-nodes.com:443", + "provider": "Stakin" }, { - address: 'axelar-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "axelar-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-axelar-01.stakeflow.io:1602', - provider: 'Stakeflow' + "address": "grpc-axelar-01.stakeflow.io:1602", + "provider": "Stakeflow" }, { - address: 'axelar-grpc.w3coins.io:15190', - provider: 'w3coins' + "address": "axelar-grpc.w3coins.io:15190", + "provider": "w3coins" }, { - address: 'grpc-axelar.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "grpc-axelar.whispernode.com:443", + "provider": "WhisperNode 🤐" } ] }, - 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/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/axelar/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/axelar", + "tx_page": "https://www.mintscan.io/axelar/transactions/${txHash}", + "account_page": "https://www.mintscan.io/axelar/accounts/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/axelar/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/axelar", + "tx_page": "https://atomscan.com/axelar/transactions/${txHash}", + "account_page": "https://atomscan.com/axelar/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/axelar', - account_page: 'https://stakeflow.io/axelar/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/axelar", + "account_page": "https://stakeflow.io/axelar/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'bandchain', - status: 'live', - network_type: 'mainnet', - website: 'https://bandprotocol.com/', - pretty_name: 'Band Protocol', - chain_id: 'laozi-mainnet', - daemon_name: 'bandd', - node_home: '$HOME/.band', - bech32_prefix: 'band', - slip44: 494, - fees: { - fee_tokens: [ - { - denom: 'uband', - low_gas_price: 0.0025, - average_gas_price: 0.003, - high_gas_price: 0.005 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "bandchain", + "status": "live", + "network_type": "mainnet", + "website": "https://bandprotocol.com/", + "pretty_name": "Band Protocol", + "chain_id": "laozi-mainnet", + "daemon_name": "bandd", + "node_home": "$HOME/.band", + "bech32_prefix": "band", + "slip44": 494, + "fees": { + "fee_tokens": [ { - denom: 'uband' + "denom": "uband", + "low_gas_price": 0.0025, + "average_gas_price": 0.003, + "high_gas_price": 0.005 } ] }, - codebase: { - git_repo: 'https://github.com/bandprotocol/chain', - recommended_version: 'v2.5.3', - compatible_versions: ['v2.5.3'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/bandprotocol/launch/master/laozi-mainnet/genesis.json' - }, - versions: [ - { - name: 'v2.4.1', - recommended_version: 'v2.4.1', - compatible_versions: ['v2.4.1'] - }, - { - name: 'v2.5.2', - recommended_version: 'v2.5.2', - compatible_versions: ['v2.5.2'] - }, + "staking": { + "staking_tokens": [ { - name: 'v2.5.3', - recommended_version: 'v2.5.3', - compatible_versions: ['v2.5.3'] + "denom": "uband" } ] }, - 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' - }, - description: - 'Band Protocol is a cross-chain data oracle platform that aggregates and connects real-world data and APIs to smart contracts.', - peers: { - seeds: [ - { - id: '8d42bdcb6cced03e0b67fa3957e4e9c8fd89015a', - address: '34.87.86.195:26656' - }, - { - id: '543e0cab9c3016a0e99775443a17bcf163038912', - address: '34.150.156.78:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'bandchain-mainnet-seed.autostake.com:26666', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '4ded49b3a718828eb64cf35da1ed791ecb201bc1', - address: 'seed-band-01.stakeflow.io:25017', - provider: 'Stakeflow' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'band.rpc.kjnodes.com:16959', - provider: 'kjnodes' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: '98823087b61d442a4ab86998709c77b2e517ee78', - address: '35.240.152.216:26656' - }, - { - id: '3ea84babead3d6bc488810a0f2cf0744cf5c68fe', - address: '34.86.22.251:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'bandchain-mainnet-peer.autostake.com:26666', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '0bfd5d7355ebf38e35af619ae0cab70aa21675a5', - address: 'band-m.peer.stavr.tech:11026', - provider: '🔥STAVR🔥' - }, - { - id: '4ded49b3a718828eb64cf35da1ed791ecb201bc1', - address: 'peer-band-01.stakeflow.io:25017', - provider: 'Stakeflow' - }, - { - id: 'd3fe7586b604196461db92c2c7cf72eb354af1fc', - address: 'rpc.band.indonode.net:12656', - provider: 'Indonode' - }, - { - id: 'c6f9e1309055eedbcd58d018b54247f13e9f878b', - address: '65.108.195.213:44656', - provider: 'StakeTown' - } - ] + "codebase": {}, + "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" }, - apis: { - rpc: [ + "description": "Band Protocol is a cross-chain data oracle platform that aggregates and connects real-world data and APIs to smart contracts.", + "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.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-bandchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://band-rpc.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://band-rpc.ibs.team/", + "provider": "Inter Blockchain Services" }, { - address: 'https://bandchain-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://bandchain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://band.rpc.m.stavr.tech:443', - provider: '🔥STAVR🔥' + "address": "https://band.rpc.m.stavr.tech:443", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc-band-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-band-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://rpc-band.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-band.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://band-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://band-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://bandprotocol-rpc.highstakes.ch:26657/', - provider: 'High Stakes 🇨🇭' + "address": "https://bandprotocol-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://band-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://band-rpc.stake-town.com", + "provider": "StakeTown" } ], - rest: [ + "rest": [ { - address: 'https://laozi1.bandchain.org/api', - provider: 'bandprotocol' + "address": "https://laozi1.bandchain.org/api", + "provider": "bandprotocol" }, { - address: 'https://api-bandchain-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-bandchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://band-api.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://band-api.ibs.team/", + "provider": "Inter Blockchain Services" }, { - address: 'https://api-band.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-band.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://band.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://band.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://bandchain-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://bandchain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://api-band-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-band-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://band-api.w3coins.io', - provider: 'w3coins' + "address": "https://band-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://bandprotocol-api.highstakes.ch:1317/', - provider: 'High Stakes 🇨🇭' + "address": "https://bandprotocol-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://band-api.stake-town.com', - provider: 'StakeTown' + "address": "https://band-api.stake-town.com", + "provider": "StakeTown" } ], - grpc: [ + "grpc": [ { - address: 'grpc-bandchain-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-bandchain-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'bandchain-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "bandchain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-band.cosmos-spaces.cloud:2240', - provider: 'Cosmos Spaces' + "address": "grpc-band.cosmos-spaces.cloud:2240", + "provider": "Cosmos Spaces" }, { - address: 'grpc-band-01.stakeflow.io:2502', - provider: 'Stakeflow' + "address": "grpc-band-01.stakeflow.io:2502", + "provider": "Stakeflow" }, { - address: 'band-grpc.w3coins.io:22990', - provider: 'w3coins' + "address": "band-grpc.w3coins.io:22990", + "provider": "w3coins" }, { - address: 'http://band.grpc.m.stavr.tech:7803', - provider: '🔥STAVR🔥' + "address": "http://band.grpc.m.stavr.tech:7803", + "provider": "🔥STAVR🔥" }, { - address: 'https://grpc-band.nodeist.net', - provider: 'Nodeist' + "address": "https://grpc-band.nodeist.net", + "provider": "Nodeist" }, { - address: 'band.grpc.kjnodes.com:443', - provider: 'kjnodes' + "address": "band.grpc.kjnodes.com:443", + "provider": "kjnodes" }, { - address: 'band-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "band-grpc.stake-town.com:443", + "provider": "StakeTown" } ] }, - 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/transactions/${txHash}', - account_page: 'https://www.mintscan.io/band/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/band", + "tx_page": "https://www.mintscan.io/band/transactions/${txHash}", + "account_page": "https://www.mintscan.io/band/accounts/${accountAddress}" }, { - 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: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Band-Mainnet', - tx_page: 'https://explorer.stavr.tech/Band-Mainnet/tx/${txHash}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Band-Mainnet", + "tx_page": "https://explorer.stavr.tech/Band-Mainnet/tx/${txHash}" }, { - kind: 'Nodeist Explorer', - url: 'https://exp.nodeist.net/band', - tx_page: 'https://exp.nodeist.net/band/tx/${txHash}' + "kind": "Nodeist Explorer", + "url": "https://exp.nodeist.net/band", + "tx_page": "https://exp.nodeist.net/band/tx/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/band-protocol', - tx_page: 'https://atomscan.com/band-protocol/transactions/${txHash}', - account_page: - 'https://atomscan.com/band-protocol/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/band-protocol", + "tx_page": "https://atomscan.com/band-protocol/transactions/${txHash}", + "account_page": "https://atomscan.com/band-protocol/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/band', - tx_page: 'https://bigdipper.live/band/transactions/${txHash}', - account_page: 'https://bigdipper.live/band/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/band", + "tx_page": "https://bigdipper.live/band/transactions/${txHash}", + "account_page": "https://bigdipper.live/band/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/band-protocol', - account_page: - 'https://stakeflow.io/band-protocol/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/band-protocol", + "account_page": "https://stakeflow.io/band-protocol/accounts/${accountAddress}" }, { - kind: 'kjnodes Explorer', - url: 'https://explorer.kjnodes.com/band', - tx_page: 'https://explorer.kjnodes.com/band/tx/${txHash}' + "kind": "kjnodes Explorer", + "url": "https://explorer.kjnodes.com/band", + "tx_page": "https://explorer.kjnodes.com/band/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'beezee', - status: 'live', - network_type: 'mainnet', - pretty_name: 'BeeZee', - chain_id: 'beezee-1', - bech32_prefix: 'bze', - daemon_name: 'bzed', - node_home: '$HOME/.bze', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ubze', - fixed_min_gas_price: 0.01, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ubze' - } - ] - }, - codebase: { - git_repo: 'https://github.com/bze-alphateam/bze', - recommended_version: 'v6.1.0', - compatible_versions: ['v6.1.0'], - binaries: { - 'darwin/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-darwin-arm64.tar.gz', - 'linux/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-linux-arm64.tar.gz', - 'windows/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-win64.zip' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/bze-alphateam/bze/main/genesis.json' - }, - versions: [ - { - name: 'v5.0.1', - recommended_version: 'v5.0.1', - tag: 'v5.0.1', - compatible_versions: ['v5.0.1'], - cosmos_sdk_version: 'v0.44.3', - ibc_go_version: 'v1.2.2', - consensus: { - type: 'tendermint', - version: 'v0.34.14' - }, - height: 0, - binaries: { - 'darwin/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.0.1/bze-5.0.1-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.0.1/bze-5.0.1-darwin-arm64.tar.gz', - 'linux/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.0.1/bze-5.0.1-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.0.1/bze-5.0.1-linux-arm64.tar.gz', - 'windows/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.0.1/bze-5.0.1-win64.zip' - }, - next_version_name: 'v5.1.1' - }, - { - name: 'v5.1.1', - recommended_version: 'v5.1.1', - tag: 'v5.1.1', - compatible_versions: ['v5.1.1'], - cosmos_sdk_version: 'v0.45.9', - ibc_go_version: 'v1.2.2', - consensus: { - type: 'tendermint', - version: 'v0.34.22' - }, - height: 3303144, - binaries: { - 'darwin/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.1.1/bze-5.1.1-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.1.1/bze-5.1.1-darwin-arm64.tar.gz', - 'linux/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.1.1/bze-5.1.1-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.1.1/bze-5.1.1-linux-arm64.tar.gz', - 'windows/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.1.1/bze-5.1.1-win64.zip' - }, - next_version_name: 'v5.1.2' - }, - { - name: 'v5.1.2', - recommended_version: 'v5.1.2', - tag: 'v5.1.2', - compatible_versions: ['v5.1.2'], - cosmos_sdk_version: 'v0.45.9', - ibc_go_version: 'v1.2.2', - consensus: { - type: 'tendermint', - version: 'v0.34.22' - }, - height: 3646700, - binaries: { - 'darwin/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.1.2/bze-5.1.2-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.1.2/bze-5.1.2-darwin-arm64.tar.gz', - 'linux/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.1.2/bze-5.1.2-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.1.2/bze-5.1.2-linux-arm64.tar.gz', - 'windows/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v5.1.2/bze-5.1.2-win64.zip' - }, - next_version_name: 'v6.0.0' - }, - { - name: 'v6.0.0', - recommended_version: 'v6.0.0', - tag: 'v6.0.0', - compatible_versions: ['v6.0.0'], - cosmos_sdk_version: 'v0.45.10', - ibc_go_version: 'v2.4.2', - consensus: { - type: 'tendermint', - version: 'v0.34.22' - }, - height: 4875460, - binaries: { - 'darwin/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.0.0/bze-6.0.0-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.0.0/bze-6.0.0-darwin-arm64.tar.gz', - 'linux/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.0.0/bze-6.0.0-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.0.0/bze-6.0.0-linux-arm64.tar.gz', - 'windows/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.0.0/bze-6.0.0-win64.zip' - }, - next_version_name: 'v6.1.0' - }, - { - name: 'v6.1.0', - recommended_version: 'v6.1.0', - tag: 'v6.1.0', - compatible_versions: ['v6.1.0'], - cosmos_sdk_version: 'v0.45.16', - ibc_go_version: 'v4.5.1', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - height: 9079079, - binaries: { - 'darwin/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-darwin-arm64.tar.gz', - 'linux/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-linux-arm64.tar.gz', - 'windows/amd64': - 'https://github.com/bze-alphateam/bze/releases/download/v6.1.0/bze-6.1.0-win64.zip' - }, - next_version_name: 'v7.0.0' + "$schema": "../chain.schema.json", + "chain_name": "beezee", + "status": "live", + "network_type": "mainnet", + "pretty_name": "BeeZee", + "chain_id": "beezee-1", + "bech32_prefix": "bze", + "daemon_name": "bzed", + "node_home": "$HOME/.bze", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ubze", + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' - }, - peers: { - seeds: [ - { - id: '6385d5fb198e3a793498019bb8917973325e5eb7', - address: '51.15.138.216:26656', - provider: 'AlphaTeam' - } - ], - persistent_peers: [ + "staking": { + "staking_tokens": [ { - id: 'ef5377944874e2e8e5bd7156d2bb2e46c6a24b45', - address: '31.220.82.236:26656', - provider: 'AlphaTeam' + "denom": "ubze" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.getbze.com', - provider: 'AlphaTeam' + "address": "https://rpc.getbze.com", + "provider": "AlphaTeam" }, { - address: 'https://rpc-1.getbze.com', - provider: 'AlphaTeam' + "address": "https://rpc-1.getbze.com", + "provider": "AlphaTeam" }, { - address: 'https://rpc-2.getbze.com', - provider: 'AlphaTeam' + "address": "https://rpc-2.getbze.com", + "provider": "AlphaTeam" } ], - rest: [ + "rest": [ { - address: 'https://rest.getbze.com', - provider: 'AlphaTeam' + "address": "https://rest.getbze.com", + "provider": "AlphaTeam" }, { - address: 'https://rest-1.getbze.com', - provider: 'AlphaTeam' + "address": "https://rest-1.getbze.com", + "provider": "AlphaTeam" }, { - address: 'https://rest-2.getbze.com', - provider: 'AlphaTeam' + "address": "https://rest-2.getbze.com", + "provider": "AlphaTeam" } ], - grpc: [ + "grpc": [ { - address: 'grpc.getbze.com:9099', - provider: 'AlphaTeam' + "address": "grpc.getbze.com:9099", + "provider": "AlphaTeam" }, { - address: 'grpc-1.getbze.com:9099', - provider: 'AlphaTeam' + "address": "grpc-1.getbze.com:9099", + "provider": "AlphaTeam" }, { - address: 'grpc-2.getbze.com:9099', - provider: 'AlphaTeam' + "address": "grpc-2.getbze.com:9099", + "provider": "AlphaTeam" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://ping.pub/beezee', - tx_page: 'https://ping.pub/beezee/tx/${txHash}', - account_page: 'https://ping.pub/beezee/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://ping.pub/beezee", + "tx_page": "https://ping.pub/beezee/tx/${txHash}", + "account_page": "https://ping.pub/beezee/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://explorer.getbze.com/beezee', - tx_page: 'https://explorer.getbze.com/beezee/tx/${txHash}', - account_page: - 'https://explorer.getbze.com/beezee/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://explorer.getbze.com/beezee", + "tx_page": "https://explorer.getbze.com/beezee/tx/${txHash}", + "account_page": "https://explorer.getbze.com/beezee/account/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/beezee', - tx_page: 'https://atomscan.com/beezee/transactions/${txHash}', - account_page: 'https://atomscan.com/beezee/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/beezee", + "tx_page": "https://atomscan.com/beezee/transactions/${txHash}", + "account_page": "https://atomscan.com/beezee/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'bitcanna', - status: 'live', - network_type: 'mainnet', - website: 'https://www.bitcanna.io/', - pretty_name: 'BitCanna', - chain_id: 'bitcanna-1', - bech32_prefix: 'bcna', - daemon_name: 'bcnad', - node_home: '$HOME/.bcna', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ubcna', - fixed_min_gas_price: 0.001, - low_gas_price: 0.001, - average_gas_price: 0.0025, - high_gas_price: 0.01 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ubcna' - } - ] - }, - codebase: { - git_repo: 'https://github.com/BitCannaGlobal/bcna', - recommended_version: 'v2.0.3', - compatible_versions: ['v2.0.2', 'v2.0.3'], - binaries: { - 'linux/amd64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v2.0.3/bcna_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v2.0.3/bcna_linux_arm64.tar.gz', - 'darwin/arm64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v2.0.3/bcna_darwin_arm64.tar.gz' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/BitCannaGlobal/bcna/main/genesis.json' - }, - versions: [ - { - name: 'vigorous-grow-fix', - proposal: 10, - height: 7585420, - recommended_version: 'v1.6.3', - compatible_versions: ['v1.6.1', 'v1.6.2', 'v1.6.3'], - binaries: { - 'linux/amd64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v1.6.3/bcna_linux_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v1.6.3/bcna_darwin_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v1.6.3/bcna_darwin_amd64.tar.gz' - }, - next_version_name: 'vigorous-grow-huckleberry' - }, - { - name: 'vigorous-grow-huckleberry', - proposal: 11, - height: 8771420, - recommended_version: 'v1.7.0', - compatible_versions: ['v1.7.0'], - binaries: { - 'linux/amd64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v1.7.0/bcna_linux_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v1.7.0/bcna_darwin_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v1.7.0/bcna_darwin_amd64.tar.gz' - }, - next_version_name: 'wakeandbake' - }, - { - name: 'wakeandbake', - proposal: 12, - height: 9209420, - recommended_version: 'v2.0.3', - compatible_versions: ['v2.0.2', 'v2.0.3'], - binaries: { - 'linux/amd64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v2.0.3/bcna_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v2.0.3/bcna_linux_arm64.tar.gz', - 'darwin/arm64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v2.0.3/bcna_darwin_arm64.tar.gz' - } + "$schema": "../chain.schema.json", + "chain_name": "bitcanna", + "status": "live", + "network_type": "mainnet", + "website": "https://www.bitcanna.io/", + "pretty_name": "BitCanna", + "chain_id": "bitcanna-1", + "bech32_prefix": "bcna", + "daemon_name": "bcnad", + "node_home": "$HOME/.bcna", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ubcna", + "fixed_min_gas_price": 0.001, + "low_gas_price": 0.001, + "average_gas_price": 0.0025, + "high_gas_price": 0.01 } ] }, - 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' - }, - peers: { - seeds: [ - { - id: 'd6aa4c9f3ccecb0cc52109a95962b4618d69dd3f', - address: 'seed1.bitcanna.io:26656', - provider: 'bitcanna' - }, - { - id: 'e2e7c704f766ef6b9e2c8dd61d963f8393b87966', - address: 'seed3.bitcanna.io:26656', - provider: 'bitcanna' - }, - { - id: 'f0e6c86d769bf5c52f78e01864091690e731643f', - address: 'bitcanna-seed.panthea.eu:37656', - provider: 'Panthea EU' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:13056', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: '258f523c96efde50d5fe0a9faeea8a3e83be22ca', - address: 'seed.bitcanna-1.bitcanna.aviaone.com:10263', - provider: 'AVIAONE 🟢' - }, - { - id: '33ab202dfef5e08d5d0346e7b3cfaab2a946198a', - address: 'seeds.bitcanna-mainnet.hexnodes.co:27656', - provider: 'Hexnodes' - }, - { - id: 'd5ed854872ad96f114737889ac9521ea3a29e3a3', - address: 'bitcanna-seed.oldcat.io:26656', - provider: 'Oldcat' - }, - { - id: 'd37062587a2aba2a5256b7363f722f4acb4b8e2f', - address: 'seed-node.mms.team:30656', - provider: 'MMS' - }, - { - id: '10ed1e176d874c8bb3c7c065685d2da6a4b86475', - address: 'seed-bcna.ibs.team:16656', - provider: 'Inter Blockchain Services' - }, - { - id: '951cadb1888c0360dce506c1eff925cb6eb47e06', - address: 'seeds-2.anode.team:10258', - provider: 'AlxVoy ⚡ ANODE.TEAM' - }, - { - id: '09ba537d6563018b97c502979c3478df4decf426', - address: 'bitcanna-seed.genznodes.dev:20656', - provider: 'genznodes' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: 'a4c1e46441164c350f721cf142d52c136215e05c', - address: '65.108.43.170:26656', - provider: 'BitCanna' - }, - { - id: '8fa7a04d55ca7d0ab70dc5cbc35d5cf26c5ecfb7', - address: '65.108.142.81:26682', - provider: 'Stakely' - }, - { - id: 'ad820cb2fa85e525538207bb24ee49a61a74eb45', - address: '93.115.25.15:26656', - provider: 'Stakely' - }, - { - id: 'df99de6cec9152c517990317b340b8b9a307493c', - address: '193.34.144.156:26656', - provider: 'ParanormalBrothers' - }, - { - id: '0a658df9d9fab096983a12e6f878e87281a15ce6', - address: 'bitcanna-peer.panthea.eu:27656', - provider: 'Panthea EU' - }, - { - id: '756fa9ce5d65c3c43021d2780e1bda0924a6cd14', - address: '144.76.97.251:27656', - provider: 'AlxVoy ⚡ ANODE.TEAM' - }, - { - id: '5a048cab1d183de5c465c56b29a16fd93a8bf9bd', - address: 'mainnet-bitcanna.konsortech.xyz:27656', - provider: 'KonsorTech' - }, - { - id: '50e4ad8f5847c1fc4d9cb3de2cb6356d1a14291b', - address: '95.214.55.138:32656', - provider: 'genznodes' - }, - { - id: '2ff33d346b1b0f19cd59018ceb62d06a6406d472', - address: 'bitcanna.peers.stavr.tech:21326', - provider: '🔥STAVR🔥' - }, - { - id: 'e69d68eae1f01baac83c1ed321ba1dca2379bdc2', - address: '144.91.65.13:26666', - provider: 'AVIAONE 🟢' - }, + "staking": { + "staking_tokens": [ { - id: '6ae1dfa46884560e13962d73462e5bda0bb8c019', - address: 'bitcanna-mainnet.peers.l0vd.com:17656', - provider: 'L0vd.com' - }, - { - id: '526e4529131070e39134d94edc0e7e48289a64b1', - address: '176.191.97.120:28656', - provider: 'Inter Blockchain Services' - }, - { - id: '3cb7bc8d5c448eaa42558347fb6cb03cd414b223', - address: '38.242.232.202:26656', - provider: 'Inter Blockchain Services' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:13056', - provider: 'Polkachu' - }, - { - id: '45589e6147e36dda9e429668484d7614fb25b142', - address: 'bitcanna.nodejumper.io:27656', - provider: 'NODEJUMPER' - }, - { - id: 'd2cb1f04b351e82dada97794d32a468dd71d6a84', - address: 'peer-bitcanna.mms.team:56104', - provider: 'MMS' - }, - { - id: '88497ab3bbbcc1e8545771f45020e738bcce590f', - address: '95.165.89.222:26756', - provider: 'MaxFoton nodes' - }, - { - id: 'a70da421632d3dbbb6de3712474bd564ac5653e1', - address: 'p2p.bitcanna.safeblock.space:26656', - provider: 'Safe Block' + "denom": "ubcna" } ] }, - apis: { - rpc: [ + "codebase": {}, + "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" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.bitcanna.io/', - provider: 'bitcanna' + "address": "https://rpc.bitcanna.io/", + "provider": "bitcanna" }, { - address: 'http://bcna.paranorm.pro/', - provider: 'ParanormalBrothers' + "address": "http://bcna.paranorm.pro/", + "provider": "ParanormalBrothers" }, { - address: 'https://bcna-rpc.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://bcna-rpc.ibs.team/", + "provider": "Inter Blockchain Services" }, { - address: 'https://bitcanna-rpc.panthea.eu', - provider: 'Panthea EU' + "address": "https://bitcanna-rpc.panthea.eu", + "provider": "Panthea EU" }, { - address: 'https://rpc.bitcanna.sgtstake.com/', - provider: 'SGTstake' + "address": "https://rpc.bitcanna.sgtstake.com/", + "provider": "SGTstake" }, { - address: 'https://bitcanna.rpc.m.anode.team', - provider: 'AlxVoy ⚡ ANODE.TEAM' + "address": "https://bitcanna.rpc.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" }, { - address: 'http://bitcanna.rpc.m.stavr.tech:21327', - provider: '🔥STAVR🔥' + "address": "http://bitcanna.rpc.m.stavr.tech:21327", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc-bcna.kjinc.io/', - provider: 'KJINC.io' + "address": "https://rpc-bcna.kjinc.io/", + "provider": "KJINC.io" }, { - address: 'https://mainnet-bitcanna-rpc.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-bitcanna-rpc.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://bitcanna.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://bitcanna.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://bitcanna-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://bitcanna-rpc.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://rpc.bitcanna-1.bitcanna.aviaone.com', - provider: 'AVIAONE 🟢' + "address": "https://rpc.bitcanna-1.bitcanna.aviaone.com", + "provider": "AVIAONE 🟢" }, { - address: 'https://rpc.bitcanna-mainnet.hexnodes.co', - provider: 'Hexnodes' + "address": "https://rpc.bitcanna-mainnet.hexnodes.co", + "provider": "Hexnodes" }, { - address: 'http://rpc.bitcanna.citizencosmos.space/', - provider: 'Citizen Web3' + "address": "http://rpc.bitcanna.citizencosmos.space/", + "provider": "Citizen Web3" }, { - address: 'https://bitcanna-mainnet.rpc.l0vd.com/', - provider: 'L0vd.com' + "address": "https://bitcanna-mainnet.rpc.l0vd.com/", + "provider": "L0vd.com" }, { - address: 'https://rpc-bitcanna-ia.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://rpc-bitcanna-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'https://bitcanna-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://bitcanna-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc.bitcanna.safeblock.space', - provider: 'Safe Block' + "address": "https://rpc.bitcanna.safeblock.space", + "provider": "Safe Block" }, { - address: 'https://bitcanna.nodejumper.io:443', - provider: 'NODEJUMPER' + "address": "https://bitcanna.nodejumper.io:443", + "provider": "NODEJUMPER" }, { - address: 'https://rpc.bitcanna.indonode.net/', - provider: 'Indonode' + "address": "https://rpc.bitcanna.indonode.net/", + "provider": "Indonode" }, { - address: 'https://rpc-bitcanna.mms.team:443', - provider: 'MMS' + "address": "https://rpc-bitcanna.mms.team:443", + "provider": "MMS" }, { - address: 'http://65.108.142.81:26683', - provider: 'Stakely' + "address": "http://65.108.142.81:26683", + "provider": "Stakely" }, { - address: 'http://93.115.25.15:26657', - provider: 'Stakely' + "address": "http://93.115.25.15:26657", + "provider": "Stakely" }, { - address: 'https://bitcanna-rpc.validatornode.com', - provider: 'ValidatorNode' + "address": "https://bitcanna-rpc.validatornode.com", + "provider": "ValidatorNode" }, { - address: 'https://bcna.rpc.arcturian.tech/', - provider: 'Arcturian Tech' + "address": "https://bcna.rpc.arcturian.tech/", + "provider": "Arcturian Tech" }, { - address: 'https://bitcanna-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://bitcanna-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ + "grpc": [ { - address: 'grpc.bitcanna.io:443', - provider: 'bitcanna' + "address": "grpc.bitcanna.io:443", + "provider": "bitcanna" }, { - address: 'bitcanna-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "bitcanna-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'bitcanna.grpc.m.stavr.tech:9081', - provider: '🔥STAVR🔥' + "address": "bitcanna.grpc.m.stavr.tech:9081", + "provider": "🔥STAVR🔥" }, { - address: 'grpc.bitcanna-mainnet.hexnodes.co:27090', - provider: 'HexNodes' + "address": "grpc.bitcanna-mainnet.hexnodes.co:27090", + "provider": "HexNodes" }, { - address: 'grpc.bitcanna-1.bitcanna.aviaone.com:9092', - provider: 'AVIAONE 🟢' + "address": "grpc.bitcanna-1.bitcanna.aviaone.com:9092", + "provider": "AVIAONE 🟢" }, { - address: 'bitcanna-mainnet.grpc.l0vd.com:80', - provider: 'L0vd.com' + "address": "bitcanna-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com" }, { - address: 'grpc-bitcanna-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-bitcanna-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'bitcanna.grpc.kjnodes.com:14290', - provider: 'kjnodes' + "address": "bitcanna.grpc.kjnodes.com:14290", + "provider": "kjnodes" }, { - address: 'bitcanna-grpc.polkachu.com:13090', - provider: 'Polkachu' + "address": "bitcanna-grpc.polkachu.com:13090", + "provider": "Polkachu" }, { - address: 'grpc-bitcanna.mms.team:443', - provider: 'MMS' + "address": "grpc-bitcanna.mms.team:443", + "provider": "MMS" }, { - address: 'bitcanna.grpc.m.anode.team:443', - provider: 'AlxVoy ⚡ ANODE.TEAM' + "address": "bitcanna.grpc.m.anode.team:443", + "provider": "AlxVoy ⚡ ANODE.TEAM" }, { - address: 'bitcanna-grpc.panthea.eu:16710', - provider: 'Panthea EU' + "address": "bitcanna-grpc.panthea.eu:16710", + "provider": "Panthea EU" }, { - address: 'https://grpc.bitcanna.indonode.net:11090', - provider: 'Indonode' + "address": "https://grpc.bitcanna.indonode.net:11090", + "provider": "Indonode" }, { - address: 'bitcanna-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "bitcanna-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'grpc.bitcanna.safeblock.space:9090', - provider: 'Safe Block' + "address": "grpc.bitcanna.safeblock.space:9090", + "provider": "Safe Block" } ], - rest: [ + "rest": [ { - address: 'https://lcd.bitcanna.io', - provider: 'bitcanna' + "address": "https://lcd.bitcanna.io", + "provider": "bitcanna" }, { - address: 'https://bitcanna-api.panthea.eu', - provider: 'Panthea EU' + "address": "https://bitcanna-api.panthea.eu", + "provider": "Panthea EU" }, { - address: 'https://api.bitcanna.sgtstake.com/', - provider: 'SGTstake' + "address": "https://api.bitcanna.sgtstake.com/", + "provider": "SGTstake" }, { - address: 'https://bitcanna.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://bitcanna.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://bcna-api.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://bcna-api.ibs.team/", + "provider": "Inter Blockchain Services" }, { - address: 'https://bitcanna.api.m.anode.team', - provider: 'AlxVoy ⚡ ANODE.TEAM' + "address": "https://bitcanna.api.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" }, { - address: 'https://api-bcna.kjinc.io/', - provider: 'KJINC.io' + "address": "https://api-bcna.kjinc.io/", + "provider": "KJINC.io" }, { - address: 'https://mainnet-bitcanna-api.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-bitcanna-api.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://bitcanna.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://bitcanna.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://bitcanna-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://bitcanna-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://bitcanna-api.genznodes.dev', - provider: 'genznodes' + "address": "https://bitcanna-api.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://api.bitcanna-1.bitcanna.aviaone.com/', - provider: 'AVIAONE 🟢' + "address": "https://api.bitcanna-1.bitcanna.aviaone.com/", + "provider": "AVIAONE 🟢" }, { - address: 'https://lcd.bitcanna-mainnet.hexnodes.co', - provider: 'Hexnodes' + "address": "https://lcd.bitcanna-mainnet.hexnodes.co", + "provider": "Hexnodes" }, { - address: 'https://bitcanna-mainnet.api.l0vd.com', - provider: 'L0vd.com' + "address": "https://bitcanna-mainnet.api.l0vd.com", + "provider": "L0vd.com" }, { - address: 'https://api-bitcanna-ia.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://api-bitcanna-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'https://bitcanna-api.polkachu.com', - provider: 'Polkachu' + "address": "https://bitcanna-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://api.bitcanna.safeblock.space', - provider: 'Safe Block' + "address": "https://api.bitcanna.safeblock.space", + "provider": "Safe Block" }, { - address: 'https://bitcanna.nodejumper.io:1317', - provider: 'NODEJUMPER' + "address": "https://bitcanna.nodejumper.io:1317", + "provider": "NODEJUMPER" }, { - address: 'https://api-bitcanna.mms.team:443', - provider: 'MMS' + "address": "https://api-bitcanna.mms.team:443", + "provider": "MMS" }, { - address: 'http://65.108.142.81:1325', - provider: 'Stakely' + "address": "http://65.108.142.81:1325", + "provider": "Stakely" }, { - address: 'http://93.115.25.15:1317', - provider: 'Stakely' + "address": "http://93.115.25.15:1317", + "provider": "Stakely" }, { - address: 'https://bitcanna-api.validatornode.com', - provider: 'ValidatorNode' + "address": "https://bitcanna-api.validatornode.com", + "provider": "ValidatorNode" }, { - address: 'https://bcna.api.arcturian.tech/', - provider: 'Arcturian Tech' + "address": "https://bcna.api.arcturian.tech/", + "provider": "Arcturian Tech" }, { - address: 'https://api.bitcanna.indonode.net/', - provider: 'Indonode' + "address": "https://api.bitcanna.indonode.net/", + "provider": "Indonode" }, { - address: 'https://bitcanna-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://bitcanna-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZStaking Tools', - url: 'https://app.ezstaking.io/bitcanna', - tx_page: 'https://ezstaking.tools/bitcanna/txs/${txHash}', - account_page: - 'https://ezstaking.tools/bitcanna/account/${accountAddress}' + "kind": "EZStaking Tools", + "url": "https://app.ezstaking.io/bitcanna", + "tx_page": "https://ezstaking.tools/bitcanna/txs/${txHash}", + "account_page": "https://ezstaking.tools/bitcanna/account/${accountAddress}" }, { - kind: 'forbole', - url: 'https://explorer.bitcanna.io', - tx_page: 'https://explorer.bitcanna.io/transactions/${txHash}', - account_page: 'https://explorer.bitcanna.io/accounts/${accountAddress}' + "kind": "forbole", + "url": "https://explorer.bitcanna.io", + "tx_page": "https://explorer.bitcanna.io/transactions/${txHash}", + "account_page": "https://explorer.bitcanna.io/accounts/${accountAddress}" }, { - 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}', - account_page: - 'https://www.mintscan.io/bitcanna/account/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/bitcanna/", + "tx_page": "https://www.mintscan.io/bitcanna/txs/${txHash}", + "account_page": "https://www.mintscan.io/bitcanna/account/${accountAddress}" }, { - kind: '🔥STAVR🔥 Explorer', - url: 'https://explorer.stavr.tech/bitcanna', - tx_page: 'https://explorer.stavr.tech/bitcanna/txs/${txHash}', - account_page: - 'https://explorer.stavr.tech/bitcanna/account/${accountAddress}' + "kind": "🔥STAVR🔥 Explorer", + "url": "https://explorer.stavr.tech/bitcanna", + "tx_page": "https://explorer.stavr.tech/bitcanna/txs/${txHash}", + "account_page": "https://explorer.stavr.tech/bitcanna/account/${accountAddress}" }, { - 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}" }, { - kind: 'ValidatorNode Explorer', - url: 'https://explorer.validatornode.com/bitcanna', - tx_page: 'https://explorer.validatornode.com/bitcanna/tx/${txHash}' + "kind": "ValidatorNode Explorer", + "url": "https://explorer.validatornode.com/bitcanna", + "tx_page": "https://explorer.validatornode.com/bitcanna/tx/${txHash}" }, { - kind: 'AlxVoy ⚡ ANODE.TEAM Explorer', - url: 'https://main.anode.team/bitcanna', - tx_page: 'https://main.anode.team/bitcanna/txs/${txHash}', - account_page: - 'https://main.anode.team/bitcanna/account/${accountAddress}' + "kind": "AlxVoy ⚡ ANODE.TEAM Explorer", + "url": "https://main.anode.team/bitcanna", + "tx_page": "https://main.anode.team/bitcanna/txs/${txHash}", + "account_page": "https://main.anode.team/bitcanna/account/${accountAddress}" }, { - kind: 'Moonbys Dashboard', - url: 'https://explorer.moonbys.com', - tx_page: 'https://explorer.moonbys.com/tx/${txHash}', - account_page: - 'https://explorer.moonbys.com/bitcanna/account/${accountAddress}' + "kind": "Moonbys Dashboard", + "url": "https://explorer.moonbys.com", + "tx_page": "https://explorer.moonbys.com/tx/${txHash}", + "account_page": "https://explorer.moonbys.com/bitcanna/account/${accountAddress}" }, { - kind: 'Indonode', - url: 'https://explorer.indonode.net/bitcanna', - tx_page: 'https://explorer.indonode.net/bitcanna/tx/${txHash}' + "kind": "Indonode", + "url": "https://explorer.indonode.net/bitcanna", + "tx_page": "https://explorer.indonode.net/bitcanna/tx/${txHash}" }, { - kind: 'Safe Block', - url: 'https://explorer.safeblock.space/bitcanna', - tx_page: 'https://explorer.safeblock.space/bitcanna/tx/${txHash}', - account_page: - 'https://explorer.safeblock.space/bitcanna/account/${accountAddress}' + "kind": "Safe Block", + "url": "https://explorer.safeblock.space/bitcanna", + "tx_page": "https://explorer.safeblock.space/bitcanna/tx/${txHash}", + "account_page": "https://explorer.safeblock.space/bitcanna/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'bitsong', - status: 'live', - network_type: 'mainnet', - website: 'https://bitsong.io/', - pretty_name: 'BitSong', - chain_id: 'bitsong-2b', - bech32_prefix: 'bitsong', - slip44: 639, - daemon_name: 'bitsongd', - node_home: '$HOME/.bitsongd', - codebase: { - git_repo: 'https://github.com/bitsongofficial/go-bitsong', - recommended_version: 'v0.14.0', - compatible_versions: ['v0.14.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/bitsongofficial/networks/master/bitsong-2b/genesis.json' - }, - versions: [ + "$schema": "../chain.schema.json", + "chain_name": "bitsong", + "status": "live", + "network_type": "mainnet", + "website": "https://bitsong.io/", + "pretty_name": "BitSong", + "chain_id": "bitsong-2b", + "bech32_prefix": "bitsong", + "slip44": 639, + "daemon_name": "bitsongd", + "node_home": "$HOME/.bitsongd", + "codebase": {}, + "fees": { + "fee_tokens": [ { - name: 'v0.14.0', - recommended_version: 'v0.14.0', - compatible_versions: ['v0.14.0'] + "denom": "ubtsg", + "fixed_min_gas_price": 0, + "low_gas_price": 3, + "average_gas_price": 10, + "high_gas_price": 20 } ] }, - fees: { - fee_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'ubtsg', - fixed_min_gas_price: 0, - low_gas_price: 3, - average_gas_price: 10, - high_gas_price: 20 + "denom": "ubtsg" } ] }, - staking: { - staking_tokens: [ - { - denom: 'ubtsg' - } - ] - }, - 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' - }, - description: - 'Artists, Fans, Managers and Labels in One Single Holistic Ecosystem: $BTSG. Earn real-time royalties, discover exclusive content, mint and trade Fantokens, buy & sell NFTs.', - peers: { - seeds: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:16056', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: '10de6c207e60b876bdd88571db44d29c18d0cb5d', - address: 'seed-bitsong.starsquid.io:15605', - provider: 'Starsquid' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: 'e9fea0509b1a2d16a10ef9fdea0a4e3edc7ca485', - address: '185.144.83.158:26656' - }, - { - id: '0ecf202e90241ca757d25387c18e8a85abc3b5a5', - address: '176.9.151.17:26656', - provider: '[NODERS]TEAM' - }, - { - id: '3ca45466430bf6e0bfebb758e689e4047f0b73c7', - address: 'p2p.bitsong.safeblock.space:26656', - provider: 'Safe Block' - } - ] + "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" }, - apis: { - rpc: [ + "description": "Artists, Fans, Managers and Labels in One Single Holistic Ecosystem: $BTSG. Earn real-time royalties, discover exclusive content, mint and trade Fantokens, buy & sell NFTs.", + "apis": { + "rpc": [ { - address: 'https://rpc-bitsong-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-bitsong-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc.explorebitsong.com', - provider: 'stake.systems' + "address": "https://rpc.explorebitsong.com", + "provider": "stake.systems" }, { - address: 'https://bitsong-rpc.validatrium.club', - provider: 'Validatrium' + "address": "https://bitsong-rpc.validatrium.club", + "provider": "Validatrium" }, { - address: 'https://rpc.bitsong.chaintools.tech/', - provider: 'ChainTools' + "address": "https://rpc.bitsong.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://rpc.bitsong.quokkastake.io', - provider: '🐹 Quokka Stake' + "address": "https://rpc.bitsong.quokkastake.io", + "provider": "🐹 Quokka Stake" }, { - address: 'https://bitsong-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://bitsong-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-bitsong.starsquid.io', - provider: 'Starsquid' + "address": "https://rpc-bitsong.starsquid.io", + "provider": "Starsquid" }, { - address: 'https://rpc-bitsong.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rpc-bitsong.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'http://bitsong.statesync.nodersteam.com:11657', - provider: '[NODERS]TEAM' + "address": "http://bitsong.statesync.nodersteam.com:11657", + "provider": "[NODERS]TEAM" }, { - address: 'https://rpc.bitsong.safeblock.space', - provider: 'Safe Block' + "address": "https://rpc.bitsong.safeblock.space", + "provider": "Safe Block" }, { - address: 'https://bitsong.tdrsys.com:2053', - provider: 'TdrSys' + "address": "https://bitsong.tdrsys.com:2053", + "provider": "TdrSys" } ], - rest: [ + "rest": [ { - address: 'https://api-bitsong-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-bitsong-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://lcd.explorebitsong.com/', - provider: 'stake.systems' + "address": "https://lcd.explorebitsong.com/", + "provider": "stake.systems" }, { - address: 'https://bitsong-api.validatrium.club', - provider: 'Validatrium' + "address": "https://bitsong-api.validatrium.club", + "provider": "Validatrium" }, { - address: 'https://api.bitsong.quokkastake.io', - provider: '🐹 Quokka Stake' + "address": "https://api.bitsong.quokkastake.io", + "provider": "🐹 Quokka Stake" }, { - address: 'http://bitsong.api.nodersteam.com:11017', - provider: '[NODERS]TEAM' + "address": "http://bitsong.api.nodersteam.com:11017", + "provider": "[NODERS]TEAM" }, { - address: 'https://bitsong-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://bitsong-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-bitsong.starsquid.io', - provider: 'Starsquid' + "address": "https://api-bitsong.starsquid.io", + "provider": "Starsquid" }, { - address: 'https://rest-bitsong.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rest-bitsong.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://api.bitsong.safeblock.space', - provider: 'Safe Block' + "address": "https://api.bitsong.safeblock.space", + "provider": "Safe Block" }, { - address: 'https://bitsong.tdrsys.com', - provider: 'TdrSys' + "address": "https://bitsong.tdrsys.com", + "provider": "TdrSys" } ], - grpc: [ + "grpc": [ { - address: 'grpc-bitsong-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-bitsong-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'bitsong-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "bitsong-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'bitsong.grpc.nodersteam.com:9111/', - provider: '[NODERS]TEAM' + "address": "bitsong.grpc.nodersteam.com:9111/", + "provider": "[NODERS]TEAM" }, { - address: 'grpc.bitsong.safeblock.space:9090', - provider: 'Safe Block' + "address": "grpc.bitsong.safeblock.space:9090", + "provider": "Safe Block" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/bitsong', - tx_page: 'https://app.ezstaking.io/bitsong/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/bitsong/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/bitsong", + "tx_page": "https://app.ezstaking.io/bitsong/txs/${txHash}", + "account_page": "https://app.ezstaking.io/bitsong/account/${accountAddress}" }, { - 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/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/bitsong/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/bitsong", + "tx_page": "https://www.mintscan.io/bitsong/transactions/${txHash}", + "account_page": "https://www.mintscan.io/bitsong/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/bitsong', - tx_page: 'https://bigdipper.live/bitsong/transactions/${txHash}', - account_page: - 'https://bigdipper.live/bitsong/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/bitsong", + "tx_page": "https://bigdipper.live/bitsong/transactions/${txHash}", + "account_page": "https://bigdipper.live/bitsong/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/bitsong', - tx_page: 'https://atomscan.com/bitsong/transactions/${txHash}', - account_page: 'https://atomscan.com/bitsong/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/bitsong", + "tx_page": "https://atomscan.com/bitsong/transactions/${txHash}", + "account_page": "https://atomscan.com/bitsong/accounts/${accountAddress}" }, { - kind: 'Safe Block', - url: 'https://explorer.safeblok.space/bitsong', - tx_page: 'https://explorer.safeblock.space/bitsong/tx/${txHash}', - account_page: - 'https://explorer.safeblock.space/bitsong/account/${accountAddress}' + "kind": "Safe Block", + "url": "https://explorer.safeblok.space/bitsong", + "tx_page": "https://explorer.safeblock.space/bitsong/tx/${txHash}", + "account_page": "https://explorer.safeblock.space/bitsong/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'bluzelle', - status: 'live', - network_type: 'mainnet', - website: 'https://bluzelle.com/', - pretty_name: 'Bluzelle', - chain_id: 'bluzelle-9', - bech32_prefix: 'bluzelle', - daemon_name: 'curiumd', - node_home: '$HOME/.curium', - key_algos: ['secp256k1'], - slip44: 483, - fees: { - fee_tokens: [ - { - denom: 'ubnt', - fixed_min_gas_price: 0.002, - low_gas_price: 0.002, - average_gas_price: 0.002, - high_gas_price: 0.025 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ubnt' - } - ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/bluzelle/bluzelle-public', - recommended_version: 'v10.0', - compatible_versions: ['v10.0'], - cosmos_sdk_version: 'v0.45.11', - consensus: { - type: 'cometbft', - version: '0.34.23' - }, - ibc_go_version: 'v3.4.0', - genesis: { - genesis_url: 'https://a.client.sentry.net.bluzelle.com:26657/genesis' - }, - versions: [ - { - name: 'v2.0', - recommended_version: 'v2.0', - compatible_versions: ['v2.0'], - cosmos_sdk_version: '0.44.3', - consensus: { - type: 'tendermint', - version: '0.34.14' - } - }, - { - name: 'v9.0', - recommended_version: 'v9.0', - compatible_versions: ['v9.0'], - cosmos_sdk_version: '0.45.11', - consensus: { - type: 'tendermint', - version: '0.34.23' - }, - next_version_name: '10.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "bluzelle", + "status": "live", + "network_type": "mainnet", + "website": "https://bluzelle.com/", + "pretty_name": "Bluzelle", + "chain_id": "bluzelle-9", + "bech32_prefix": "bluzelle", + "daemon_name": "curiumd", + "node_home": "$HOME/.curium", + "key_algos": [ + "secp256k1" + ], + "slip44": 483, + "fees": { + "fee_tokens": [ { - name: '10.0', - recommended_version: 'v10.0', - compatible_versions: ['v10.0'], - binaries: { - 'linux/amd64': - 'https://github.com/bluzelle/bluzelle-public/releases/download/v10.0/curiumd' - }, - proposal: 1, - height: 3333333, - cosmos_sdk_version: 'v0.45.11', - consensus: { - type: 'cometbft', - version: 'v0.34.23' - }, - ibc_go_version: 'v3.4.0', - next_version_name: '' + "denom": "ubnt", + "fixed_min_gas_price": 0.002, + "low_gas_price": 0.002, + "average_gas_price": 0.002, + "high_gas_price": 0.025 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' - }, - peers: { - persistent_peers: [ - { - id: '58fb5ba6e285a4b785c597f9ed480ced7bd06329', - address: 'a.gateway.sentry.net.bluzelle.com:26656', - provider: 'Bluzelle' - }, - { - id: 'ea7e48103d33356aa576b3d60cfabc250a7c2998', - address: 'b.gateway.sentry.net.bluzelle.com:26656', - provider: 'Bluzelle' - }, + "staking": { + "staking_tokens": [ { - id: '70b5e2af27c5591967d7f1fea965b8627dd656e8', - address: 'c.gateway.sentry.net.bluzelle.com:26656', - provider: 'Bluzelle' + "denom": "ubnt" } - ] + ], + "lock_duration": { + "time": "1814400s" + } }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.45.11" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg" + }, + "apis": { + "rpc": [ { - address: 'https://a.client.sentry.net.bluzelle.com:26657', - provider: 'Bluzelle' + "address": "https://a.client.sentry.net.bluzelle.com:26657", + "provider": "Bluzelle" }, { - address: 'https://b.client.sentry.net.bluzelle.com:26657', - provider: 'Bluzelle' + "address": "https://b.client.sentry.net.bluzelle.com:26657", + "provider": "Bluzelle" }, { - address: 'https://c.client.sentry.net.bluzelle.com:26657', - provider: 'Bluzelle' + "address": "https://c.client.sentry.net.bluzelle.com:26657", + "provider": "Bluzelle" }, { - address: 'https://bluzelle-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://bluzelle-rpc.genznodes.dev", + "provider": "genznodes" } ], - rest: [ + "rest": [ { - address: 'https://a.client.sentry.net.bluzelle.com:1317', - provider: 'Bluzelle' + "address": "https://a.client.sentry.net.bluzelle.com:1317", + "provider": "Bluzelle" }, { - address: 'https://b.client.sentry.net.bluzelle.com:1317', - provider: 'Bluzelle' + "address": "https://b.client.sentry.net.bluzelle.com:1317", + "provider": "Bluzelle" }, { - address: 'https://c.client.sentry.net.bluzelle.com:1317', - provider: 'Bluzelle' + "address": "https://c.client.sentry.net.bluzelle.com:1317", + "provider": "Bluzelle" }, { - address: 'https://bluzelle-api.genznodes.dev/', - provider: 'genznodes' + "address": "https://bluzelle-api.genznodes.dev/", + "provider": "genznodes" } ], - grpc: [ + "grpc": [ { - address: 'a.client.sentry.net.bluzelle.com:9090', - provider: 'Bluzelle' + "address": "a.client.sentry.net.bluzelle.com:9090", + "provider": "Bluzelle" }, { - address: 'b.client.sentry.net.bluzelle.com:9090', - provider: 'Bluzelle' + "address": "b.client.sentry.net.bluzelle.com:9090", + "provider": "Bluzelle" }, { - address: 'c.client.sentry.net.bluzelle.com:9090', - provider: 'Bluzelle' + "address": "c.client.sentry.net.bluzelle.com:9090", + "provider": "Bluzelle" }, { - address: 'bluzelle-grpc.genznodes.dev:34090', - provider: 'genznodes' + "address": "bluzelle-grpc.genznodes.dev:34090", + "provider": "genznodes" }, { - address: 'https://grpc-curium.nodine.id:443', - provider: 'Nodine.ID' + "address": "https://grpc-curium.nodine.id:443", + "provider": "Nodine.ID" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://ping.explorer.net.bluzelle.com/bluzelle', - tx_page: 'https://ping.explorer.net.bluzelle.com/bluzelle/tx/${txHash}', - account_page: - 'https://ping.explorer.net.bluzelle.com/bluzelle/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://ping.explorer.net.bluzelle.com/bluzelle", + "tx_page": "https://ping.explorer.net.bluzelle.com/bluzelle/tx/${txHash}", + "account_page": "https://ping.explorer.net.bluzelle.com/bluzelle/account/${accountAddress}" }, { - kind: 'big dipper', - url: 'https://bd.explorer.net.bluzelle.com', - tx_page: 'https://bd.explorer.net.bluzelle.com/transactions/${txHash}', - account_page: - 'https://bd.explorer.net.bluzelle.com/accounts/${accountAddress}' + "kind": "big dipper", + "url": "https://bd.explorer.net.bluzelle.com", + "tx_page": "https://bd.explorer.net.bluzelle.com/transactions/${txHash}", + "account_page": "https://bd.explorer.net.bluzelle.com/accounts/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/bluzelle', - tx_page: 'https://explorer.tcnetwork.io/bluzelle/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/bluzelle", + "tx_page": "https://explorer.tcnetwork.io/bluzelle/transaction/${txHash}" }, { - kind: 'Nodine.ID', - url: 'https://explorer.co.id/bluzelle', - tx_page: 'https://explorer.co.id/bluzelle/transaction/${txHash}' + "kind": "Nodine.ID", + "url": "https://explorer.co.id/bluzelle", + "tx_page": "https://explorer.co.id/bluzelle/transaction/${txHash}" } ], - keywords: ['bluzelle', 'game', 'gamma4', 'nft'], - images: [ + "keywords": [ + "bluzelle", + "game", + "gamma4", + "nft" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg" } ] }, { - $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', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'boot', - low_gas_price: 0, - average_gas_price: 0, - high_gas_price: 0.01 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'boot' - } - ] - }, - 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' - }, - genesis: { - genesis_url: - 'https://cloudflare-ipfs.com/ipfs/QmYubyVNfghD4xCrTFj26zBwrF9s5GJhi1TmxvrwmJCipr' - }, - cosmwasm_enabled: true, - versions: [ - { - name: 'v0.3.0', - recommended_version: 'v0.3.0', - compatible_versions: ['v0.3.0'], - cosmwasm_enabled: true, - 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", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "boot", + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0.01 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' - }, - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: 'd0518ce9881a4b0c5872e5e9b7c4ea8d760dad3f', - address: '85.10.207.173:26656', - provider: 'cybercongress' + "denom": "boot" } - ], - persistent_peers: [] + ] }, - apis: { - rpc: [ + "codebase": { + "cosmwasm_enabled": true + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg" + }, + "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.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-cyber-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc.cyber.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.cyber.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - 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.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-cyber-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://lcd.cyber.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.cyber.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'grpc-cyber-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-cyber-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'https://grpc.cyber.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.cyber.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - 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}', - account_page: 'https://atomscan.com/bostrom/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/bostrom", + "tx_page": "https://atomscan.com/bostrom/transactions/${txHash}", + "account_page": "https://atomscan.com/bostrom/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'canto', - status: 'live', - network_type: 'mainnet', - website: 'https://canto.io/', - pretty_name: 'Canto', - chain_id: 'canto_7700-1', - bech32_prefix: 'canto', - node_home: '$HOME/.cantod', - daemon_name: 'cantod', - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'acanto', - fixed_min_gas_price: 1000000000000, - low_gas_price: 1000000000000, - average_gas_price: 2000000000000, - high_gas_price: 3000000000000 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "canto", + "status": "live", + "network_type": "mainnet", + "website": "https://canto.io/", + "pretty_name": "Canto", + "chain_id": "canto_7700-1", + "bech32_prefix": "canto", + "node_home": "$HOME/.cantod", + "daemon_name": "cantod", + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'acanto' + "denom": "acanto", + "fixed_min_gas_price": 1000000000000, + "low_gas_price": 1000000000000, + "average_gas_price": 2000000000000, + "high_gas_price": 3000000000000 } ] }, - codebase: { - git_repo: 'https://github.com/Canto-Network/Canto', - recommended_version: 'v7.0.0', - compatible_versions: ['v7.0.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/Canto-Network/Canto/genesis/Networks/Mainnet/genesis.json' - }, - versions: [ - { - name: 'v5.0.0', - recommended_version: 'v5.0.0', - compatible_versions: ['v5.0.0'], - next_version_name: 'v6.0.0' - }, - { - name: 'v6.0.0', - recommended_version: 'v6.0.0', - compatible_versions: ['v6.0.0'], - next_version_name: 'v7.0.0' - }, + "staking": { + "staking_tokens": [ { - name: 'v7.0.0', - recommended_version: 'v7.0.0', - compatible_versions: ['v7.0.0'], - proposal: 113, - height: 6055770, - next_version_name: '' + "denom": "acanto" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' - }, - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:15556', - provider: 'Polkachu' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'canto-mainnet-seed.autostake.com:27156', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '27b6d74c8408e033e2e5a9e966a0d15782e33596', - address: 'seeds.nethernode.xyz:15556', - provider: 'carbonZERO🌲' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: '9361d2cfb283da656b14eaf27e64d96cb86706f0', - address: '167.71.170.71:26656', - provider: 'Plex' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'canto-mainnet-peer.autostake.com:27156', - provider: 'AutoStake 🛡️ Slash Protected' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.canto.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.canto.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://canto-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://canto-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc.canto.silentvalidator.com/', - provider: 'silent' + "address": "https://rpc.canto.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://canto.gravitychain.io:26657', - provider: 'Althea' + "address": "https://canto.gravitychain.io:26657", + "provider": "Althea" }, { - address: 'https://rpc-canto.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-canto.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://canto-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://canto-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], - rest: [ + "rest": [ { - address: 'https://api.canto.nodestake.top', - provider: 'NodeStake' + "address": "https://api.canto.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://canto-api.polkachu.com', - provider: 'Polkachu' + "address": "https://canto-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://api.canto.silentvalidator.com/', - provider: 'silent' + "address": "https://api.canto.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://api-canto.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-canto.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://canto-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://canto-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], - grpc: [ + "grpc": [ { - address: 'canto-grpc.polkachu.com:15590', - provider: 'Polkachu' + "address": "canto-grpc.polkachu.com:15590", + "provider": "Polkachu" }, { - address: 'grpc.canto.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.canto.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://grpc.canto.silentvalidator.com/', - provider: 'silent' + "address": "https://grpc.canto.silentvalidator.com/", + "provider": "silent" }, { - address: 'grpc-canto.cosmos-spaces.cloud:2280', - provider: 'Cosmos Spaces' + "address": "grpc-canto.cosmos-spaces.cloud:2280", + "provider": "Cosmos Spaces" }, { - address: 'https://canto.gravitychain.io:9090', - provider: 'Althea' + "address": "https://canto.gravitychain.io:9090", + "provider": "Althea" }, { - address: 'canto-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "canto-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://canto.neobase.one/', - provider: 'NeoBase' + "address": "https://canto.neobase.one/", + "provider": "NeoBase" }, { - address: 'https://canto.evm.chandrastation.com', - provider: 'Chandra Station' + "address": "https://canto.evm.chandrastation.com", + "provider": "Chandra Station" }, { - address: 'https://canto.slingshot.finance', - provider: 'Slingshot' + "address": "https://canto.slingshot.finance", + "provider": "Slingshot" }, { - address: 'https://jsonrpc.canto.nodestake.top', - provider: 'NodeStake' + "address": "https://jsonrpc.canto.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://evm-rpc.canto.silentvalidator.com/', - provider: 'silent' + "address": "https://evm-rpc.canto.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://canto.gravitychain.io:8545', - provider: 'althea' + "address": "https://canto.gravitychain.io:8545", + "provider": "althea" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://cosmos.explorer.canto.io', - tx_page: 'https://cosmos.explorer.canto.io/transactions/${txHash}' + "kind": "bigdipper", + "url": "https://cosmos.explorer.canto.io", + "tx_page": "https://cosmos.explorer.canto.io/transactions/${txHash}" }, { - kind: 'blockscout', - url: 'https://evm.explorer.canto.io/', - tx_page: 'https://evm.explorer.canto.io/tx/${txHash}' + "kind": "blockscout", + "url": "https://evm.explorer.canto.io/", + "tx_page": "https://evm.explorer.canto.io/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://cosmos-explorers.neobase.one/canto', - tx_page: 'https://cosmos-explorers.neobase.one/canto/tx/${txHash}' + "kind": "ping.pub", + "url": "https://cosmos-explorers.neobase.one/canto", + "tx_page": "https://cosmos-explorers.neobase.one/canto/tx/${txHash}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/canto', - tx_page: 'https://www.mintscan.io/canto/transactions/${txHash}', - account_page: 'https://www.mintscan.io/canto/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/canto", + "tx_page": "https://www.mintscan.io/canto/transactions/${txHash}", + "account_page": "https://www.mintscan.io/canto/accounts/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/canto', - tx_page: 'https://explorer.tcnetwork.io/canto/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/canto", + "tx_page": "https://explorer.tcnetwork.io/canto/transaction/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg" } ] }, { - $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', - website: 'https://www.carbon.network/', - node_home: '$HOME/.carbon', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'swth', - fixed_min_gas_price: 1, - low_gas_price: 1, - average_gas_price: 1, - high_gas_price: 1, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "$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", + "website": "https://www.carbon.network/", + "node_home": "$HOME/.carbon", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "swth", + "fixed_min_gas_price": 1, + "low_gas_price": 1, + "average_gas_price": 1, + "high_gas_price": 1, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: 'usc', - fixed_min_gas_price: 0, - low_gas_price: 0.0001, - average_gas_price: 0.0001, - high_gas_price: 0.0001, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "usc", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0001, + "average_gas_price": 0.0001, + "high_gas_price": 0.0001, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: 'bnb.1.6.773edb', - fixed_min_gas_price: 0, - low_gas_price: 1000000, - average_gas_price: 1000000, - high_gas_price: 1000000, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "bnb.1.6.773edb", + "fixed_min_gas_price": 0, + "low_gas_price": 1000000, + "average_gas_price": 1000000, + "high_gas_price": 1000000, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: 'bneo.1.14.e2e5f6', - fixed_min_gas_price: 0, - low_gas_price: 0.0015, - average_gas_price: 0.0015, - high_gas_price: 0.0015, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "bneo.1.14.e2e5f6", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0015, + "average_gas_price": 0.0015, + "high_gas_price": 0.0015, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: 'busd.1.6.754a80', - fixed_min_gas_price: 0, - low_gas_price: 100000000, - average_gas_price: 100000000, - high_gas_price: 100000000, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "busd.1.6.754a80", + "fixed_min_gas_price": 0, + "low_gas_price": 100000000, + "average_gas_price": 100000000, + "high_gas_price": 100000000, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: 'cglp.1.19.1698d3', - fixed_min_gas_price: 0, - low_gas_price: 100000000, - average_gas_price: 100000000, - high_gas_price: 100000000, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "cglp.1.19.1698d3", + "fixed_min_gas_price": 0, + "low_gas_price": 100000000, + "average_gas_price": 100000000, + "high_gas_price": 100000000, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: 'cgt/1', - fixed_min_gas_price: 0, - low_gas_price: 100000000, - average_gas_price: 100000000, - high_gas_price: 100000000, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "cgt/1", + "fixed_min_gas_price": 0, + "low_gas_price": 100000000, + "average_gas_price": 100000000, + "high_gas_price": 100000000, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: 'eth.1.19.c3b805', - fixed_min_gas_price: 0, - low_gas_price: 100000, - average_gas_price: 100000, - high_gas_price: 100000, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "eth.1.19.c3b805", + "fixed_min_gas_price": 0, + "low_gas_price": 100000, + "average_gas_price": 100000, + "high_gas_price": 100000, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: 'eth.1.2.942d87', - fixed_min_gas_price: 0, - low_gas_price: 100000, - average_gas_price: 100000, - high_gas_price: 100000, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "eth.1.2.942d87", + "fixed_min_gas_price": 0, + "low_gas_price": 100000, + "average_gas_price": 100000, + "high_gas_price": 100000, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: - 'ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C', - fixed_min_gas_price: 0, - low_gas_price: 0.0035, - average_gas_price: 0.0035, - high_gas_price: 0.0035, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0035, + "average_gas_price": 0.0035, + "high_gas_price": 0.0035, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: - 'ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5', - fixed_min_gas_price: 0, - low_gas_price: 0.00005, - average_gas_price: 0.00005, - high_gas_price: 0.00005, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", + "fixed_min_gas_price": 0, + "low_gas_price": 0.00005, + "average_gas_price": 0.00005, + "high_gas_price": 0.00005, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: - 'ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5', - fixed_min_gas_price: 0, - low_gas_price: 0.00032, - average_gas_price: 0.00032, - high_gas_price: 0.00032, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "fixed_min_gas_price": 0, + "low_gas_price": 0.00032, + "average_gas_price": 0.00032, + "high_gas_price": 0.00032, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: - 'ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364', - fixed_min_gas_price: 0, - low_gas_price: 300000000, - average_gas_price: 300000000, - high_gas_price: 300000000, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364", + "fixed_min_gas_price": 0, + "low_gas_price": 300000000, + "average_gas_price": 300000000, + "high_gas_price": 300000000, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: - 'ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118', - fixed_min_gas_price: 0, - low_gas_price: 0.0006, - average_gas_price: 0.0006, - high_gas_price: 0.0006, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0006, + "average_gas_price": 0.0006, + "high_gas_price": 0.0006, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: - 'ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5', - fixed_min_gas_price: 0, - low_gas_price: 0.00015, - average_gas_price: 0.00015, - high_gas_price: 0.00015, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", + "fixed_min_gas_price": 0, + "low_gas_price": 0.00015, + "average_gas_price": 0.00015, + "high_gas_price": 0.00015, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: - 'ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93', - fixed_min_gas_price: 0, - low_gas_price: 0.00015, - average_gas_price: 0.00015, - high_gas_price: 0.00015, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", + "fixed_min_gas_price": 0, + "low_gas_price": 0.00015, + "average_gas_price": 0.00015, + "high_gas_price": 0.00015, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: - 'ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861', - fixed_min_gas_price: 0, - low_gas_price: 200000000, - average_gas_price: 200000000, - high_gas_price: 200000000, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861", + "fixed_min_gas_price": 0, + "low_gas_price": 200000000, + "average_gas_price": 200000000, + "high_gas_price": 200000000, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: - 'ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701', - fixed_min_gas_price: 0, - low_gas_price: 0.00001, - average_gas_price: 0.00001, - high_gas_price: 0.00001, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", + "fixed_min_gas_price": 0, + "low_gas_price": 0.00001, + "average_gas_price": 0.00001, + "high_gas_price": 0.00001, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: - 'ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C', - fixed_min_gas_price: 0, - low_gas_price: 0.00001, - average_gas_price: 0.00001, - high_gas_price: 0.00001, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "fixed_min_gas_price": 0, + "low_gas_price": 0.00001, + "average_gas_price": 0.00001, + "high_gas_price": 0.00001, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: - 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', - fixed_min_gas_price: 0, - low_gas_price: 0.00015, - average_gas_price: 0.00015, - high_gas_price: 0.00015, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "fixed_min_gas_price": 0, + "low_gas_price": 0.00015, + "average_gas_price": 0.00015, + "high_gas_price": 0.00015, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: 'usdc.1.2.343151', - fixed_min_gas_price: 0, - low_gas_price: 0.0001, - average_gas_price: 0.0001, - high_gas_price: 0.0001, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "usdc.1.2.343151", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0001, + "average_gas_price": 0.0001, + "high_gas_price": 0.0001, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: 'usdc.1.6.53ff75', - fixed_min_gas_price: 0, - low_gas_price: 100000000, - average_gas_price: 100000000, - high_gas_price: 100000000, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "usdc.1.6.53ff75", + "fixed_min_gas_price": 0, + "low_gas_price": 100000000, + "average_gas_price": 100000000, + "high_gas_price": 100000000, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } }, { - denom: 'zil.1.18.1a4a06', - fixed_min_gas_price: 0, - low_gas_price: 6000, - average_gas_price: 6000, - high_gas_price: 6000, - gas_costs: { - cosmos_send: 100000000, - ibc_transfer: 100000000 + "denom": "zil.1.18.1a4a06", + "fixed_min_gas_price": 0, + "low_gas_price": 6000, + "average_gas_price": 6000, + "high_gas_price": 6000, + "gas_costs": { + "cosmos_send": 100000000, + "ibc_transfer": 100000000 } } ] }, - staking: { - staking_tokens: [ - { - denom: 'swth' - } - ] - }, - codebase: { - git_repo: 'https://github.com/Switcheo/carbon-bootstrap', - recommended_version: 'v2.37.0', - compatible_versions: ['v2.37.0'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.37.0/carbond2.37.0-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.37.0/carbond2.37.0-mainnet.linux-arm64.tar.gz' - }, - genesis: { - genesis_url: - 'https://github.com/Switcheo/carbon-bootstrap/raw/master/carbon-1/genesis.json' - }, - versions: [ - { - name: 'v2.24.0', - recommended_version: 'v2.24.5', - compatible_versions: [ - 'v2.24.5', - 'v2.24.4', - 'v2.24.3', - 'v2.24.2', - 'v2.24.1', - 'v2.24.0' - ], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.24.5/carbond2.24.5-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.24.5/carbond2.24.5-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.25.0' - }, - { - name: 'v2.25.0', - height: 40405361, - recommended_version: 'v2.25.0', - compatible_versions: ['v2.25.0'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.25.0/carbond2.25.0-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.25.0/carbond2.25.0-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.26.0' - }, - { - name: 'v2.26.0', - proposal: 306, - height: 43970651, - recommended_version: 'v2.26.3', - compatible_versions: ['v2.26.3'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.26.3/carbond2.26.3-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.26.3/carbond2.26.3-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.27.0' - }, - { - name: 'v2.27.0', - proposal: 307, - height: 44688221, - recommended_version: 'v2.27.3', - compatible_versions: ['v2.27.3'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.27.3/carbond2.27.3-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.27.3/carbond2.27.3-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.28.0' - }, - { - name: 'v2.28.0', - proposal: 308, - height: 45469721, - recommended_version: 'v2.28.1', - compatible_versions: ['v2.28.1'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.28.1/carbond2.28.1-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.28.1/carbond2.28.1-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.29.0' - }, - { - name: 'v2.29.0', - proposal: 312, - height: 46139891, - recommended_version: 'v2.29.0', - compatible_versions: ['v2.29.0'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.29.0/carbond2.29.0-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.29.0/carbond2.29.0-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.30.0' - }, - { - name: 'v2.30.0', - proposal: 313, - height: 46228611, - recommended_version: 'v2.30.0', - compatible_versions: ['v2.30.0'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.30.0/carbond2.30.0-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.30.0/carbond2.30.0-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.31.0' - }, - { - name: 'v2.31.0', - proposal: 316, - height: 46451861, - recommended_version: 'v2.31.0', - compatible_versions: ['v2.31.0'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.31.0/carbond2.31.0-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.31.0/carbond2.31.0-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.32.0' - }, - { - name: 'v2.32.0', - proposal: 317, - height: 46538071, - recommended_version: 'v2.32.0', - compatible_versions: ['v2.32.0'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.32.0/carbond2.32.0-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.32.0/carbond2.32.0-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.33.0' - }, - { - name: 'v2.33.0', - proposal: 318, - height: 47592681, - recommended_version: 'v2.33.0', - compatible_versions: ['v2.33.0'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.33.0/carbond2.33.0-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.33.0/carbond2.33.0-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.34.0' - }, - { - name: 'v2.34.0', - proposal: 319, - height: 48331411, - recommended_version: 'v2.34.1', - compatible_versions: ['v2.34.1'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.34.1/carbond2.34.1-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.34.1/carbond2.34.1-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.35.0' - }, - { - name: 'v2.35.0', - proposal: 321, - height: 49398331, - recommended_version: 'v2.35.0', - compatible_versions: ['v2.35.0'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.35.0/carbond2.35.0-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.35.0/carbond2.35.0-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.36.0' - }, + "staking": { + "staking_tokens": [ { - name: 'v2.36.0', - proposal: 323, - height: 49677971, - recommended_version: 'v2.36.9', - compatible_versions: ['v2.36.0', 'v2.36.9'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.36.9/carbond2.36.9-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.36.9/carbond2.36.9-mainnet.linux-arm64.tar.gz' - }, - next_version_name: 'v2.37.0' - }, - { - name: 'v2.37.0', - proposal: 338, - height: 52699891, - recommended_version: 'v2.37.0', - compatible_versions: ['v2.37.0'], - binaries: { - 'linux/amd64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.37.0/carbond2.37.0-mainnet.linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.37.0/carbond2.37.0-mainnet.linux-arm64.tar.gz' - }, - next_version_name: '' + "denom": "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' + "codebase": {}, + "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" }, - peers: { - seeds: [ - { - id: 'c2354dc2f8a787b43c921207bd132390f2f32380', - address: '34.126.82.69:26656', - provider: 'switcheo-labs' - }, + "apis": { + "rpc": [ { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:19656', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://tm-api.carbon.network", + "provider": "switcheo-labs" }, { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'carbon-mainnet-seed.autostake.com:27426', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://carbon-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - id: '75efe81807f1a69d1ed5d881203e49f65afd765b', - address: '34.126.188.181:26656', - provider: 'switcheo-labs' + "address": "https://carbon-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - id: 'abf4cc677fab6f946bc42828605ebbf5468c717e', - address: '34.87.36.140:26656', - provider: 'switcheo-labs' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://rpc.carbon.blockhunters.org", + "provider": "BlockHunters" } ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'carbon-mainnet-peer.autostake.com:27426', - provider: 'AutoStake 🛡️ Slash Protected' - } - ] - }, - apis: { - rpc: [ + "rest": [ { - address: 'https://tm-api.carbon.network', - provider: 'switcheo-labs' + "address": "https://api.carbon.network", + "provider": "switcheo-labs" }, { - address: 'https://carbon-rpc.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://carbon-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://carbon-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://carbon-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rpc.carbon.blockhunters.org', - provider: 'BlockHunters' + "address": "https://rest.carbon.blockhunters.org", + "provider": "BlockHunters" } ], - rest: [ - { - address: 'https://api.carbon.network', - provider: 'switcheo-labs' - }, + "grpc": [ { - address: 'https://carbon-api.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://carbon-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://carbon-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - address: 'https://rest.carbon.blockhunters.org', - provider: 'BlockHunters' - } - ], - grpc: [ - { - address: 'https://carbon-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' - }, - { - address: 'carbon-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "carbon-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ] }, - 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" }, { - kind: 'ping.pub', - url: 'https://ping.pub/carbon', - tx_page: 'https://ping.pub/carbon/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/carbon", + "tx_page": "https://ping.pub/carbon/tx/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/carbon', - tx_page: 'https://atomscan.com/carbon/transactions/${txHash}', - account_page: 'https://atomscan.com/carbon/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/carbon", + "tx_page": "https://atomscan.com/carbon/transactions/${txHash}", + "account_page": "https://atomscan.com/carbon/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'celestia', - chain_id: 'celestia', - pretty_name: 'Celestia', - status: 'live', - network_type: 'mainnet', - website: 'https://celestia.org/', - bech32_prefix: 'celestia', - daemon_name: 'celestia-appd', - node_home: '$HOME/.celestia-app', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'utia', - fixed_min_gas_price: 0.002, - low_gas_price: 0.01, - average_gas_price: 0.02, - high_gas_price: 0.1 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "celestia", + "chain_id": "celestia", + "pretty_name": "Celestia", + "status": "live", + "network_type": "mainnet", + "website": "https://celestia.org/", + "bech32_prefix": "celestia", + "daemon_name": "celestia-appd", + "node_home": "$HOME/.celestia-app", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'utia' + "denom": "utia", + "fixed_min_gas_price": 0.002, + "low_gas_price": 0.01, + "average_gas_price": 0.02, + "high_gas_price": 0.1 } ] }, - codebase: { - git_repo: 'https://github.com/celestiaorg/celestia-app', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/celestiaorg/networks/master/celestia/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.3.0', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'] + "denom": "utia" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' - }, - description: - 'Celestia is a modular data availability network that securely scales with the number of users, making it easy for anyone to launch their own blockchain.', - peers: { - seeds: [ - { - id: 'e6116822e1a5e283d8a85d3ec38f4d232274eaf3', - address: 'consensus-full-seed-1.celestia-bootstrap.net:26656', - provider: 'Lunar Oasis' - }, - { - id: 'cf7ac8b19ff56a9d47c75551bd4864883d1e24b5', - address: 'consensus-full-seed-1.celestia-bootstrap.net:26656', - provider: 'Lunar Oasis' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'celestia-mainnet-seed.autostake.com:27206', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:16656', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: '24a607a217cf12be29bae5b2e8151391bde2d8c8', - address: 'seed-celestia-01.stakeflow.io:15007', - provider: 'Stakeflow' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'celestia.rpc.kjnodes.com:12059', - provider: 'kjnodes' - }, - { - id: '9aa8a73ea9364aa3cf7806d4dd25b6aed88d8152', - address: 'celestia.seed.mzonder.com:13156', - provider: 'MZONDER' - }, - { - id: '3abb9ad6d7a3c728984c4b7e9c05e91731779865', - address: 'seed-celestia.theamsolutions.info:23656', - provider: 'AM Solutions' - } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'celestia-mainnet-peer.autostake.com:27206', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '24a607a217cf12be29bae5b2e8151391bde2d8c8', - address: 'peer-celestia-01.stakeflow.io:15007', - provider: 'Stakeflow' - }, - { - id: '6de4ce5baa9d2bed33c0c53b9518b907cfaab33b', - address: '65.108.128.201:11656', - provider: 'Polkachu' - }, - { - id: 'a26091f9c247c1e68410a4e8b107a715a0e886f6', - address: '65.108.226.26:29656', - provider: '[NODERS]TEAM' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" }, - apis: { - rpc: [ + "description": "Celestia is a modular data availability network that securely scales with the number of users, making it easy for anyone to launch their own blockchain.", + "apis": { + "rpc": [ { - address: 'https://public-celestia-rpc.numia.xyz', - provider: 'Numia' + "address": "https://public-celestia-rpc.numia.xyz", + "provider": "Numia" }, { - address: 'https://celestia-rpc.mesa.newmetric.xyz', - provider: 'Newmetric' + "address": "https://celestia-rpc.mesa.newmetric.xyz", + "provider": "Newmetric" }, { - address: 'https://rpc.lunaroasis.net', - provider: 'Lunar Oasis' + "address": "https://rpc.lunaroasis.net", + "provider": "Lunar Oasis" }, { - address: 'https://rpc.celestia.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.celestia.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://celestia-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://celestia-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-celestia-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-celestia-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://rpc-celestia.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-celestia.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'http://celestia.rpc.nodersteam.com:29657', - provider: '[NODERS]TEAM' + "address": "http://celestia.rpc.nodersteam.com:29657", + "provider": "[NODERS]TEAM" }, { - address: 'https://celestia-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://celestia-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://celestia.rpc.stakin-nodes.com', - provider: 'Stakin' + "address": "https://celestia.rpc.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'https://celestia.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://celestia.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://celestia-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://celestia-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc-celestia.mzonder.com', - provider: 'MZONDER' + "address": "https://rpc-celestia.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://celestia-rpc.enigma-validator.com', - provider: 'Enigma' + "address": "https://celestia-rpc.enigma-validator.com", + "provider": "Enigma" }, { - address: 'https://rpc-celestia.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://rpc-celestia.theamsolutions.info", + "provider": "AM Solutions" } ], - rest: [ + "rest": [ { - address: 'https://public-celestia-lcd.numia.xyz', - provider: 'Numia' + "address": "https://public-celestia-lcd.numia.xyz", + "provider": "Numia" }, { - address: 'https://celestia-rest.mesa.newmetric.xyz', - provider: 'Newmetric' + "address": "https://celestia-rest.mesa.newmetric.xyz", + "provider": "Newmetric" }, { - address: 'http://celestia.rpc.nodersteam.com:1617', - provider: '[NODERS]TEAM' + "address": "http://celestia.rpc.nodersteam.com:1617", + "provider": "[NODERS]TEAM" }, { - address: 'https://api.lunaroasis.net', - provider: 'Lunar Oasis' + "address": "https://api.lunaroasis.net", + "provider": "Lunar Oasis" }, { - address: 'https://api.celestia.nodestake.top', - provider: 'NodeStake' + "address": "https://api.celestia.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://celestia-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://celestia-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-celestia-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-celestia-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://api-celestia.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-celestia.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://celestia-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://celestia-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://celestia.rest.stakin-nodes.com', - provider: 'Stakin' + "address": "https://celestia.rest.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'https://celestia.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://celestia.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://api-celestia.mzonder.com', - provider: 'MZONDER' + "address": "https://api-celestia.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://celestia-lcd.enigma-validator.com', - provider: 'Enigma' + "address": "https://celestia-lcd.enigma-validator.com", + "provider": "Enigma" }, { - address: 'https://rest-celestia.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://rest-celestia.theamsolutions.info", + "provider": "AM Solutions" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.celestia.nodestake.top', - provider: 'NodeStake' + "address": "https://grpc.celestia.nodestake.top", + "provider": "NodeStake" }, { - address: 'celestia-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "celestia-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://celestia-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://celestia-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'celestia.grpc.nodersteam.com:9690', - provider: '[NODERS]TEAM' + "address": "celestia.grpc.nodersteam.com:9690", + "provider": "[NODERS]TEAM" }, { - address: 'grpc-celestia-01.stakeflow.io:15002', - provider: 'Stakeflow' + "address": "grpc-celestia-01.stakeflow.io:15002", + "provider": "Stakeflow" }, { - address: 'grpc-celestia.cosmos-spaces.cloud:5190', - provider: 'Cosmos Spaces' + "address": "grpc-celestia.cosmos-spaces.cloud:5190", + "provider": "Cosmos Spaces" }, { - address: 'celestia-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "celestia-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'celestia.grpc.stakin-nodes.com:443', - provider: 'Stakin' + "address": "celestia.grpc.stakin-nodes.com:443", + "provider": "Stakin" }, { - address: 'celestia.grpc.kjnodes.com:443', - provider: 'kjnodes' + "address": "celestia.grpc.kjnodes.com:443", + "provider": "kjnodes" }, { - address: 'grpc-celestia.mzonder.com:443', - provider: 'MZONDER' + "address": "grpc-celestia.mzonder.com:443", + "provider": "MZONDER" }, { - address: 'grpc-celestia.theamsolutions.info:443', - provider: 'AM Solutions' + "address": "grpc-celestia.theamsolutions.info:443", + "provider": "AM Solutions" } ] }, - explorers: [ + "explorers": [ { - kind: 'Mintscan', - url: 'https://mintscan.io/celestia', - tx_page: 'https://mintscan.io/celestia/txs/${txHash}', - account_page: 'https://mintscan.io/celestia/address/${accountAddress}' + "kind": "Mintscan", + "url": "https://mintscan.io/celestia", + "tx_page": "https://mintscan.io/celestia/txs/${txHash}", + "account_page": "https://mintscan.io/celestia/address/${accountAddress}" }, { - kind: 'NodeStake', - url: 'https://explorer.nodestake.top/celestia/', - tx_page: 'https://explorer.nodestake.top/celestia/txs/${txHash}', - account_page: - 'https://explorer.nodestake.top/celestia/account/${accountAddress}' + "kind": "NodeStake", + "url": "https://explorer.nodestake.top/celestia/", + "tx_page": "https://explorer.nodestake.top/celestia/txs/${txHash}", + "account_page": "https://explorer.nodestake.top/celestia/account/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/celestia', - tx_page: 'https://stakeflow.io/celestia/transactions/${txHash}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/celestia", + "tx_page": "https://stakeflow.io/celestia/transactions/${txHash}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/celestia', - tx_page: 'https://explorer.tcnetwork.io/celestia/transaction/${txHash}', - account_page: - 'https://explorer.tcnetwork.io/celestia/account/${accountAddress}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/celestia", + "tx_page": "https://explorer.tcnetwork.io/celestia/transaction/${txHash}", + "account_page": "https://explorer.tcnetwork.io/celestia/account/${accountAddress}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Celestia-Mainnet', - tx_page: - 'https://explorer.stavr.tech/Celestia-Mainnet/transaction/${txHash}', - account_page: - 'https://explorer.stavr.tech/Celestia-Mainnet/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Celestia-Mainnet", + "tx_page": "https://explorer.stavr.tech/Celestia-Mainnet/transaction/${txHash}", + "account_page": "https://explorer.stavr.tech/Celestia-Mainnet/account/${accountAddress}" }, { - kind: 'AM Solutions', - url: 'https://explorer.theamsolutions.info/celestia-main', - tx_page: - 'https://explorer.theamsolutions.info/celestia-main/transaction/${txHash}', - account_page: - 'https://explorer.theamsolutions.info/celestia-main/account/${accountAddress}' + "kind": "AM Solutions", + "url": "https://explorer.theamsolutions.info/celestia-main", + "tx_page": "https://explorer.theamsolutions.info/celestia-main/transaction/${txHash}", + "account_page": "https://explorer.theamsolutions.info/celestia-main/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'cerberus', - status: 'killed', - network_type: 'mainnet', - website: 'https://cerberus.zone/', - pretty_name: 'Cerberus', - chain_id: 'cerberus-chain-1', - bech32_prefix: 'cerberus', - daemon_name: 'cerberusd', - node_home: '$HOME/.cerberus', - slip44: 118, - codebase: { - git_repo: 'https://github.com/cerberus-zone/cerberus', - recommended_version: 'v3.1.0', - compatible_versions: ['v3.1.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/cerberus-zone/cerberus_genesis/main/genesis.json' - }, - versions: [ - { - name: 'v3.1.0', - recommended_version: 'v3.1.0', - compatible_versions: ['v3.1.0'] - } - ] - }, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "cerberus", + "status": "killed", + "network_type": "mainnet", + "website": "https://cerberus.zone/", + "pretty_name": "Cerberus", + "chain_id": "cerberus-chain-1", + "bech32_prefix": "cerberus", + "daemon_name": "cerberusd", + "node_home": "$HOME/.cerberus", + "slip44": 118, + "codebase": {}, + "fees": { + "fee_tokens": [ { - denom: 'ucrbrus', - fixed_min_gas_price: 0, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.04 + "denom": "ucrbrus", + "fixed_min_gas_price": 0, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'ucrbrus' + "denom": "ucrbrus" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' - }, - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:13856', - provider: 'Polkachu' - } - ], - persistent_peers: [ - { - id: 'd7f578c4295c7cf05164a2f786601050bf2f2356', - address: '142.132.202.98:46656', - provider: 'ecostake' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg" }, - apis: { - rpc: [], - rest: [], - grpc: [ + "apis": { + "rpc": [], + "rest": [], + "grpc": [ { - address: 'grpc-cerberus-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-cerberus-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'cerberus-grpc.polkachu.com:13890', - provider: 'Polkachu' + "address": "cerberus-grpc.polkachu.com:13890", + "provider": "Polkachu" } ] }, - explorers: [ + "explorers": [ { - kind: 'skynetexplorers', - url: 'https://skynetexplorers.com/cerberus', - tx_page: 'https://skynetexplorers.com/cerberus/tx/${txHash}' + "kind": "skynetexplorers", + "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: '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}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/cerberus', - tx_page: 'https://explorer.tcnetwork.io/cerberus/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/cerberus", + "tx_page": "https://explorer.tcnetwork.io/cerberus/transaction/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'chain4energy', - status: 'live', - network_type: 'mainnet', - website: 'https://c4e.io/', - pretty_name: 'Chain4Energy', - chain_id: 'perun-1', - bech32_prefix: 'c4e', - daemon_name: 'c4ed', - node_home: '$HOME/.c4e-chain', - key_algos: ['secp256k1'], - slip44: 4444, - fees: { - fee_tokens: [ - { - denom: 'uc4e', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/chain4energy/c4e-chain', - recommended_version: 'v1.2.1', - compatible_versions: ['v1.2.1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/chain4energy/c4e-chains/main/perun-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.1', - compatible_versions: ['v1.0.0', 'v1.0.1'], - cosmos_sdk_version: 'v0.45.5', - ibc_go_version: 'v3.0.1', - consensus: { - type: 'tendermint', - version: 'v0.34.19' - }, - binaries: { - 'linux/amd64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.0.0/c4ed_v1.0.0_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.0.0/c4ed_v1.0.0_darwin_amd64.tar.gz', - 'darwin/amd64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.0.0/c4ed_v1.0.0_darwin_amd64.tar.gz' - }, - next_version_name: 'v1.1.0' - }, - { - name: 'v1.1.0', - tag: 'v1.1.0', - proposal: 1, - height: 1952250, - recommended_version: 'v1.1.0', - compatible_versions: ['v1.1.0'], - cosmos_sdk_version: 'v0.45.9', - ibc_go_version: 'v3.0.1', - consensus: { - type: 'tendermint', - version: 'v0.34.21' - }, - binaries: { - 'linux/amd64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.1.0/c4ed_v1.1.0_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.1.0/c4ed_v1.1.0_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.1.0/c4ed_v1.1.0_darwin_amd64.tar.gz' - }, - next_version_name: 'v1.2.0' - }, - { - name: 'v1.2.0', - tag: 'v1.2.0', - proposal: 4, - height: 2826500, - recommended_version: 'v1.2.0', - compatible_versions: ['v1.2.0'], - cosmos_sdk_version: 'v0.46.10', - ibc_go_version: 'v5.2.0', - consensus: { - type: 'tendermint', - version: 'v0.34.26' - }, - binaries: { - 'linux/amd64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.2.0/c4ed_v1.2.0_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.2.0/c4ed_v1.2.0_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.2.0/c4ed_v1.2.0_darwin_amd64.tar.gz' - }, - next_version_name: 'v1.2.1' - }, - { - name: 'v1.2.1', - tag: 'v1.2.1', - height: 3767300, - recommended_version: 'v1.2.1', - compatible_versions: ['v1.2.1'], - cosmos_sdk_version: 'v0.46.13', - ibc_go_version: 'v5.2.0', - consensus: { - type: 'cometbft', - version: 'v0.34.28' - }, - binaries: { - 'linux/amd64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.2.1/c4ed_v1.2.1_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.2.1/c4ed_v1.2.1_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.2.1/c4ed_v1.2.1_darwin_amd64.tar.gz' - }, - next_version_name: 'v1.3.0' - }, - { - name: 'v1.3.0', - tag: 'v1.3.0', - proposal: 7, - height: 6283905, - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'], - cosmos_sdk_version: 'v0.46.13', - ibc_go_version: 'v5.2.1', - consensus: { - type: 'cometbft', - version: 'v0.34.28' - }, - binaries: { - 'linux/amd64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.3.0/c4ed_v1.3.0_darwin_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.3.0/c4ed_v1.3.0_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/chain4energy/c4e-chain/releases/download/v1.3.0/c4ed_v1.3.0_darwin_amd64.tar.gz' - }, - next_version_name: '' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' - }, - peers: { - seeds: [ - { - id: '30e98bbcf5bb29ed4e4ff685fa8fa84fa0ddff51', - address: 'tenderseed.ccvalidators.com:26008', - provider: 'CryptoCrew' - }, - { - id: '54515079bae4cadae2f9b511cffeb9447d4bc98d', - address: 'c4e.seed.bccnodes.com:27656', - provider: 'BccNodes' - }, - { - id: '86bd5cb6e762f673f1706e5889e039d5406b4b90', - address: 'c4e.seed.node75.org:10156', - provider: 'Pro-nodes75' - }, - { - id: '54ca81dd509cc6160de7f4b479a96b341d8e830e', - address: 'rpc.c4e.nodexcapital.com:13956', - provider: 'NodeX Validator' - }, - { - id: '6da239cb4fe03d957cdb1fdc26af3d083a7f5945', - address: 'seed.c4e.hexnodes.co:02656', - provider: 'Hexnodes' - }, - { - id: '9aa8a73ea9364aa3cf7806d4dd25b6aed88d8152', - address: 'c4e.seed.mzonder.com:11256', - provider: 'MZONDER' - }, - { - id: 'a85a651a3cf1746694560c5b6f76d566c04ca581', - address: 'c4e-seed.takeshi.team:10256', - provider: 'TAKESHI' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'chain4energy-mainnet-seed.autostake.com:27276', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '8cb175d973c3c638a4e5d014c030d8599369419f', - address: 'seeds.cros-nest.com:28656', - provider: 'Crosnest' - }, - { - id: '5e71b5585d186cc32b9f071610f43042b445c05c', - address: 'seeds.c4e.silentvalidator.com:39656', - provider: 'silent' - }, - { - id: '6b0ffcce9b59b91ceb8eea5d4599e27707e3604a', - address: 'seeds.stakeup.tech:10210', - provider: 'StakeUp' - }, - { - id: '6cb7ff21d19f139f4ca5e6e2a336e59d2857aba1', - address: 'seeds.anode.team:10256', - provider: 'AlxVoy ⚡ ANODE.TEAM' - }, - { - id: 'e47f4fa12187234dd205f51cb984c8235c3a3511', - address: 'c4e-seeds.validatrium.club:26656', - provider: 'Validatrium' - }, - { - id: '3ef7e5e7e163500af9baf53480779448461dac18', - address: '185.245.182.192:46656', - provider: 'Meerlabs' - }, - { - id: '0d1a44cc32e927dd062e0fd45d21475f9836e73d', - address: '89.117.58.109:26656', - provider: 'medes' - }, - { - id: 'd81f51b4a1aae66792fb1717589fa28975f328b0', - address: '164.68.125.243:26656', - provider: 'Smt Network' - }, - { - id: '2e08beed75525c2d583e6413fa5f090801965aba', - address: 'c4e.doubletop:30655', - provider: 'DOUBLETOP' - }, - { - id: '6f181c91dee34ebf2ea5c4f951c51b8c2c897702', - address: 'c4e.seed.kalia.network:30656', - provider: 'Kalia Network' - }, - { - id: '8739107d0484a4c58c4f980d61f488655597f80c', - address: 'seed.c4e.validatus.com:2000', - provider: 'Validatus' - } - ], - persistent_peers: [ - { - id: '5b62ff6035d9c8143c0ebf4fe05fa0b22d96bb05', - address: 'rpc.c4e.ppnv.space:13656', - provider: 'PPNV Service' - }, - { - id: 'a5133743ec9e0edffd83428af65004926352e393', - address: 'c4e-peer.nodine.id:13656', - provider: 'Nodine.ID' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'chain4energy-mainnet-peer.autostake.com:27276', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'e3d0b136495c3f4382ac801fbc89083d32625ff8', - address: 'c4e.peer.stavr.tech:17096', - provider: '🔥STAVR🔥' - }, - { - id: '094cc97f8443ba4302e2db818e64497d03176fad', - address: 'rpc.c4e.indonode.net:24656', - provider: 'Indonode' - }, - { - id: '89427b98e35b23dacafa8df90df6ae173245439b', - address: 'seed-c4e.theamsolutions.info:16656', - provider: 'AM Solutions' - }, - { - id: '5be2027950e249c42e20390c94fc1e8f3cd16657', - address: '65.108.70.119:33656', - provider: 'AlxVoy ⚡ ANODE.TEAM' - }, - { - id: '1b802d4616c1de3fa687ad0d671b1b9d64754a44', - address: '88.198.49.217:26157', - provider: 'Validator.run' - }, - { - id: '3ef7e5e7e163500af9baf53480779448461dac18', - address: '185.245.182.192:46656', - provider: 'Meerlabs' - }, - { - id: 'd81f51b4a1aae66792fb1717589fa28975f328b0', - address: '164.68.125.243:26656', - provider: 'Smt Network' - }, + "$schema": "../chain.schema.json", + "chain_name": "chain4energy", + "status": "live", + "network_type": "mainnet", + "website": "https://c4e.io/", + "pretty_name": "Chain4Energy", + "chain_id": "perun-1", + "bech32_prefix": "c4e", + "daemon_name": "c4ed", + "node_home": "$HOME/.c4e-chain", + "key_algos": [ + "secp256k1" + ], + "slip44": 4444, + "fees": { + "fee_tokens": [ { - id: '2e08beed75525c2d583e6413fa5f090801965aba', - address: 'c4e.doubletop:30655', - provider: 'DOUBLETOP' + "denom": "uc4e", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.c4e.io/', - provider: 'C4E' + "address": "https://rpc.c4e.io/", + "provider": "C4E" }, { - address: 'https://rpc.c4e.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.c4e.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://chain4energy-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://chain4energy-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'http://c4e.rpc.m.stavr.tech:17097', - provider: '🔥STAVR🔥' + "address": "http://c4e.rpc.m.stavr.tech:17097", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc-c4e.d-stake.xyz', - provider: 'D-Stake' + "address": "https://rpc-c4e.d-stake.xyz", + "provider": "D-Stake" }, { - address: 'https://c4e.rpc.bccnodes.com', - provider: 'BccNodes' + "address": "https://c4e.rpc.bccnodes.com", + "provider": "BccNodes" }, { - address: 'https://rpc-m.c4e.hexnodes.co', - provider: 'Hexnodes' + "address": "https://rpc-m.c4e.hexnodes.co", + "provider": "Hexnodes" }, { - address: 'https://rpc-c4e.takeshi.team', - provider: 'TAKESHI' + "address": "https://rpc-c4e.takeshi.team", + "provider": "TAKESHI" }, { - address: 'https://rpc-c4e.mzonder.com', - provider: 'MZONDER' + "address": "https://rpc-c4e.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://rpc.cros-nest.com/chain4energy', - provider: 'Crosnest' + "address": "https://rpc.cros-nest.com/chain4energy", + "provider": "Crosnest" }, { - address: 'https://rpc.c4e.indonode.net', - provider: 'Indonode' + "address": "https://rpc.c4e.indonode.net", + "provider": "Indonode" }, { - address: 'https://c4e-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://c4e-rpc.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://rpc.c4e.silentvalidator.com', - provider: 'silent' + "address": "https://rpc.c4e.silentvalidator.com", + "provider": "silent" }, { - address: 'http://rpc.c4e.stakeup.tech', - provider: 'StakeUp' + "address": "http://rpc.c4e.stakeup.tech", + "provider": "StakeUp" }, { - address: 'https://chain4energy-rpc.stakeangle.com', - provider: 'StakeAngle' + "address": "https://chain4energy-rpc.stakeangle.com", + "provider": "StakeAngle" }, { - address: 'https://c4e-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://c4e-rpc.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://rpc-c4e.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://rpc-c4e.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://c4e.rpc.m.anode.team', - provider: 'AlxVoy ⚡ ANODE.TEAM' + "address": "https://c4e.rpc.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" }, { - address: 'https://c4e-rpc.validatrium.club', - provider: 'Validatrium' + "address": "https://c4e-rpc.validatrium.club", + "provider": "Validatrium" }, { - address: 'http://185.245.182.192:46657', - provider: 'Meerlabs' + "address": "http://185.245.182.192:46657", + "provider": "Meerlabs" }, { - address: 'http://89.117.58.109:26657', - provider: 'medes' + "address": "http://89.117.58.109:26657", + "provider": "medes" }, { - address: 'http://c4e.rpc.node75.org:26957', - provider: 'Pro-nodes75' + "address": "http://c4e.rpc.node75.org:26957", + "provider": "Pro-nodes75" }, { - address: 'https://rpc-c4e.stakerun.com:443', - provider: 'StakeRun' + "address": "https://rpc-c4e.stakerun.com:443", + "provider": "StakeRun" }, { - address: 'http://164.68.125.243:26657', - provider: 'Smt Network' + "address": "http://164.68.125.243:26657", + "provider": "Smt Network" }, { - address: 'https://c4e-rpc.antrixy.org/', - provider: 'Antrix Validators' + "address": "https://c4e-rpc.antrixy.org/", + "provider": "Antrix Validators" }, { - address: 'https://c4e.doubletop.tech/', - provider: 'DOUBLETOP' + "address": "https://c4e.doubletop.tech/", + "provider": "DOUBLETOP" }, { - address: 'https://c4e-rpc.kalia.network:443', - provider: 'Kalia Network' + "address": "https://c4e-rpc.kalia.network:443", + "provider": "Kalia Network" }, { - address: 'https://c4e.rpc.skynodejs.net', - provider: 'skynodejs' + "address": "https://c4e.rpc.skynodejs.net", + "provider": "skynodejs" }, { - address: 'http://38.242.220.64:16657', - provider: 'mahof' + "address": "http://38.242.220.64:16657", + "provider": "mahof" }, { - address: 'http://209.182.239.169:46657', - provider: 'SECARD' + "address": "http://209.182.239.169:46657", + "provider": "SECARD" }, { - address: 'https://rpc.c4e.validatus.com:443', - provider: 'Validatus' + "address": "https://rpc.c4e.validatus.com:443", + "provider": "Validatus" } ], - rest: [ + "rest": [ { - address: 'https://lcd.c4e.io/', - provider: 'C4E' + "address": "https://lcd.c4e.io/", + "provider": "C4E" }, { - address: 'https://api.c4e.nodestake.top', - provider: 'NodeStake' + "address": "https://api.c4e.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://chain4energy-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://chain4energy-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://c4e.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://c4e.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api-m.c4e.hexnodes.co', - provider: 'Hexnodes' + "address": "https://api-m.c4e.hexnodes.co", + "provider": "Hexnodes" }, { - address: 'https://api-c4e.takeshi.team', - provider: 'TAKESHI' + "address": "https://api-c4e.takeshi.team", + "provider": "TAKESHI" }, { - address: 'https://api-c4e.mzonder.com', - provider: 'MZONDER' + "address": "https://api-c4e.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://rest.cros-nest.com/chain4energy', - provider: 'Crosnest' + "address": "https://rest.cros-nest.com/chain4energy", + "provider": "Crosnest" }, { - address: 'https://api.c4e.indonode.net', - provider: 'Indonode' + "address": "https://api.c4e.indonode.net", + "provider": "Indonode" }, { - address: 'https://c4e-api.stake-town.com', - provider: 'StakeTown' + "address": "https://c4e-api.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://api.c4e.silentvalidator.com', - provider: 'silent' + "address": "https://api.c4e.silentvalidator.com", + "provider": "silent" }, { - address: 'http://api.c4e.stakeup.tech', - provider: 'StakeUp' + "address": "http://api.c4e.stakeup.tech", + "provider": "StakeUp" }, { - address: 'http://chain4energy-rpc.stakeangle.com:1317', - provider: 'StakeAngle' + "address": "http://chain4energy-rpc.stakeangle.com:1317", + "provider": "StakeAngle" }, { - address: 'https://c4e-api.genznodes.dev', - provider: 'genznodes' + "address": "https://c4e-api.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://api-c4e.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://api-c4e.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://c4e.api.m.anode.team', - provider: 'AlxVoy ⚡ ANODE.TEAM' + "address": "https://c4e.api.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" }, { - address: 'https://c4e-api.validatrium.club', - provider: 'Validatrium' + "address": "https://c4e-api.validatrium.club", + "provider": "Validatrium" }, { - address: 'http://c4e.api.node75.org:1397', - provider: 'Pro-nodes75' + "address": "http://c4e.api.node75.org:1397", + "provider": "Pro-nodes75" }, { - address: 'https://lcd-c4e.stakerun.com:443', - provider: 'StakeRun' + "address": "https://lcd-c4e.stakerun.com:443", + "provider": "StakeRun" }, { - address: 'http://164.68.125.243:1319', - provider: 'Smt Network' + "address": "http://164.68.125.243:1319", + "provider": "Smt Network" }, { - address: 'https://c4e-rest.antrixy.org/', - provider: 'Antrix Validators' + "address": "https://c4e-rest.antrixy.org/", + "provider": "Antrix Validators" }, { - address: 'https://c4e-api.kalia.network:443', - provider: 'Kalia Network' + "address": "https://c4e-api.kalia.network:443", + "provider": "Kalia Network" }, { - address: 'https://c4e.api.skynodejs.net', - provider: 'skynodejs' + "address": "https://c4e.api.skynodejs.net", + "provider": "skynodejs" }, { - address: 'http://38.242.220.64:11317', - provider: 'mahof' + "address": "http://38.242.220.64:11317", + "provider": "mahof" }, { - address: 'http://209.182.239.169:1417', - provider: 'SECARD' + "address": "http://209.182.239.169:1417", + "provider": "SECARD" }, { - address: 'https://api.c4e.validatus.com:443', - provider: 'Validatus' + "address": "https://api.c4e.validatus.com:443", + "provider": "Validatus" } ], - grpc: [ + "grpc": [ { - address: 'grpc.c4e.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.c4e.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'chain4energy-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "chain4energy-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'c4e.grpc.bccnodes.com:443', - provider: 'BccNodes' + "address": "c4e.grpc.bccnodes.com:443", + "provider": "BccNodes" }, { - address: 'grpc-c4e.takeshi.team:443', - provider: 'TAKESHI' + "address": "grpc-c4e.takeshi.team:443", + "provider": "TAKESHI" }, { - address: 'grpc-c4e.mzonder.com:443', - provider: 'MZONDER' + "address": "grpc-c4e.mzonder.com:443", + "provider": "MZONDER" }, { - address: 'http://c4e.grpc.m.stavr.tech:7029', - provider: '🔥STAVR🔥' + "address": "http://c4e.grpc.m.stavr.tech:7029", + "provider": "🔥STAVR🔥" }, { - address: 'c4e-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "c4e-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'grpc.c4e.silentvalidator.com:443', - provider: 'silent' + "address": "grpc.c4e.silentvalidator.com:443", + "provider": "silent" }, { - address: 'http://chain4energy-rpc.stakeangle.com:1317', - provider: 'StakeAngle' + "address": "http://chain4energy-rpc.stakeangle.com:1317", + "provider": "StakeAngle" }, { - address: 'c4e-grpc.genznodes.dev:52090', - provider: 'genznodes' + "address": "c4e-grpc.genznodes.dev:52090", + "provider": "genznodes" }, { - address: 'https://grpc-c4e.theamsolutions.info:9391', - provider: 'AM Solutions' + "address": "https://grpc-c4e.theamsolutions.info:9391", + "provider": "AM Solutions" }, { - address: 'https://c4e.grpc.m.anode.team', - provider: 'AlxVoy ⚡ ANODE.TEAM' + "address": "https://c4e.grpc.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" }, { - address: 'https://c4e-grpc.validatrium.club', - provider: 'Validatrium' + "address": "https://c4e-grpc.validatrium.club", + "provider": "Validatrium" }, { - address: 'http://185.245.182.192:1318', - provider: 'Meerlabs' + "address": "http://185.245.182.192:1318", + "provider": "Meerlabs" }, { - address: 'grpc-c4e.stakerun.com:1190', - provider: 'StakeRun' + "address": "grpc-c4e.stakerun.com:1190", + "provider": "StakeRun" }, { - address: 'https://c4e-grpc.antrixy.org/', - provider: 'Antirx Validators' + "address": "https://c4e-grpc.antrixy.org/", + "provider": "Antirx Validators" }, { - address: 'https://c4e.doubletop.tech:443', - provider: 'DOUBLETOP' + "address": "https://c4e.doubletop.tech:443", + "provider": "DOUBLETOP" }, { - address: 'c4e-grpc.kalia.network:3090', - provider: 'Kalia Network' + "address": "c4e-grpc.kalia.network:3090", + "provider": "Kalia Network" }, { - address: 'https://c4e.grpc.skynodejs.net', - provider: 'skynodejs' + "address": "https://c4e.grpc.skynodejs.net", + "provider": "skynodejs" }, { - address: 'http://38.242.220.64:19090', - provider: 'mahof' + "address": "http://38.242.220.64:19090", + "provider": "mahof" }, { - address: 'http://209.182.239.169:9190', - provider: 'SECARD' + "address": "http://209.182.239.169:9190", + "provider": "SECARD" }, { - address: 'https://grpc.c4e.validatus.com:443', - provider: 'Validatus' + "address": "https://grpc.c4e.validatus.com:443", + "provider": "Validatus" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorer', - url: 'https://explorer.apeironnodes.com/chain4energy', - tx_page: - 'https://explorer.apeironnodes.com/chain4energy/transactions/${txHash}' + "kind": "explorer", + "url": "https://explorer.apeironnodes.com/chain4energy", + "tx_page": "https://explorer.apeironnodes.com/chain4energy/transactions/${txHash}" }, { - kind: 'explorer', - url: 'https://explorer.ppnv.space/c4e', - tx_page: 'https://explorer.ppnv.space/c4e/transactions/${txHash}' + "kind": "explorer", + "url": "https://explorer.ppnv.space/c4e", + "tx_page": "https://explorer.ppnv.space/c4e/transactions/${txHash}" }, { - kind: 'explorer', - url: 'https://explorer.c4e.io/', - tx_page: 'https://explorer.c4e.io/transactions/${txHash}' + "kind": "explorer", + "url": "https://explorer.c4e.io/", + "tx_page": "https://explorer.c4e.io/transactions/${txHash}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/chain4energy', - tx_page: - 'https://explorer.nodestake.top/chain4energy/transactions/${txHash}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/chain4energy", + "tx_page": "https://explorer.nodestake.top/chain4energy/transactions/${txHash}" }, { - kind: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 Explorer', - url: 'https://exp.utsa.tech/c4e', - tx_page: 'https://exp.utsa.tech/c4e/tx/${txHash}' + "kind": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 Explorer", + "url": "https://exp.utsa.tech/c4e", + "tx_page": "https://exp.utsa.tech/c4e/tx/${txHash}" }, { - kind: '🔥STAVR🔥 Explorer', - url: 'https://explorer.stavr.tech/c4e', - tx_page: 'https://explorer.stavr.tech/c4e/tx/${txHash}' + "kind": "🔥STAVR🔥 Explorer", + "url": "https://explorer.stavr.tech/c4e", + "tx_page": "https://explorer.stavr.tech/c4e/tx/${txHash}" }, { - kind: 'BccNodes Explorer', - url: 'https://explorer.bccnodes.com/chain4energy', - tx_page: - 'https://explorer.bccnodes.com/chain4energy/transactions/${txHash}' + "kind": "BccNodes Explorer", + "url": "https://explorer.bccnodes.com/chain4energy", + "tx_page": "https://explorer.bccnodes.com/chain4energy/transactions/${txHash}" }, { - kind: 'NODEXPLORER', - url: 'https://explorer.nodexcapital.com/c4e', - tx_page: 'https://explorer.nodexcapital.com/c4e/transactions/${txHash}' + "kind": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com/c4e", + "tx_page": "https://explorer.nodexcapital.com/c4e/transactions/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/chain4energy', - tx_page: 'https://atomscan.com/chain4energy/transactions/${txHash}', - account_page: - 'https://atomscan.com/chain4energy/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/chain4energy", + "tx_page": "https://atomscan.com/chain4energy/transactions/${txHash}", + "account_page": "https://atomscan.com/chain4energy/accounts/${accountAddress}" }, { - kind: 'AM Solutions Explorer', - url: 'https://explorer.theamsolutions.info/c4e-main/staking', - tx_page: - 'https://explorer.theamsolutions.info/c4e-main/transactions/${txHash}' + "kind": "AM Solutions Explorer", + "url": "https://explorer.theamsolutions.info/c4e-main/staking", + "tx_page": "https://explorer.theamsolutions.info/c4e-main/transactions/${txHash}" }, { - kind: 'AlxVoy ⚡ ANODE.TEAM Explorer', - url: 'https://main.anode.team/c4e', - tx_page: 'https://main.anode.team/c4e/tx/${txHash}' + "kind": "AlxVoy ⚡ ANODE.TEAM Explorer", + "url": "https://main.anode.team/c4e", + "tx_page": "https://main.anode.team/c4e/tx/${txHash}" }, { - kind: 'ScanRun', - url: 'https://scanrun.io/c4e', - tx_page: 'https://scanrun.io/c4e/transactions/${txHash}' + "kind": "ScanRun", + "url": "https://scanrun.io/c4e", + "tx_page": "https://scanrun.io/c4e/transactions/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'cheqd', - status: 'live', - network_type: 'mainnet', - website: 'https://www.cheqd.io/', - pretty_name: 'Cheqd', - chain_id: 'cheqd-mainnet-1', - bech32_prefix: 'cheqd', - daemon_name: 'cheqd-noded', - node_home: '$HOME/.cheqdnode', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ncheq', - fixed_min_gas_price: 25, - low_gas_price: 50, - average_gas_price: 75, - high_gas_price: 100 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ncheq' - } - ] - }, - codebase: { - git_repo: 'https://github.com/cheqd/cheqd-node', - recommended_version: 'v1.4.4', - compatible_versions: ['v1.2.5', 'v1.3.0', 'v1.4.0', 'v1.4.4'], - binaries: { - 'linux/amd64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.4/cheqd-noded-1.4.4-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.4/cheqd-noded-1.4.4-linux-arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.4/cheqd-noded-1.4.4-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.4/cheqd-noded-1.4.4-darwin-arm64.tar.gz' - }, - cosmos_sdk_version: '0.46.10', - consensus: { - type: 'tendermint', - version: '0.34.26' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/mainnet/genesis.json' - }, - versions: [ - { - name: 'v1', - recommended_version: 'v1.4.4', - compatible_versions: ['v1.2.5', 'v1.3.0', 'v1.4.0', 'v1.4.4'], - cosmos_sdk_version: '0.46.10', - consensus: { - type: 'tendermint', - version: '0.34.26' - }, - binaries: { - 'linux/amd64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-arm64.tar.gz' - } + "$schema": "../chain.schema.json", + "chain_name": "cheqd", + "status": "live", + "network_type": "mainnet", + "website": "https://www.cheqd.io/", + "pretty_name": "Cheqd", + "chain_id": "cheqd-mainnet-1", + "bech32_prefix": "cheqd", + "daemon_name": "cheqd-noded", + "node_home": "$HOME/.cheqdnode", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ncheq", + "fixed_min_gas_price": 25, + "low_gas_price": 50, + "average_gas_price": 75, + "high_gas_price": 100 } ] }, - peers: { - seeds: [ - { - id: '258a9bfb822637bfca87daaab6181c10e7fd0910', - address: 'seed1.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: '9b30307a2a2819790d68c04bb62f5cf4028f447e', - address: 'seed1.ap.cheqd.net:26656', - provider: 'cheqd' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'cheqd-mainnet-seed.autostake.com:27326', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:16156', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:16156', - provider: 'WhisperNode 🤐' - } - ], - persistent_peers: [ - { - id: 'd1ebb60825e2c29181b499f93493dd440fb87997', - address: 'sentry1.eu.cheqd.net:26656', - provider: 'cheqd' - }, + "staking": { + "staking_tokens": [ { - id: '513d334bb044296796939e57b522fef7fd4b9c6c', - address: 'sentry2.eu.cheqd.net:26656', - provider: 'cheqd' - }, - { - id: '9201b408d24941fd342e739f0814aa3eb8ab7577', - address: 'sentry1.ap.cheqd.net:26656', - provider: 'cheqd' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'cheqd-mainnet-peer.autostake.com:27326', - provider: 'AutoStake 🛡️ Slash Protected' + "denom": "ncheq" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46.10" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.cheqd.net', - provider: 'cheqd' + "address": "https://rpc.cheqd.net", + "provider": "cheqd" }, { - address: 'https://cheqd-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes' + "address": "https://cheqd-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes" }, { - address: 'https://rpc-cheqd-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-cheqd-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc.cheqd.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.cheqd.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://rpc-cheqd.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-cheqd.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://cheqd-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://cheqd-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rpc-cheqd.blockval.io', - provider: 'Blockval' + "address": "https://rpc-cheqd.blockval.io", + "provider": "Blockval" } ], - rest: [ + "rest": [ { - address: 'https://api.cheqd.net', - provider: 'cheqd' + "address": "https://api.cheqd.net", + "provider": "cheqd" }, { - address: 'https://cheqd-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes' + "address": "https://cheqd-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes" }, { - address: 'https://api-cheqd-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-cheqd-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://cheqd-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://cheqd-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://api.cheqd.nodestake.top', - provider: 'NodeStake' + "address": "https://api.cheqd.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://lcd-cheqd.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-cheqd.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://api-cheqd.blockval.io', - provider: 'Blockval' + "address": "https://api-cheqd.blockval.io", + "provider": "Blockval" } ], - grpc: [ + "grpc": [ { - address: 'grpc.cheqd.net:443', - provider: 'cheqd' + "address": "grpc.cheqd.net:443", + "provider": "cheqd" }, { - address: 'cheqd-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "cheqd-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'cheqd-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "cheqd-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-cheqd-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-cheqd-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'grpc.cheqd.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.cheqd.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'grpc-cheqd.blockval.io:9290', - provider: 'Blockval' + "address": "grpc-cheqd.blockval.io:9290", + "provider": "Blockval" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://bigdipper.live/cheqd', - tx_page: 'https://bigdipper.live/cheqd/transactions/${txHash}', - account_page: 'https://bigdipper.live/cheqd/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/cheqd", + "tx_page": "https://bigdipper.live/cheqd/transactions/${txHash}", + "account_page": "https://bigdipper.live/cheqd/accounts/${accountAddress}" }, { - 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', - url: 'https://atomscan.com/cheqd', - tx_page: 'https://atomscan.com/cheqd/transactions/${txHash}', - account_page: 'https://atomscan.com/cheqd/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/cheqd", + "tx_page": "https://atomscan.com/cheqd/transactions/${txHash}", + "account_page": "https://atomscan.com/cheqd/accounts/${accountAddress}" }, { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/cheqd', - tx_page: 'https://app.ezstaking.io/cheqd/txs/${txHash}', - account_page: 'https://app.ezstaking.io/cheqd/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/cheqd", + "tx_page": "https://app.ezstaking.io/cheqd/txs/${txHash}", + "account_page": "https://app.ezstaking.io/cheqd/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://look.chillvalidation.com/cheqd', - tx_page: 'https://look.chillvalidation.com/cheqd/tx/${txHash}' + "kind": "ping.pub", + "url": "https://look.chillvalidation.com/cheqd", + "tx_page": "https://look.chillvalidation.com/cheqd/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://ping.wildsage.io/cheqd', - tx_page: 'https://ping.wildsage.io/cheqd/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.wildsage.io/cheqd", + "tx_page": "https://ping.wildsage.io/cheqd/tx/${txHash}" } ], - 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' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'chihuahua', - status: 'live', - network_type: 'mainnet', - website: 'https://chihuahua.wtf/', - pretty_name: 'Chihuahua', - chain_id: 'chihuahua-1', - bech32_prefix: 'chihuahua', - daemon_name: 'chihuahuad', - node_home: '$HOME/.chihuahuad', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uhuahua', - fixed_min_gas_price: 0, - low_gas_price: 500, - average_gas_price: 1250, - high_gas_price: 2000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uhuahua' - } - ] - }, - codebase: { - git_repo: 'https://github.com/ChihuahuaChain/chihuahua/', - recommended_version: 'v6.0.1', - compatible_versions: ['v6.0.1'], - cosmos_sdk_version: 'v0.47.5', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - ibc_go_version: '7.3.0', - cosmwasm_version: 'v0.41.0', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.chihuahuad/data/wasm', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/ChihuahuaChain/chihuahua/main/mainnet/genesis.json' - }, - versions: [ - { - name: 'v421', - recommended_version: 'v4.2.3', - compatible_versions: ['v4.2.3', 'v4.2.2', 'v4.2.1'], - cosmwasm_enabled: true, - next_version_name: 'v500' - }, - { - name: 'v500', - recommended_version: 'v5.0.0', - compatible_versions: ['v5.0.0'], - proposal: 51, - height: 8711111, - cosmwasm_enabled: true, - next_version_name: 'v501' - }, - { - name: 'v501', - recommended_version: 'v5.0.1', - compatible_versions: ['v5.0.1'], - proposal: 52, - height: 8813000, - cosmwasm_enabled: true, - next_version_name: 'v502' - }, - { - name: 'v502', - recommended_version: 'v5.0.2', - compatible_versions: ['v5.0.2'], - proposal: 53, - height: 9180000, - cosmwasm_enabled: true, - next_version_name: 'v503' - }, - { - name: 'v503', - recommended_version: 'v5.0.4', - compatible_versions: ['v5.0.3', 'v5.0.4'], - proposal: 54, - height: 9430000, - cosmos_sdk_version: 'v0.47.5', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - ibc_go_version: '7.3.0', - cosmwasm_version: 'v0.41.0', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.chihuahuad/data/wasm', - next_version_name: 'v6' - }, + "$schema": "../chain.schema.json", + "chain_name": "chihuahua", + "status": "live", + "network_type": "mainnet", + "website": "https://chihuahua.wtf/", + "pretty_name": "Chihuahua", + "chain_id": "chihuahua-1", + "bech32_prefix": "chihuahua", + "daemon_name": "chihuahuad", + "node_home": "$HOME/.chihuahuad", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v6', - recommended_version: 'v6.0.1', - compatible_versions: ['v6.0.1'], - proposal: 66, - height: 10666000, - cosmos_sdk_version: 'v0.47.5', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - ibc_go_version: '7.3.0', - cosmwasm_version: 'v0.41.0', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.chihuahuad/data/wasm', - next_version_name: '' + "denom": "uhuahua", + "fixed_min_gas_price": 0, + "low_gas_price": 500, + "average_gas_price": 1250, + "high_gas_price": 2000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' - }, - peers: { - seeds: [ - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:12956', - provider: 'RHINO' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:12956', - provider: 'Polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:12956', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: '77cbb35d1df17f48a42e9f157f12f55b691e9f5e', - address: 'seeds.goldenratiostaking.net:1620', - provider: 'Golden Ratio Staking' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'chihuahua-mainnet-seed.autostake.com:27186', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ + "staking": { + "staking_tokens": [ { - id: '89b576c3eb72a4f0c66dc0899bec7c21552ea2a5', - address: '23.88.7.73:29538', - provider: 'Mercury' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'chihuahua-mainnet-peer.autostake.com:27186', - provider: 'AutoStake 🛡️ Slash Protected' + "denom": "uhuahua" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.47.5", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.41.0" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg" + }, + "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.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://rpc-chihuahua-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'https://chihuahua-rpc.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://chihuahua-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc.huahua.bh.rocks', - provider: 'BlockHunters 🎯' + "address": "https://rpc.huahua.bh.rocks", + "provider": "BlockHunters 🎯" }, { - address: 'https://chihuahua-rpc.kleomedes.network', - provider: 'Kleomedes' + "address": "https://chihuahua-rpc.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://rpc-chihuahua.pupmos.network', - provider: 'PUPMØS' + "address": "https://rpc-chihuahua.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://chihuahua-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://chihuahua-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://chihuahua-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://chihuahua-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - 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.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://api-chihuahua-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'https://chihuahua-api.polkachu.com', - provider: 'Polkachu' + "address": "https://chihuahua-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://chihuahua-api.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://chihuahua-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://chihuahua-api.kleomedes.network', - provider: 'Kleomedes' + "address": "https://chihuahua-api.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://api-chihuahua.pupmos.network', - provider: 'PUPMØS' + "address": "https://api-chihuahua.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://chihuahua-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://chihuahua-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://chihuahua-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://chihuahua-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ + "grpc": [ { - address: 'grpc-chihuahua-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-chihuahua-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'chihuahua-grpc.polkachu.com:12990', - provider: 'Polkachu' + "address": "chihuahua-grpc.polkachu.com:12990", + "provider": "Polkachu" }, { - address: 'chihuahua-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "chihuahua-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'grpc-chihuahua.cosmos-spaces.cloud:2290', - provider: 'Cosmos Spaces' + "address": "grpc-chihuahua.cosmos-spaces.cloud:2290", + "provider": "Cosmos Spaces" }, { - address: 'chihuahua-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "chihuahua-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'chihuahua-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "chihuahua-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - 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/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/chihuahua/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://mintscan.io/chihuahua", + "tx_page": "https://mintscan.io/chihuahua/transactions/${txHash}", + "account_page": "https://www.mintscan.io/chihuahua/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/chihuahua', - tx_page: 'https://atomscan.com/chihuahua/transactions/${txHash}', - account_page: - 'https://atomscan.com/chihuahua/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/chihuahua", + "tx_page": "https://atomscan.com/chihuahua/transactions/${txHash}", + "account_page": "https://atomscan.com/chihuahua/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'chimba', - status: 'live', - network_type: 'mainnet', - website: 'https://chimba.ooo/', - pretty_name: 'Chimba', - chain_id: 'chimba', - bech32_prefix: 'chimba', - daemon_name: 'chimbad', - node_home: '$HOME/.chimbad', - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "chimba", + "status": "live", + "network_type": "mainnet", + "website": "https://chimba.ooo/", + "pretty_name": "Chimba", + "chain_id": "chimba", + "bech32_prefix": "chimba", + "daemon_name": "chimbad", + "node_home": "$HOME/.chimbad", + "fees": { + "fee_tokens": [ { - denom: 'ucmba', - fixed_min_gas_price: 0.25, - low_gas_price: 1, - average_gas_price: 5, - high_gas_price: 10 + "denom": "ucmba", + "fixed_min_gas_price": 0.25, + "low_gas_price": 1, + "average_gas_price": 5, + "high_gas_price": 10 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'chimba' + "denom": "chimba" } ] }, - codebase: { - git_repo: 'https://github.com/ChimbaBlockchain/chimba', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - genesis: { - genesis_url: 'https://rpc.mainnet.chimba.ooo/genesis' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'] - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg" }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg' - }, - peers: { - persistent_peers: [] - }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.mainnet.chimba.ooo', - provider: 'chimba' + "address": "https://rpc.mainnet.chimba.ooo", + "provider": "chimba" } ], - rest: [ + "rest": [ { - address: 'https://mainnet.chimba.ooo', - provider: 'chimba' + "address": "https://mainnet.chimba.ooo", + "provider": "chimba" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://explorer.chimba.ooo/', - tx_page: 'https://explorer.chimba.ooo/transactions/${txHash}' + "kind": "bigdipper", + "url": "https://explorer.chimba.ooo/", + "tx_page": "https://explorer.chimba.ooo/transactions/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chimba/images/chimba-blue.svg" } ], - slip44: 118 + "slip44": 118 }, { - $schema: '../chain.schema.json', - chain_name: 'chronicnetwork', - status: 'killed', - network_type: 'mainnet', - pretty_name: 'Chronic Chain', - chain_id: 'morocco-1', - bech32_prefix: 'chronic', - daemon_name: 'chtd', - node_home: '$HOME/.cht', - 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' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/ChronicNetwork/net/main/mainnet/v1.1/genesis.json' - }, - versions: [ - { - name: 'v1.1.0', - 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": "killed", + "network_type": "mainnet", + "pretty_name": "Chronic Chain", + "chain_id": "morocco-1", + "bech32_prefix": "chronic", + "daemon_name": "chtd", + "node_home": "$HOME/.cht", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ucgas", + "fixed_min_gas_price": 0.001 } ] }, - peers: { - seeds: [], - persistent_peers: [] - }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc-chronic.zenchainlabs.io/', - provider: 'ZenChainLabs' + "address": "https://rpc-chronic.zenchainlabs.io/", + "provider": "ZenChainLabs" } ], - rest: [ + "rest": [ { - address: 'https://api-chronic.zenchainlabs.io/', - provider: 'ZenChainLabs' + "address": "https://api-chronic.zenchainlabs.io/", + "provider": "ZenChainLabs" } ], - grpc: [] + "grpc": [] }, - 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": "" }, { - kind: 'atomscan', - url: 'https://atomscan.com/chronicnetwork', - tx_page: 'https://atomscan.com/chronicnetwork/transactions/${txHash}', - account_page: - 'https://atomscan.com/chronicnetwork/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/chronicnetwork", + "tx_page": "https://atomscan.com/chronicnetwork/transactions/${txHash}", + "account_page": "https://atomscan.com/chronicnetwork/accounts/${accountAddress}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'comdex', - status: 'live', - network_type: 'mainnet', - website: 'https://comdex.one/', - pretty_name: 'Comdex', - chain_id: 'comdex-1', - bech32_prefix: 'comdex', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ucmdx', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "comdex", + "status": "live", + "network_type": "mainnet", + "website": "https://comdex.one/", + "pretty_name": "Comdex", + "chain_id": "comdex-1", + "bech32_prefix": "comdex", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ucmdx' + "denom": "ucmdx", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - codebase: { - git_repo: 'https://github.com/comdex-official/comdex', - recommended_version: 'v13.4.0', - compatible_versions: ['v13.4.0'], - binaries: { - 'linux/amd64': - 'https://github.com/comdex-official/comdex/releases/download/v13.4.0/comdex-linux-amd64.tar.gz' - }, - cosmos_sdk_version: 'v0.47.5', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: 'v0.41.0', - cosmwasm_enabled: true, - genesis: { - genesis_url: - 'https://comdex-mainnet-genesis.s3.ap-southeast-1.amazonaws.com/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v9.0.0', - recommended_version: 'v9.0.0', - compatible_versions: ['v9.0.0'], - cosmwasm_enabled: true, - next_version_name: 'v10.0.0' - }, - { - name: 'v10.0.0', - recommended_version: 'v10.0.0', - compatible_versions: ['v10.0.0'], - cosmwasm_enabled: true, - next_version_name: 'v11.5.0' - }, - { - name: 'v11.5.0', - height: 8184000, - proposal: 154, - recommended_version: 'v11.5.2', - compatible_versions: ['v11.5.2'], - cosmwasm_enabled: true, - next_version_name: 'v13.3.0' - }, - { - name: 'v13.3.0', - proposal: 216, - height: 10981900, - recommended_version: 'v13.4.0', - compatible_versions: ['v13.4.0'], - binaries: { - 'linux/amd64': - 'https://github.com/comdex-official/comdex/releases/download/v13.4.0/comdex-linux-amd64.tar.gz' - }, - cosmos_sdk_version: 'v0.47.5', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: 'v0.41.0', - cosmwasm_enabled: true, - next_version_name: '' + "denom": "ucmdx" } ] }, - daemon_name: 'comdex', - node_home: '$HOME/.comdex', - key_algos: ['secp256k1'], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + "codebase": { + "cosmos_sdk_version": "v0.47.5", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.41.0" }, - peers: { - seeds: [ - { - id: '7ca14a1d156299999eba9c394ca060368022d52f', - address: '54.194.178.110:26656' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:13156', - provider: 'Polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:13156', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'comdex-mainnet-seed.autostake.com:26776', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '6596d143fd128b2394b27cd7846bda099ca5a193', - address: 'seeds.goldenratiostaking.net:1621', - provider: 'Golden Ratio Staking' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:13156', - provider: 'WhisperNode 🤐' - }, - { - id: '88ba33fbdf0279efaf27cff629f3cf72814d4069', - address: 'seed-comdex-01.stakeflow.io:10007', - provider: 'Stakeflow' - }, - { - id: 'df949a46ae6529ae1e09b034b49716468d5cc7e9', - address: 'seeds.stakerhouse.com:10456', - provider: 'StakerHouse' - } - ], - persistent_peers: [ - { - id: 'd478882a80674fa10a32da63cc20cae13e3a2a57', - address: '43.204.0.243:26656' - }, - { - id: 'd8b74791ee56f1b345d822f62bd9bc969668d8df', - address: '194.163.128.55:36656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'comdex-mainnet-peer.autostake.com:26776', - provider: 'AutoStake 🛡️ Slash Protecteds' - }, - { - id: '88ba33fbdf0279efaf27cff629f3cf72814d4069', - address: 'peer-comdex-01.stakeflow.io:10007', - provider: 'Stakeflow' - } - ] + "daemon_name": "comdex", + "node_home": "$HOME/.comdex", + "key_algos": [ + "secp256k1" + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.comdex.one', - provider: 'comdex' + "address": "https://rpc.comdex.one", + "provider": "comdex" }, { - address: 'https://comdex-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://comdex-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc.comdex.chaintools.tech/', - provider: 'ChainTools' + "address": "https://rpc.comdex.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://comdex-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://comdex-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-comdex.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-comdex.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://rpc-comdex.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-comdex.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://comdex-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://comdex-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://comdex-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://comdex-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://comdex-rpc.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://comdex-rpc.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://comdex-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://comdex-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://rpc-comdex-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-comdex-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://comdex-rpc.validatornode.com', - provider: 'ValidatorNode' + "address": "https://comdex-rpc.validatornode.com", + "provider": "ValidatorNode" } ], - rest: [ + "rest": [ { - address: 'https://rest.comdex.one', - provider: 'comdex' + "address": "https://rest.comdex.one", + "provider": "comdex" }, { - address: 'https://api.comdex.chaintools.tech/', - provider: 'ChainTools' + "address": "https://api.comdex.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://comdex-api.polkachu.com', - provider: 'Polkachu' + "address": "https://comdex-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://comdex-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://comdex-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-comdex.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-comdex.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://comdex-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://comdex-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://lcd-comdex.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-comdex.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://comdex-api.w3coins.io', - provider: 'w3coins' + "address": "https://comdex-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://comdex-rest.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://comdex-rest.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://comdex-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://comdex-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://api-comdex-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-comdex-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://comdex-api.validatornode.com', - provider: 'ValidatorNode' + "address": "https://comdex-api.validatornode.com", + "provider": "ValidatorNode" } ], - grpc: [ + "grpc": [ { - address: 'grpc-comdex-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-comdex-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'comdex.grpcui.chaintools.host:443', - provider: 'ChainTools' + "address": "comdex.grpcui.chaintools.host:443", + "provider": "ChainTools" }, { - address: 'comdex-grpc.polkachu.com:13190', - provider: 'Polkachu' + "address": "comdex-grpc.polkachu.com:13190", + "provider": "Polkachu" }, { - address: 'grpc-comdex.cosmos-spaces.cloud:2300', - provider: 'Cosmos Spaces' + "address": "grpc-comdex.cosmos-spaces.cloud:2300", + "provider": "Cosmos Spaces" }, { - address: 'comdex-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "comdex-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'comdex-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "comdex-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'comdex-grpc.w3coins.io:13190', - provider: 'w3coins' + "address": "comdex-grpc.w3coins.io:13190", + "provider": "w3coins" }, { - address: 'comdex-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "comdex-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'grpc-comdex-01.stakeflow.io:10002', - provider: 'Stakeflow' + "address": "grpc-comdex-01.stakeflow.io:10002", + "provider": "Stakeflow" }, { - address: 'comdex-grpc.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "comdex-grpc.stakerhouse.com:443", + "provider": "StakerHouse" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/comdex', - tx_page: 'https://app.ezstaking.io/comdex/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/comdex/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/comdex", + "tx_page": "https://app.ezstaking.io/comdex/txs/${txHash}", + "account_page": "https://app.ezstaking.io/comdex/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/comdex', - tx_page: 'https://www.mintscan.io/comdex/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/comdex/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/comdex", + "tx_page": "https://www.mintscan.io/comdex/transactions/${txHash}", + "account_page": "https://www.mintscan.io/comdex/accounts/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/comdex/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/comdex", + "tx_page": "https://atomscan.com/comdex/transactions/${txHash}", + "account_page": "https://atomscan.com/comdex/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/comdex', - tx_page: 'https://bigdipper.live/comdex/transactions/${txHash}', - account_page: 'https://bigdipper.live/comdex/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/comdex", + "tx_page": "https://bigdipper.live/comdex/transactions/${txHash}", + "account_page": "https://bigdipper.live/comdex/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/comdex', - account_page: 'https://stakeflow.io/comdex/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/comdex", + "account_page": "https://stakeflow.io/comdex/accounts/${accountAddress}" }, { - kind: 'ValidatorNode', - url: 'https://explorer.validatornode.com/comdex', - tx_page: 'https://explorer.validatornode.com/comdex/tx/${txHash}' + "kind": "ValidatorNode", + "url": "https://explorer.validatornode.com/comdex", + "tx_page": "https://explorer.validatornode.com/comdex/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'commercionetwork', - chain_id: 'commercio-3', - pretty_name: 'Commercio.network', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'did:com:', - daemon_name: 'commercionetworkd', - node_home: '$HOME/.commercionetwork', - key_algos: ['secp256k1'], - slip44: 701, - fees: { - fee_tokens: [ - { - denom: 'ucommercio' - } - ] - }, - codebase: { - git_repo: 'https://github.com/commercionetwork/commercionetwork', - recommended_version: 'v5.0.0', - compatible_versions: ['v5.0.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/commercionetwork/chains/master/commercio-3/genesis.json' - }, - versions: [ - { - name: 'v4.0.0', - recommended_version: 'v4.1.0', - compatible_versions: ['v4.0.0', 'v4.1.0'] - }, - { - name: 'v4.2.0', - recommended_version: 'v4.2.1', - compatible_versions: ['v4.2.0', 'v4.2.1'] - }, + "$schema": "../chain.schema.json", + "chain_name": "commercionetwork", + "chain_id": "commercio-3", + "pretty_name": "Commercio.network", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "did:com:", + "daemon_name": "commercionetworkd", + "node_home": "$HOME/.commercionetwork", + "key_algos": [ + "secp256k1" + ], + "slip44": 701, + "fees": { + "fee_tokens": [ { - name: 'v5.0.0', - recommended_version: 'v5.0.0', - compatible_versions: ['v5.0.0'] + "denom": "ucommercio" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.svg' - }, - peers: { - seeds: [ - { - id: '8d3ac30a774245019f7b94d7a0713fd8caccaa03', - address: 'seed-01.commercio.network:26656' - }, - { - id: '68ccfc9a1574923e344993d49253d8169f592f9e', - address: 'seed-02.commercio.network:26656' - } - ], - persistent_peers: [ - { - id: '3f26a7d3269e352574e760d4b08d045aa40ebbf2', - address: 'persistent-01.commercio.network:26656' - }, - { - id: '15767f4961b501eb67e740aa60c1608bf65679f3', - address: 'persistent-02.commercio.network:26656' - }, - { - id: 'd6e07b5f0a69bd4d6f4e6e931f00fbcb992a8654', - address: 'persistent-04.commercio.network:26656' - }, - { - id: '542a55fff599ea07e2b4841febff4a78cf8db2aa', - address: 'persistent-05.commercio.network:26656' - }, - { - id: '49fdf20f845573429a695c15729c60f52bb5ab19', - address: '84.46.241.230:26656' - }, - { - id: 'e2bd5ac83f0d2fde72571568b9a4203f7e76067d', - address: '64.225.95.231:26656' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc-mainnet.commercio.network' + "address": "https://rpc-mainnet.commercio.network" } ], - rest: [ + "rest": [ { - address: 'https://lcd-mainnet.commercio.network' + "address": "https://lcd-mainnet.commercio.network" } ] }, - explorers: [ + "explorers": [ { - kind: 'almerico', - url: 'https://mainnet.commercio.network', - tx_page: - 'https://mainnet.commercio.network/transactions/detail/${txHash}' + "kind": "almerico", + "url": "https://mainnet.commercio.network", + "tx_page": "https://mainnet.commercio.network/transactions/detail/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/commercionetwork/images/com.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'composable', - chain_id: 'centauri-1', - website: 'https://www.composable.finance/', - pretty_name: 'Composable', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'centauri', - daemon_name: 'centaurid', - node_home: '$HOME/.banksy', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ppica', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0, - high_gas_price: 0 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ppica' - } - ] - }, - codebase: { - git_repo: 'https://github.com/notional-labs/composable-centauri', - recommended_version: 'v6.4.3', - compatible_versions: ['v6.4.3'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/notional-labs/composable-networks/main/mainnet/genesis.json' - }, - versions: [ - { - name: 'v2.3.5', - tag: 'v2.3.5', - recommended_version: 'v2.3.5', - compatible_versions: ['v2.3.5'], - cosmos_sdk_version: 'v0.47.1', - ibc_go_version: 'v7.0.0', - consensus: { - type: 'cometbft', - version: '0.37.0' - }, - height: 0, - binaries: { - 'linux/amd64': - 'https://github.com/notional-labs/composable-centauri/releases/download/v2.3.5/banksyd' - }, - next_version_name: 'centauri' - }, - { - name: 'centauri', - tag: 'v3.1.0', - recommended_version: 'v3.1.2', - compatible_versions: ['v3.1.0', 'v3.1.1', 'v3.1.2'], - cosmos_sdk_version: 'v0.47.3', - ibc_go_version: 'v7.0.0', - consensus: { - type: 'cometbft', - version: '0.37.0' - }, - height: 188500, - proposal: 3, - binaries: { - 'linux/amd64': - 'https://github.com/notional-labs/composable-centauri/releases/download/v3.1.2/centaurid' - }, - next_version_name: 'reward' - }, - { - name: 'reward', - tag: 'v3.2.2', - recommended_version: 'v3.2.2', - compatible_versions: ['v3.2.2'], - cosmos_sdk_version: 'v0.47.3', - ibc_go_version: 'v7.0.0', - consensus: { - type: 'cometbft', - version: '0.37.1' - }, - height: 420000, - proposal: 4, - next_version_name: 'v4' - }, - { - name: 'v4', - tag: 'v4.5.0', - recommended_version: 'v4.5.0', - compatible_versions: ['v4.5.0'], - cosmos_sdk_version: 'v0.47.3', - ibc_go_version: 'v7.0.1', - consensus: { - type: 'cometbft', - version: '0.37.1' - }, - height: 792909, - proposal: 5, - next_version_name: 'v5' - }, - { - name: 'v5', - tag: 'v5.2.0', - recommended_version: 'v5.2.0', - compatible_versions: ['v5.1.0', 'v5.2.0'], - cosmos_sdk_version: 'v0.47.3', - ibc_go_version: 'v7.0.1', - consensus: { - type: 'cometbft', - version: '0.37.1' - }, - height: 1515288, - proposal: 10, - next_version_name: 'v6' - }, + "$schema": "../chain.schema.json", + "chain_name": "composable", + "chain_id": "centauri-1", + "website": "https://www.composable.finance/", + "pretty_name": "Composable", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "centauri", + "daemon_name": "centaurid", + "node_home": "$HOME/.banksy", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v6', - tag: 'v6.3.1', - recommended_version: 'v6.3.6', - compatible_versions: ['v6.3.6'], - cosmos_sdk_version: 'v0.47.5', - ibc_go_version: 'v7.3.1', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - height: 2301070, - proposal: 12, - next_version_name: 'v6_4' - }, + "denom": "ppica", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0 + } + ] + }, + "staking": { + "staking_tokens": [ { - name: 'v6_4', - tag: 'v6.4.2', - recommended_version: 'v6.4.3', - compatible_versions: ['v6.4.3'], - cosmos_sdk_version: 'v0.47.5', - ibc_go_version: - 'notional-labs/ibc-go/v7 v7.2.1-0.20231010040541-6cf43006971f', - consensus: { - type: 'cometbft', - version: 'composablefi/cometbft v0.37.2-fixed-len-vote-time-tag' - }, - height: 3486739, - proposal: 14, - next_version_name: '' + "denom": "ppica" } ] }, - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg' + "codebase": {}, + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg" }, - description: - 'Composable is the base layer connecting L1s and L2s. We are scaling IBC to other ecosystems, pushing the boundaries of trust-minimized interoperability. We abstract the cross-chain experience for users, delivering seamless chain-agnostic execution of user intentions.', - peers: { - seeds: [ + "description": "Composable is the base layer connecting L1s and L2s. We are scaling IBC to other ecosystems, pushing the boundaries of trust-minimized interoperability. We abstract the cross-chain experience for users, delivering seamless chain-agnostic execution of user intentions.", + "apis": { + "rpc": [ { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'composable-mainnet-seed.autostake.com:26976', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://rpc-composable-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:22256', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://composable-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:22256', - provider: 'WhisperNode 🤐' - } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'composable-mainnet-peer.autostake.com:26976', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '63559b939442512ed82d2ded46d02ab1021ea29a', - address: '95.214.55.138:53656', - provider: 'genznodes' - }, - { - id: '7082a715395427a519e611ed1454b0965fd95ef5', - address: '138.201.21.197:37656', - provider: 'StakeTown' - }, - { - id: '715af1847e1c785510d4cb94ac29f2bd7d0ddf91', - address: '65.108.206.74:36656', - provider: 'vinjan' - }, - { - id: 'c6eefdcc5cbe41dd457183c7c3bd7311ddf97638', - address: 'composable.peer.stakevillage.net:16156', - provider: 'Stake Village' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://rpc-composable-ia.cosmosia.notional.ventures', - provider: 'Notional' - }, - { - address: 'https://composable-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - address: 'https://composable-rpc.cogwheel.zone:443', - provider: 'Cogwheel' + "address": "https://composable-rpc.cogwheel.zone:443", + "provider": "Cogwheel" }, { - address: 'https://rpc-centauri.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-centauri.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://composable-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://composable-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://composable-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://composable-rpc.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://rpc-composable.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-composable.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://composable-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://composable-rpc.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://composable.rpc.stakevillage.net:443', - provider: 'Stake Village' + "address": "https://composable.rpc.stakevillage.net:443", + "provider": "Stake Village" }, { - address: 'https://composable-rpc.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://composable-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://rpc.centauri.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.centauri.bronbro.io:443", + "provider": "Bro_n_Bro" }, { - address: 'https://composable.rpc.moonbridge.team', - provider: 'Moonbridge' + "address": "https://composable.rpc.moonbridge.team", + "provider": "Moonbridge" } ], - rest: [ + "rest": [ { - address: 'https://api-composable-ia.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://api-composable-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'https://composable-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://composable-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://composable-api.cogwheel.zone:443', - provider: 'Cogwheel' + "address": "https://composable-api.cogwheel.zone:443", + "provider": "Cogwheel" }, { - address: 'https://api-centauri.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-centauri.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://composable-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://composable-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://composable-api.genznodes.dev', - provider: 'genznodes' + "address": "https://composable-api.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://lcd-composable.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-composable.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://composable-api.stake-town.com', - provider: 'StakeTown' + "address": "https://composable-api.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://composable.api.stakevillage.net', - provider: 'Stake Village' + "address": "https://composable.api.stakevillage.net", + "provider": "Stake Village" }, { - address: 'https://composable-api.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://composable-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://lcd.centauri.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.centauri.bronbro.io:443", + "provider": "Bro_n_Bro" }, { - address: 'https://composable.api.moonbridge.team', - provider: 'Moonbridge' + "address": "https://composable.api.moonbridge.team", + "provider": "Moonbridge" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc-composable-ia.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://grpc-composable-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'grpc.composable.nodestake.top:9090', - provider: 'NodeStake' + "address": "grpc.composable.nodestake.top:9090", + "provider": "NodeStake" }, { - address: 'composable-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "composable-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-centauri.cosmos-spaces.cloud:1120', - provider: 'Cosmos Spaces' + "address": "grpc-centauri.cosmos-spaces.cloud:1120", + "provider": "Cosmos Spaces" }, { - address: 'https://composable-grpc.cogwheel.zone:443', - provider: 'Cogwheel' + "address": "https://composable-grpc.cogwheel.zone:443", + "provider": "Cogwheel" }, { - address: 'https://composable-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://composable-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'composable-grpc.genznodes.dev:53090', - provider: 'genznodes' + "address": "composable-grpc.genznodes.dev:53090", + "provider": "genznodes" }, { - address: 'composable-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "composable-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'grpc-composable.vinjan.xyz:36090', - provider: 'vinjan' + "address": "grpc-composable.vinjan.xyz:36090", + "provider": "vinjan" }, { - address: 'composable.grpc.skynodejs.net', - provider: 'skynodejs' + "address": "composable.grpc.skynodejs.net", + "provider": "skynodejs" }, { - address: 'composable.grpc.stakevillage.net:16190', - provider: 'Stake Village' + "address": "composable.grpc.stakevillage.net:16190", + "provider": "Stake Village" }, { - address: 'composable-rpc.stakeandrelax.net:22290', - provider: 'Stake&Relax 🦥' + "address": "composable-rpc.stakeandrelax.net:22290", + "provider": "Stake&Relax 🦥" }, { - address: 'https://grpc.centauri.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.centauri.bronbro.io:443", + "provider": "Bro_n_Bro" }, { - address: 'https://composable.grpc.moonbridge.team', - provider: 'Moonbridge' + "address": "https://composable.grpc.moonbridge.team", + "provider": "Moonbridge" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://ping.pub/centauri', - tx_page: 'https://ping.pub/centauri/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/centauri", + "tx_page": "https://ping.pub/centauri/tx/${txHash}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/composable', - tx_page: 'https://explorer.nodestake.top/composable/tx/${txHash}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/composable", + "tx_page": "https://explorer.nodestake.top/composable/tx/${txHash}" }, { - kind: 'Stake Village', - url: 'https://exp.stakevillage.net/composable', - tx_page: 'https://exp.stakevillage.net/composable/tx/${txHash}', - account_page: - 'https://exp.stakevillage.net/composable/account/${accountAddress}' + "kind": "Stake Village", + "url": "https://exp.stakevillage.net/composable", + "tx_page": "https://exp.stakevillage.net/composable/tx/${txHash}", + "account_page": "https://exp.stakevillage.net/composable/account/${accountAddress}" } ], - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'conscious', - status: 'live', - network_type: 'mainnet', - website: 'https://www.consciousdao.com/', - pretty_name: 'ConsciousDAO', - chain_id: 'cvn_2032-1', - bech32_prefix: 'cvn', - node_home: '$HOME/.cvnd', - daemon_name: 'cvnd', - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'acvnt', - fixed_min_gas_price: 100000000, - low_gas_price: 100000000, - average_gas_price: 200000000, - high_gas_price: 300000000 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "conscious", + "status": "live", + "network_type": "mainnet", + "website": "https://www.consciousdao.com/", + "pretty_name": "ConsciousDAO", + "chain_id": "cvn_2032-1", + "bech32_prefix": "cvn", + "node_home": "$HOME/.cvnd", + "daemon_name": "cvnd", + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'acvnt' + "denom": "acvnt", + "fixed_min_gas_price": 100000000, + "low_gas_price": 100000000, + "average_gas_price": 200000000, + "high_gas_price": 300000000 } ] }, - codebase: { - git_repo: 'https://github.com/cvn-network/cvn', - recommended_version: 'v2.1.1', - compatible_versions: ['v2.1.1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/cvn-network/cvn/release/v2.1.x/networks/mainnet/config/genesis.json' - }, - versions: [ - { - name: 'v1.0.3', - recommended_version: 'v1.0.4', - compatible_versions: ['v1.0.3'], - next_version_name: 'v2.1.1' - }, + "staking": { + "staking_tokens": [ { - name: 'v2.1.1', - recommended_version: 'v2.1.1', - compatible_versions: ['v2.1.1'], - next_version_name: '' + "denom": "acvnt" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg' + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg" }, - peers: { - seeds: [], - persistent_peers: [] - }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.cvn.io/', - provider: 'cvn.io' + "address": "https://rpc.cvn.io/", + "provider": "cvn.io" } ], - rest: [ + "rest": [ { - address: 'https://api.consciousdao.com', - provider: 'consciousdao.com' + "address": "https://api.consciousdao.com", + "provider": "consciousdao.com" } ], - grpc: [ + "grpc": [ { - address: 'https://rest.consciousdao.com', - provider: 'consciousdao.com' + "address": "https://rest.consciousdao.com", + "provider": "consciousdao.com" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://node.cvn.io/', - provider: 'cvn' + "address": "https://node.cvn.io/", + "provider": "cvn" }, { - address: 'https://node.consciousdao.io/', - provider: 'consciousdao' + "address": "https://node.consciousdao.io/", + "provider": "consciousdao" } ] }, - explorers: [ + "explorers": [ { - kind: 'blockscout', - url: 'https://explore.consciousdao.com/', - tx_page: 'https://explore.consciousdao.com/tx/${txHash}' + "kind": "blockscout", + "url": "https://explore.consciousdao.com/", + "tx_page": "https://explore.consciousdao.com/tx/${txHash}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'coreum', - status: 'live', - network_type: 'mainnet', - website: 'https://www.coreum.com', - pretty_name: 'Coreum', - chain_id: 'coreum-mainnet-1', - bech32_prefix: 'core', - daemon_name: 'cored', - node_home: '$HOME/.core/coreum-mainnet-1', - key_algos: ['secp256k1'], - slip44: 990, - fees: { - fee_tokens: [ - { - denom: 'ucore', - fixed_min_gas_price: 0.03125, - low_gas_price: 0.0625, - average_gas_price: 0.0625, - high_gas_price: 62.5 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ucore' - } - ], - lock_duration: { - time: '168h' - } - }, - codebase: { - git_repo: 'https://github.com/CoreumFoundation/coreum', - recommended_version: 'v3.0.2', - compatible_versions: ['v3.0.2'], - binaries: { - 'linux/amd64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v3.0.2/cored-linux-amd64', - 'linux/arm64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v3.0.2/cored-linux-arm64' - }, - cosmos_sdk_version: '0.47', - consensus: { - type: 'cometbft', - version: '0.37' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - genesis: { - name: 'v1', - genesis_url: - 'https://raw.githubusercontent.com/CoreumFoundation/coreum/master/genesis/coreum-mainnet-1.json' - }, - versions: [ - { - name: 'v1', - tag: 'v1.0.0', - height: 0, - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v1.0.0/cored-linux-amd64?checksum=sha256:34098ad7586bda364b1b2e7c4569cbcefb630cd4ed7c8f68eb5bced834082c57', - 'linux/arm64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v1.0.0/cored-linux-arm64?checksum=sha256:3ced97f06607f0cdaf77e7ff0b36b2011d101c660684e4f3e54c2ac6bf344dd6' - }, - next_version_name: 'v2' - }, - { - name: 'v2', - tag: 'v2.0.2', - proposal: 5, - height: 6947500, - recommended_version: 'v2.0.2', - compatible_versions: ['v2.0.2'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v2.0.2/cored-linux-amd64?checksum=sha256:3facf55f7ff795719f68b9bcf76ea08262bc7c9e9cd735c660257ba73678250e', - 'linux/arm64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v2.0.2/cored-linux-arm64?checksum=sha256:35e261eb3b87c833c30174e6b8667a6155f5962441275d443157e209bbb0bf0d' - }, - next_version_name: 'v3' - }, - { - name: 'v3', - tag: 'v3.0.2', - proposal: 8, - height: 13480000, - recommended_version: 'v3.0.2', - compatible_versions: ['v3.0.2'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'cometbft', - version: '0.37' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v3.0.2/cored-linux-amd64', - 'linux/arm64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v3.0.2/cored-linux-arm64' - } + "$schema": "../chain.schema.json", + "chain_name": "coreum", + "status": "live", + "network_type": "mainnet", + "website": "https://www.coreum.com", + "pretty_name": "Coreum", + "chain_id": "coreum-mainnet-1", + "bech32_prefix": "core", + "daemon_name": "cored", + "node_home": "$HOME/.core/coreum-mainnet-1", + "key_algos": [ + "secp256k1" + ], + "slip44": 990, + "fees": { + "fee_tokens": [ + { + "denom": "ucore", + "fixed_min_gas_price": 0.03125, + "low_gas_price": 0.0625, + "average_gas_price": 0.0625, + "high_gas_price": 62.5 } ] }, - images: [ + "staking": { + "staking_tokens": [ + { + "denom": "ucore" + } + ], + "lock_duration": { + "time": "168h" + } + }, + "codebase": { + "cosmos_sdk_version": "0.47", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" + }, + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', - theme: { - primary_color_hex: '#25d695' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "theme": { + "primary_color_hex": "#25d695" } }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png' - }, - peers: { - seeds: [ - { - id: '0df493af80fbaad41b9b26d6f4520b39ceb1d210', - address: 'seed-iron.mainnet-1.coreum.dev:26656', - provider: 'Coreum Foundation' - }, - { - id: 'cba16f4f32707d70a2a2d10861fac897f1e9aaa1', - address: 'seed-nickle.mainnet-1.coreum.dev:26656', - provider: 'Coreum Foundation' - }, - { - id: '67ecf3e890b2f77b13fc872c8f11f868c283be6e', - address: 'rpc.coreum.nodexcapital.com:14156', - provider: 'NodeX Validator' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: 'b657918c029d10e5cab97f4e348b9a53e74dd85c', - address: '95.214.55.138:35656', - provider: 'genznodes' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://full-node.mainnet-1.coreum.dev:26657', - provider: 'Coreum Foundation' + "address": "https://full-node.mainnet-1.coreum.dev:26657", + "provider": "Coreum Foundation" }, { - address: 'https://full-node-californium.mainnet-1.coreum.dev:26657', - provider: 'Coreum Foundation' + "address": "https://full-node-californium.mainnet-1.coreum.dev:26657", + "provider": "Coreum Foundation" }, { - address: 'https://full-node-curium.mainnet-1.coreum.dev:26657', - provider: 'Coreum Foundation' + "address": "https://full-node-curium.mainnet-1.coreum.dev:26657", + "provider": "Coreum Foundation" }, { - address: 'https://full-node-uranium.mainnet-1.coreum.dev:26657', - provider: 'Coreum Foundation' + "address": "https://full-node-uranium.mainnet-1.coreum.dev:26657", + "provider": "Coreum Foundation" }, { - address: 'https://rpc-coreum.ecostake.com', - provider: 'ecostake' + "address": "https://rpc-coreum.ecostake.com", + "provider": "ecostake" }, { - address: 'https://coreum.rpc.silknodes.io', - provider: 'Silk Nodes' + "address": "https://coreum.rpc.silknodes.io", + "provider": "Silk Nodes" }, { - address: 'https://coreum-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://coreum-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://rpc.mainnet.solonation.cf', - provider: '#SoloNation' + "address": "https://rpc.mainnet.solonation.cf", + "provider": "#SoloNation" }, { - address: 'https://coreum-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://coreum-rpc.genznodes.dev", + "provider": "genznodes" } ], - grpc: [ + "grpc": [ { - address: 'https://full-node.mainnet-1.coreum.dev:9090', - provider: 'Coreum Foundation' + "address": "https://full-node.mainnet-1.coreum.dev:9090", + "provider": "Coreum Foundation" }, { - address: 'https://full-node-californium.mainnet-1.coreum.dev:9090', - provider: 'Coreum Foundation' + "address": "https://full-node-californium.mainnet-1.coreum.dev:9090", + "provider": "Coreum Foundation" }, { - address: 'https://full-node-curium.mainnet-1.coreum.dev:9090', - provider: 'Coreum Foundation' + "address": "https://full-node-curium.mainnet-1.coreum.dev:9090", + "provider": "Coreum Foundation" }, { - address: 'https://full-node-uranium.mainnet-1.coreum.dev:9090', - provider: 'Coreum Foundation' + "address": "https://full-node-uranium.mainnet-1.coreum.dev:9090", + "provider": "Coreum Foundation" }, { - address: 'https://grpc.coreum.nodexcapital.com:444', - provider: 'NodeX Validator' + "address": "https://grpc.coreum.nodexcapital.com:444", + "provider": "NodeX Validator" }, { - address: 'coreum-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "coreum-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'coreum-grpc.genznodes.dev:35090', - provider: 'genznodes' + "address": "coreum-grpc.genznodes.dev:35090", + "provider": "genznodes" } ], - rest: [ + "rest": [ { - address: 'https://rest-coreum.ecostake.com', - provider: 'ecostake' + "address": "https://rest-coreum.ecostake.com", + "provider": "ecostake" }, { - address: 'https://coreum.api.silknodes.io', - provider: 'Silk Nodes' + "address": "https://coreum.api.silknodes.io", + "provider": "Silk Nodes" }, { - address: 'https://full-node.mainnet-1.coreum.dev:1317', - provider: 'Coreum' + "address": "https://full-node.mainnet-1.coreum.dev:1317", + "provider": "Coreum" }, { - address: 'https://coreum-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://coreum-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://api.mainnet.solonation.cf', - provider: '#SoloNation' + "address": "https://api.mainnet.solonation.cf", + "provider": "#SoloNation" }, { - address: 'https://coreum-api.genznodes.dev', - provider: 'genznodes' + "address": "https://coreum-api.genznodes.dev", + "provider": "genznodes" } ] }, - explorers: [ + "explorers": [ { - kind: 'Coreum', - url: 'https://explorer.coreum.com/coreum', - tx_page: 'https://explorer.coreum.com/coreum/transactions/${txHash}', - account_page: - 'https://explorer.coreum.com/coreum/account/${accountAddress}' + "kind": "Coreum", + "url": "https://explorer.coreum.com/coreum", + "tx_page": "https://explorer.coreum.com/coreum/transactions/${txHash}", + "account_page": "https://explorer.coreum.com/coreum/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/coreum', - tx_page: 'https://www.mintscan.io/coreum/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/coreum/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/coreum", + "tx_page": "https://www.mintscan.io/coreum/transactions/${txHash}", + "account_page": "https://www.mintscan.io/coreum/accounts/${accountAddress}" }, { - kind: 'NODEXPLORER', - url: 'https://explorer.nodexcapital.com/coreum', - tx_page: 'https://explorer.nodexcapital.com/coreum/txs/${txHash}', - account_page: - 'https://explorer.nodexcapital.com/coreum/account/${accountAddress}' + "kind": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com/coreum", + "tx_page": "https://explorer.nodexcapital.com/coreum/txs/${txHash}", + "account_page": "https://explorer.nodexcapital.com/coreum/account/${accountAddress}" }, { - kind: 'Silk Nodes', - url: 'https://explorer.silknodes.io/coreum', - tx_page: 'https://explorer.silknodes.io/coreum/tx/${txHash}', - account_page: - 'https://explorer.silknodes.io/coreum/account/${accountAddress}' + "kind": "Silk Nodes", + "url": "https://explorer.silknodes.io/coreum", + "tx_page": "https://explorer.silknodes.io/coreum/tx/${txHash}", + "account_page": "https://explorer.silknodes.io/coreum/account/${accountAddress}" }, { - kind: '#SoloNation', - url: 'https://explorer.solonation.cf/core-main', - tx_page: 'https://explorer.solonation.cf/core-main/tx/${txHash}', - account_page: - 'https://explorer.solonation.cf/core-main/account/${accountAddress}' + "kind": "#SoloNation", + "url": "https://explorer.solonation.cf/core-main", + "tx_page": "https://explorer.solonation.cf/core-main/tx/${txHash}", + "account_page": "https://explorer.solonation.cf/core-main/account/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/coreum', - tx_page: 'https://explorer.tcnetwork.io/coreum/transaction/${txHash}', - account_page: - 'https://explorer.tcnetwork.io/coreum/account/${accountAddress}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/coreum", + "tx_page": "https://explorer.tcnetwork.io/coreum/transaction/${txHash}", + "account_page": "https://explorer.tcnetwork.io/coreum/account/${accountAddress}" } ], - keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'] + "keywords": [ + "dex", + "staking", + "wasm", + "assets", + "nft" + ] }, { - $schema: '../chain.schema.json', - chain_name: 'cosmoshub', - chain_id: 'cosmoshub-4', - website: 'https://cosmos.network/', - pretty_name: 'Cosmos Hub', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'cosmos', - daemon_name: 'gaiad', - node_home: '$HOME/.gaia', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uatom', - fixed_min_gas_price: 0.005, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.03 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uatom' - } - ] - }, - codebase: { - git_repo: 'https://github.com/cosmos/gaia', - recommended_version: 'v14.1.0', - compatible_versions: ['v14.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-amd64?checksum=sha256:baed43bd3f523fd587cff4d8f78f395a3bcb6d20d9a671bef69b8fbe101338f6', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-arm64?checksum=sha256:a57822b2a199ca461f8a8baf4e98a46803f8fa5d4ceb130b539ebd0c03c035a8', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-amd64?checksum=sha256:4edec8b191bbb0bdcd0f89d1fadfc1cfdb720ac943b7c03d584760725547c047', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-arm64?checksum=sha256:5177c7ca2b0e66daedc506c6fcdab0d8c436dae846de32081556b8edd57027e8', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-amd64.exe?checksum=sha256:d912548fc1c87ca26defce1a60f089910fa55b38d27063870750efeab176db9d', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-arm64.exe?checksum=sha256:b17cc1f1a9a5050b72f99d497fdda6d1d4615b6a42971f556d2777ba838fe7b0' - }, - genesis: { - genesis_url: - 'https://github.com/cosmos/mainnet/raw/master/genesis/genesis.cosmoshub-4.json.gz' - }, - versions: [ - { - name: 'v9-Lambda', - tag: 'v9.1.1', - recommended_version: 'v9.1.1', - compatible_versions: ['v9.1.1'], - cosmos_sdk_version: 'v0.45.15-ics', - ibc_go_version: 'v4.2.1', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - height: 15213800, - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v9.1.1/gaiad-v9.1.1-linux-amd64?checksum=sha256:f62814711be991e535b2fd86f7d4ed8c055bebf774253a06477dc182ce98cdc3', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v9.1.1/gaiad-v9.1.1-linux-arm64?checksum=sha256:a7112c03c7a2bec2a761a3d430bfea9616ed0ebb10c785cafdd6fac117abc504', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v9.1.1/gaiad-v9.1.1-darwin-amd64?checksum=sha256:959f3ddbf3a65b557574527222c5a673b706e9d52a203dfbda2ceb827b760261', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v9.1.1/gaiad-v9.1.1-darwin-arm64?checksum=sha256:0a913a3a9a31456ddfba26eccdfccca61d00b06498faa94019776df391509d27', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v9.1.1/gaiad-v9.1.1-windows-amd64.exe?checksum=sha256:db1d82650ed2a0aa9abccb2bb60dca902c4d1444444f6c76a8b6d61d6bc41e08' - }, - next_version_name: 'v10' - }, - { - name: 'v10', - tag: 'v10.0.2', - proposal: 798, - height: 15816200, - recommended_version: 'v10.0.2', - compatible_versions: ['v10.0.0', 'v10.0.1', 'v10.0.2'], - cosmos_sdk_version: 'v0.45.16-ics', - ibc_go_version: 'v4.4.2', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v10.0.2/gaiad-v10.0.2-linux-amd64?checksum=sha256:fcb8210308223d78bc36f3d4c89e2578dcf784994c052cea97efd61f1672cf72', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v10.0.2/gaiad-v10.0.2-linux-arm64?checksum=sha256:db9b69cf224b410c669fa4f820192890357534e74d4693a744ef915028567462', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v10.0.2/gaiad-v10.0.2-darwin-amd64?checksum=sha256:d0bee3b4b243fe1f88ad3258f4648de3a73787434702bcac6e31ca38f81a283a', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v10.0.2/gaiad-v10.0.2-darwin-arm64?checksum=sha256:c8124d66ffa99b51da274656f6c3401b1ec9e165a76f3f01699761672e83a136gaiad-v10.0.1-linux-amd64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v10.0.2/gaiad-v10.0.2-windows-amd64.exe?checksum=sha256:c02ab2b8fc347f858db1c33fcacafa2467ca550ed83178aee67331762e876926' - }, - next_version_name: 'v11' - }, - { - name: 'v11', - tag: 'v11.0.0', - proposal: 804, - height: 16596000, - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - cosmos_sdk_version: 'v0.45.16-ics', - ibc_go_version: 'v4.4.2', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-windows-amd64.exe', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-windows-arm64.exe' - }, - next_version_name: 'v12' - }, - { - name: 'v12', - tag: 'v12.0.0', - proposal: 821, - height: 16985500, - recommended_version: 'v12.0.0', - compatible_versions: ['v12.0.0'], - cosmos_sdk_version: 'v0.45.16-ics', - ibc_go_version: 'v4.4.2', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-windows-amd64.exe', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-windows-arm64.exe' - }, - next_version_name: 'v13' - }, - { - name: 'v13', - tag: 'v13.0.2', - proposal: 825, - height: 17380000, - recommended_version: 'v13.0.2', - compatible_versions: ['v13.0.1', 'v13.0.2'], - cosmos_sdk_version: 'v0.45.16-ics-lsm', - ibc_go_version: 'v4.4.2', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.2/gaiad-v13.0.2-linux-amd64?checksum=sha256:729a55b29857fedfe1271f26e1fdf2cb12d2c6515c2ad0d9bbe432a81ae43df8', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.2/gaiad-v13.0.2-linux-arm64?checksum=sha256:9bfbe0d5212fa3cdabe34b75b42e1420f50fe8aff64ec9247dcbc5942969e333', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.2/gaiad-v13.0.2-darwin-amd64?checksum=sha256:910b515369b0cfa8eecc54f2f930fd5de2634b7106825b62f4c4c563fe2a6a07', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.2/gaiad-v13.0.2-darwin-arm64?checksum=sha256:5a148b56bec7d9ef23d21778725eedb9bc70eaa6a61155b22947216812a17369', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.2/gaiad-v13.0.2-windows-amd64.exe?checksum=sha256:bc339c368b07306a73a16af8f005bc14439b393790f61d0568358495eb83e71c', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.2/gaiad-v13.0.2-windows-arm64.exe?checksum=sha256:8728e0f56d52479c80ba4b1c8f68a8fc3085220fad241ba1180867b2c3bc97fa' - }, - next_version_name: 'v14' - }, - { - name: 'v14', - tag: 'v14.1.0', - proposal: 854, - height: 18262000, - recommended_version: 'v14.1.0', - compatible_versions: ['v14.1.0'], - cosmos_sdk_version: 'v0.45.16-ics-lsm', - ibc_go_version: 'v4.4.2', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-amd64?checksum=sha256:baed43bd3f523fd587cff4d8f78f395a3bcb6d20d9a671bef69b8fbe101338f6', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-arm64?checksum=sha256:a57822b2a199ca461f8a8baf4e98a46803f8fa5d4ceb130b539ebd0c03c035a8', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-amd64?checksum=sha256:4edec8b191bbb0bdcd0f89d1fadfc1cfdb720ac943b7c03d584760725547c047', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-arm64?checksum=sha256:5177c7ca2b0e66daedc506c6fcdab0d8c436dae846de32081556b8edd57027e8', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-amd64.exe?checksum=sha256:d912548fc1c87ca26defce1a60f089910fa55b38d27063870750efeab176db9d', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-arm64.exe?checksum=sha256:b17cc1f1a9a5050b72f99d497fdda6d1d4615b6a42971f556d2777ba838fe7b0' - }, - next_version_name: 'v15' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' - }, - description: - "In a nutshell, Cosmos Hub bills itself as a project that solves some of the hardest problems facing the blockchain industry. It aims to offer an antidote to slow, expensive, unscalable and environmentally harmful proof-of-work protocols, like those used by Bitcoin, by offering an ecosystem of connected blockchains.\n\nThe project’s other goals include making blockchain technology less complex and difficult for developers thanks to a modular framework that demystifies decentralized apps. Last but not least, an Inter-blockchain Communication protocol makes it easier for blockchain networks to communicate with each other — preventing fragmentation in the industry.\n\nCosmos Hub's origins can be dated back to 2014, when Tendermint, a core contributor to the network, was founded. In 2016, a white paper for Cosmos was published — and a token sale was held the following year. ATOM tokens are earned through a hybrid proof-of-stake algorithm, and they help to keep the Cosmos Hub, the project’s flagship blockchain, secure. This cryptocurrency also has a role in the network’s governance.", - peers: { - seeds: [ - { - id: 'ba3bacc714817218562f743178228f23678b2873', - address: 'public-seed-node.cosmoshub.certus.one:26656', - provider: 'certusone' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:14956', - provider: 'Polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:14956', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: '57a5297537b9b6ef8b105c08a8ad3f6ac452c423', - address: 'seeds.goldenratiostaking.net:1618', - provider: 'Golden Ratio Staking' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:14956', - provider: 'WhisperNode 🤐' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'cosmoshub.rpc.kjnodes.com:11359', - provider: 'kjnodes' - }, - { - id: 'fe21dd474640247888fc7c4dce82da8da08a8bfd', - address: 'seed-cosmos-hub-01.stakeflow.io:26656', - provider: 'Stakeflow' - }, - { - id: '11c6114a18f7b380e536b0bd17c031f4746e4ded', - address: 'seed-node.mms.team:43656', - provider: 'MMS' - }, + "$schema": "../chain.schema.json", + "chain_name": "cosmoshub", + "chain_id": "cosmoshub-4", + "website": "https://cosmos.network/", + "pretty_name": "Cosmos Hub", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "cosmos", + "daemon_name": "gaiad", + "node_home": "$HOME/.gaia", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '87ccc1dcc0b846fc1623ab9a5ab55682e8e2ad2e', - address: 'seed-cosmoshub.freshstaking.com:26656', - provider: 'FreshSTAKING' + "denom": "uatom", + "fixed_min_gas_price": 0.005, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } - ], - persistent_peers: [ - { - id: 'd6318b3bd51a5e2b8ed08f2e520d50289ed32bf1', - address: '52.79.43.100:26656' - }, - { - id: 'b0e746acb6fbed7a0311fe21cfb2ee94581ca3bc', - address: '51.79.21.187:26656' - }, - { - id: '1da54d20c7339713f1d6d28dd2117087dd33d0ca', - address: 'cosmos-seed.icycro.org:26656', - provider: 'IcyCRO 🧊' - }, - { - id: 'fe21dd474640247888fc7c4dce82da8da08a8bfd', - address: 'peer-cosmos-hub-01.stakeflow.io:26656', - provider: 'Stakeflow' - }, - { - id: '01c0d24922dcdf6f8816ec814a5c3436c5d5fbc5', - address: '65.108.195.29:36656', - provider: 'Staketab' - }, - { - id: '28d36c3d45f0208528de3c38f2934ae241bd23e7', - address: 'peer-cosmoshub.mms.team:26656', - provider: 'MMS' - }, + ] + }, + "staking": { + "staking_tokens": [ { - id: '87ccc1dcc0b846fc1623ab9a5ab55682e8e2ad2e', - address: 'seed-cosmoshub.freshstaking.com:26656', - provider: 'FreshSTAKING' + "denom": "uatom" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + }, + "description": "In a nutshell, Cosmos Hub bills itself as a project that solves some of the hardest problems facing the blockchain industry. It aims to offer an antidote to slow, expensive, unscalable and environmentally harmful proof-of-work protocols, like those used by Bitcoin, by offering an ecosystem of connected blockchains.\n\nThe project’s other goals include making blockchain technology less complex and difficult for developers thanks to a modular framework that demystifies decentralized apps. Last but not least, an Inter-blockchain Communication protocol makes it easier for blockchain networks to communicate with each other — preventing fragmentation in the industry.\n\nCosmos Hub's origins can be dated back to 2014, when Tendermint, a core contributor to the network, was founded. In 2016, a white paper for Cosmos was published — and a token sale was held the following year. ATOM tokens are earned through a hybrid proof-of-stake algorithm, and they help to keep the Cosmos Hub, the project’s flagship blockchain, secure. This cryptocurrency also has a role in the network’s governance.", + "apis": { + "rpc": [ { - address: 'https://rpc-cosmoshub.blockapsis.com', - provider: 'chainapsis' + "address": "https://rpc-cosmoshub.blockapsis.com", + "provider": "chainapsis" }, { - address: 'https://cosmos-rpc.quickapi.com:443', - provider: 'Chainlayer' + "address": "https://cosmos-rpc.quickapi.com:443", + "provider": "Chainlayer" }, { - address: 'https://cosmos-rpc.onivalidator.com', - provider: 'Oni Validator ⛩️' + "address": "https://cosmos-rpc.onivalidator.com", + "provider": "Oni Validator ⛩️" }, { - address: 'https://rpc-cosmoshub.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-cosmoshub.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://cosmoshub-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://cosmoshub-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc.cosmoshub.strange.love', - provider: 'strangelove-ventures' + "address": "https://rpc.cosmoshub.strange.love", + "provider": "strangelove-ventures" }, { - 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://rpc-cosmoshub.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-cosmoshub.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://cosmos-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://cosmos-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://cosmos-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://cosmos-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://rpc-cosmoshub-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-cosmoshub-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc-cosmoshub.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rpc-cosmoshub.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://rpc.cosmos.dragonstake.io', - provider: 'DragonStake' + "address": "https://rpc.cosmos.dragonstake.io", + "provider": "DragonStake" }, { - address: 'https://cosmoshub.rpc.stakin-nodes.com', - provider: 'Stakin' + "address": "https://cosmoshub.rpc.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'https://cosmos-rpc.icycro.org', - provider: 'IcyCRO 🧊' + "address": "https://cosmos-rpc.icycro.org", + "provider": "IcyCRO 🧊" }, { - address: 'https://rpc.cosmos.bh.rocks', - provider: 'BlockHunters 🎯' + "address": "https://rpc.cosmos.bh.rocks", + "provider": "BlockHunters 🎯" }, { - address: 'https://cosmos-rpc.rockrpc.net', - provider: 'RockawayX Infra' + "address": "https://cosmos-rpc.rockrpc.net", + "provider": "RockawayX Infra" }, { - address: 'http://rpc-cosmoshub.freshstaking.com:26657', - provider: 'FreshSTAKING' + "address": "http://rpc-cosmoshub.freshstaking.com:26657", + "provider": "FreshSTAKING" }, { - address: 'https://cosmos-rpc.easy2stake.com/', - provider: 'Easy 2 Stake' + "address": "https://cosmos-rpc.easy2stake.com/", + "provider": "Easy 2 Stake" }, { - address: 'https://rpc.cosmos.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.cosmos.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://cosmos.rpc.silknodes.io', - provider: 'Silk Nodes' + "address": "https://cosmos.rpc.silknodes.io", + "provider": "Silk Nodes" }, { - address: 'https://cosmos-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://cosmos-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://cosmoshub.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://cosmoshub.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://rpc-cosmoshub.goldenratiostaking.net', - provider: 'Golden Ratio Staking' + "address": "https://rpc-cosmoshub.goldenratiostaking.net", + "provider": "Golden Ratio Staking" }, { - address: 'https://rpc-cosmos-hub-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-cosmos-hub-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://cosmos-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://cosmos-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://cosmos-rpc.enigma-validator.com', - provider: 'Enigma' + "address": "https://cosmos-rpc.enigma-validator.com", + "provider": "Enigma" }, { - address: 'https://rpc-cosmoshub.mms.team', - provider: 'MMS' + "address": "https://rpc-cosmoshub.mms.team", + "provider": "MMS" }, { - address: 'https://cosmos-rpc.tienthuattoan.ventures', - provider: 'TienThuatToan' + "address": "https://cosmos-rpc.tienthuattoan.ventures", + "provider": "TienThuatToan" }, { - address: 'https://community.nuxian-node.ch:6797/gaia/trpc', - provider: 'PRO Delegators' + "address": "https://community.nuxian-node.ch:6797/gaia/trpc", + "provider": "PRO Delegators" }, { - address: 'https://cosmos-rpc.highstakes.ch:26657/', - provider: 'High Stakes 🇨🇭' + "address": "https://cosmos-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://cosmoshub-rpc.cosmosrescue.dev', - provider: 'cosmosrescue' + "address": "https://cosmoshub-rpc.cosmosrescue.dev", + "provider": "cosmosrescue" }, { - address: 'https://cosmos-rpc.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://cosmos-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" } ], - rest: [ + "rest": [ { - address: 'https://lcd-cosmoshub.blockapsis.com', - provider: 'chainapsis' + "address": "https://lcd-cosmoshub.blockapsis.com", + "provider": "chainapsis" }, { - address: 'https://cosmos-lcd.quickapi.com:443', - provider: 'Chainlayer' + "address": "https://cosmos-lcd.quickapi.com:443", + "provider": "Chainlayer" }, { - address: 'https://rest-cosmoshub.goldenratiostaking.net', - provider: 'Golden Ratio Staking' + "address": "https://rest-cosmoshub.goldenratiostaking.net", + "provider": "Golden Ratio Staking" }, { - address: 'https://cosmoshub-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://cosmoshub-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-cosmoshub.pupmos.network', - provider: 'PUPMØS' + "address": "https://api-cosmoshub.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://api-cosmoshub.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-cosmoshub.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://api-cosmoshub-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-cosmoshub-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://cosmos-rest.staketab.org', - provider: 'Staketab' + "address": "https://cosmos-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://lcd.cosmos.dragonstake.io', - provider: 'DragonStake' + "address": "https://lcd.cosmos.dragonstake.io", + "provider": "DragonStake" }, { - address: 'https://cosmoshub.rest.stakin-nodes.com', - provider: 'Stakin' + "address": "https://cosmoshub.rest.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'https://rest-cosmoshub.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rest-cosmoshub.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://rest-cosmoshub.ecostake.com', - provider: 'ecostake' + "address": "https://rest-cosmoshub.ecostake.com", + "provider": "ecostake" }, { - address: 'https://lcd-cosmoshub.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-cosmoshub.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://cosmos-lcd.easy2stake.com', - provider: 'Easy 2 Stake' + "address": "https://cosmos-lcd.easy2stake.com", + "provider": "Easy 2 Stake" }, { - address: 'https://api.cosmos.nodestake.top', - provider: 'NodeStake' + "address": "https://api.cosmos.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://cosmos.api.silknodes.io', - provider: 'Silk Nodes' + "address": "https://cosmos.api.silknodes.io", + "provider": "Silk Nodes" }, { - address: 'https://cosmos-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://cosmos-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://cosmoshub.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://cosmoshub.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://api-cosmos-hub-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-cosmos-hub-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://cosmos-api.w3coins.io', - provider: 'w3coins' + "address": "https://cosmos-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://api-cosmoshub.mms.team', - provider: 'MMS' + "address": "https://api-cosmoshub.mms.team", + "provider": "MMS" }, { - address: 'https://cosmos-api.tienthuattoan.ventures', - provider: 'TienThuatToan' + "address": "https://cosmos-api.tienthuattoan.ventures", + "provider": "TienThuatToan" }, { - address: 'https://community.nuxian-node.ch:6797/gaia/crpc', - provider: 'PRO Delegators' + "address": "https://community.nuxian-node.ch:6797/gaia/crpc", + "provider": "PRO Delegators" }, { - address: 'https://cosmos-api.highstakes.ch:1317/', - provider: 'High Stakes 🇨🇭' + "address": "https://cosmos-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://cosmoshub-mainnet.api.l0vd.com', - provider: 'L0vd.com ❤️' + "address": "https://cosmoshub-mainnet.api.l0vd.com", + "provider": "L0vd.com ❤️" }, { - address: 'https://cosmos-lcd.enigma-validator.com', - provider: 'Enigma' + "address": "https://cosmos-lcd.enigma-validator.com", + "provider": "Enigma" }, { - address: 'https://cosmoshub-api.cosmosrescue.dev', - provider: 'cosmosrescue' + "address": "https://cosmoshub-api.cosmosrescue.dev", + "provider": "cosmosrescue" }, { - address: 'https://cosmos-api.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://cosmos-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" } ], - grpc: [ + "grpc": [ { - address: 'cosmoshub-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "cosmoshub-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'grpc-cosmoshub-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-cosmoshub-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'cosmos-grpc.polkachu.com:14990', - provider: 'Polkachu' + "address": "cosmos-grpc.polkachu.com:14990", + "provider": "Polkachu" }, { - address: 'grpc.cosmos.interbloc.org:443', - provider: 'Interbloc' + "address": "grpc.cosmos.interbloc.org:443", + "provider": "Interbloc" }, { - address: 'services.staketab.com:9030', - provider: 'Staketab' + "address": "services.staketab.com:9030", + "provider": "Staketab" }, { - address: 'grpc.cosmos.dragonstake.io:443', - provider: 'DragonStake' + "address": "grpc.cosmos.dragonstake.io:443", + "provider": "DragonStake" }, { - address: 'cosmoshub.grpc.stakin-nodes.com:443', - provider: 'Stakin' + "address": "cosmoshub.grpc.stakin-nodes.com:443", + "provider": "Stakin" }, { - address: 'https://grpc.cosmos.nodestake.top', - provider: 'NodeStake' + "address": "https://grpc.cosmos.nodestake.top", + "provider": "NodeStake" }, { - address: 'cosmos-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "cosmos-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'grpc-cosmoshub.cosmos-spaces.cloud:3910', - provider: 'Cosmos Spaces' + "address": "grpc-cosmoshub.cosmos-spaces.cloud:3910", + "provider": "Cosmos Spaces" }, { - address: 'cosmoshub.grpc.kjnodes.com:11390', - provider: 'kjnodes' + "address": "cosmoshub.grpc.kjnodes.com:11390", + "provider": "kjnodes" }, { - address: 'grpc-cosmos-hub-01.stakeflow.io:9090', - provider: 'Stakeflow' + "address": "grpc-cosmos-hub-01.stakeflow.io:9090", + "provider": "Stakeflow" }, { - address: 'grpc-cosmoshub.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "grpc-cosmoshub.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'cosmos-grpc.w3coins.io:14990', - provider: 'w3coins' + "address": "cosmos-grpc.w3coins.io:14990", + "provider": "w3coins" }, { - address: 'grpc-cosmoshub.mms.team:443', - provider: 'MMS' + "address": "grpc-cosmoshub.mms.team:443", + "provider": "MMS" }, { - address: 'cosmos-grpc.tienthuattoan.ventures:9090', - provider: 'TienThuatToan' + "address": "cosmos-grpc.tienthuattoan.ventures:9090", + "provider": "TienThuatToan" }, { - address: 'cosmoshub-mainnet.grpc.l0vd.com:80', - provider: 'L0vd.com ❤️' + "address": "cosmoshub-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com ❤️" }, { - address: 'https://grpc-cosmos.nodeist.net', - provider: 'Nodeist' + "address": "https://grpc-cosmos.nodeist.net", + "provider": "Nodeist" }, { - address: 'cosmos-grpc.stakeandrelax.net:14990', - provider: 'Stake&Relax 🦥' + "address": "cosmos-grpc.stakeandrelax.net:14990", + "provider": "Stake&Relax 🦥" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/cosmoshub', - tx_page: 'https://app.ezstaking.io/cosmoshub/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/cosmoshub/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/cosmoshub", + "tx_page": "https://app.ezstaking.io/cosmoshub/txs/${txHash}", + "account_page": "https://app.ezstaking.io/cosmoshub/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/cosmos', - tx_page: 'https://www.mintscan.io/cosmos/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/cosmos/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/cosmos", + "tx_page": "https://www.mintscan.io/cosmos/transactions/${txHash}", + "account_page": "https://www.mintscan.io/cosmos/accounts/${accountAddress}" }, { - 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://bigdipper.live/cosmos', - tx_page: 'https://bigdipper.live/cosmos/transactions/${txHash}', - account_page: 'https://bigdipper.live/cosmos/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/cosmos", + "tx_page": "https://bigdipper.live/cosmos/transactions/${txHash}", + "account_page": "https://bigdipper.live/cosmos/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com', - tx_page: 'https://atomscan.com/transactions/${txHash}', - account_page: 'https://atomscan.com/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com", + "tx_page": "https://atomscan.com/transactions/${txHash}", + "account_page": "https://atomscan.com/accounts/${accountAddress}" }, { - kind: 'unichain', - url: 'https://unicha.in/cosmos', - tx_page: 'https://unicha.in/cosmos/transaction/${txHash}' + "kind": "unichain", + "url": "https://unicha.in/cosmos", + "tx_page": "https://unicha.in/cosmos/transaction/${txHash}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/cosmoshub', - tx_page: 'https://explorer.tcnetwork.io/cosmoshub/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/cosmoshub", + "tx_page": "https://explorer.tcnetwork.io/cosmoshub/transaction/${txHash}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/cosmos', - account_page: 'https://stakeflow.io/cosmos/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/cosmos", + "account_page": "https://stakeflow.io/cosmos/accounts/${accountAddress}" }, { - kind: 'Nodeist Explorer', - url: 'https://exp.nodeist.net/cosmos', - tx_page: 'https://exp.nodeist.net/cosmos/tx/${txHash}' + "kind": "Nodeist Explorer", + "url": "https://exp.nodeist.net/cosmos", + "tx_page": "https://exp.nodeist.net/cosmos/tx/${txHash}" }, { - kind: 'Inbloc', - url: 'https://inbloc.org', - tx_page: 'https://inbloc.org/transactions/${txHash}', - account_page: 'https://inbloc.org/account/${accountAddress}' + "kind": "Inbloc", + "url": "https://inbloc.org", + "tx_page": "https://inbloc.org/transactions/${txHash}", + "account_page": "https://inbloc.org/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'coss', - chain_id: 'coss-1', - website: 'https://coss.ink/', - pretty_name: 'COSS', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'coss', - daemon_name: 'cossd', - node_home: '$HOME/.coss', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "coss", + "chain_id": "coss-1", + "website": "https://coss.ink/", + "pretty_name": "COSS", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "coss", + "daemon_name": "cossd", + "node_home": "$HOME/.coss", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ucoss', - fixed_min_gas_price: 0.025, - low_gas_price: 0.025, - average_gas_price: 0.03, - high_gas_price: 0.04 + "denom": "ucoss", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.03, + "high_gas_price": 0.04 }, { - denom: 'ucgas', - fixed_min_gas_price: 0.025, - low_gas_price: 0.025, - average_gas_price: 0.03, - high_gas_price: 0.04 + "denom": "ucgas", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.03, + "high_gas_price": 0.04 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'ucgas' + "denom": "ucgas" } ] }, - codebase: { - git_repo: 'https://github.com/coss-inscription/coss', - recommended_version: 'v0.1.0', - compatible_versions: ['v0.1.0'], - genesis: { - genesis_url: - 'https://github.com/coss-inscription/networks/blob/main/mainnet/v1/genesis.json' - } - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.svg' - }, - peers: { - seeds: [ - { - id: '0c8862ebc7b852d8e57536aea1d78e6644010b49', - address: '43.207.197.139:26656', - provider: 'StarHarmony' - }, - { - id: 'a9bb6d6f7f6640799435909558443b94288fedf7', - address: '3.112.200.3:26656', - provider: 'QuantumPioneer' - }, - { - id: '9ffaad12e44bd345cbc9e91c4de57749d9af4d5c', - address: '43.207.86.217:26656', - provider: 'CelestialPhoenix' - }, - { - id: '337c06a864babea354cecc4212669c5c236df893', - address: '18.183.134.119:26656', - provider: 'StellarGuardian' - } - ], - persistent_peers: [ - { - id: '2f2815602ac270224c913dbddc6b7f8d0a6fd052', - address: '54.199.117.156:26656' - }, - { - id: '9f0a41abda8e08edc64d27ecc4edeef1941d70c0', - address: '175.41.246.99:26656' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://coss-rpc.coss.ink', - provider: 'StellarGuardian' + "address": "https://coss-rpc.coss.ink", + "provider": "StellarGuardian" }, { - address: 'https://coss-rpc.cias.network', - provider: 'CelestialPhoenix' + "address": "https://coss-rpc.cias.network", + "provider": "CelestialPhoenix" } ], - rest: [ + "rest": [ { - address: 'https://coss-rest.coss.ink', - provider: 'StellarGuardian' + "address": "https://coss-rest.coss.ink", + "provider": "StellarGuardian" }, { - address: 'https://coss-rest.cias.network', - provider: 'CelestialPhoenix' + "address": "https://coss-rest.cias.network", + "provider": "CelestialPhoenix" } ] }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coss/images/coss.svg" } ] }, { - $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', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ucre', - fixed_min_gas_price: 0, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.03 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ucre' - } - ] - }, - codebase: { - git_repo: 'https://github.com/crescent-network/crescent', - recommended_version: 'v4.2.0', - compatible_versions: ['v4.2.0'], - binaries: { - 'linux/amd64': - 'https://github.com/crescent-network/crescent/releases/download/v4.2.0/crescentd-v4.2.0-linux-amd64', - 'darwin/arm64': - 'https://github.com/crescent-network/crescent/releases/download/v4.2.0/crescentd-v4.2.0-darwin-arm64' - }, - genesis: { - genesis_url: - 'https://github.com/crescent-network/launch/raw/main/mainnet/crescent-1/genesis.json.tar.gz' - }, - versions: [ - { - name: 'v1', - tag: 'v1.0.0', - height: 0, - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'] - }, - { - name: 'v1.1', - tag: 'v1.1.0', - height: 48000, - recommended_version: '1.1.0', - compatible_versions: ['v1.1.0'] - }, - { - name: 'v2', - tag: 'v2.3.0', - height: 1384100, - proposal: 12, - recommended_version: 'v2.3.0', - compatible_versions: ['v2.3.0', 'v2.2.0', 'v2.1.1', 'v2.1.0'] - }, - { - name: 'v3', - tag: 'v3.0.0', - height: 3932000, - proposal: 29, - recommended_version: 'v3.0.0', - compatible_versions: ['v3.0.0'] - }, - { - name: 'v4', - tag: 'v4.0.0', - height: 4415902, - proposal: 35, - recommended_version: 'v4.0.0', - compatible_versions: ['v4.0.0'], - next_version_name: 'v4.1' - }, - { - name: 'v4.1', - tag: 'v4.1.1', - height: 6500000, - recommended_version: 'v4.1.1', - compatible_versions: ['v4.1.1', 'v4.1.0'], - next_version_name: 'v4.2' - }, - { - name: 'v4.2', - tag: 'v4.2.0', - height: 6915000, - recommended_version: 'v4.2.0', - compatible_versions: ['v4.2.0'], - binaries: { - 'linux/amd64': - 'https://github.com/crescent-network/crescent/releases/download/v4.2.0/crescentd-v4.2.0-linux-amd64', - 'darwin/arm64': - 'https://github.com/crescent-network/crescent/releases/download/v4.2.0/crescentd-v4.2.0-darwin-arm64' - } + "$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", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ucre", + "fixed_min_gas_price": 0, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } ] }, - 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' - }, - peers: { - seeds: [ - { - id: '929f22a7b04ff438da9edcfebd8089908239de44', - address: '18.180.232.184:26656', - provider: 'crescent' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'crescent-mainnet-seed.autostake.com:26816', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '3b60a29d89cd7ef6a8d0c7ba32013d7f2051e082', - address: 'seed-crescent-01.stakeflow.io:1406', - provider: 'Stakeflow' - }, + "staking": { + "staking_tokens": [ { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: '3bcffbcb11e96edc84c04a5628639f5ed94b9db2', - address: '128.0.51.5:26656', - provider: 'Dokia-capital' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:14556', - provider: 'Polkachu' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'crescent-mainnet-peer.autostake.com:26816', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '3b60a29d89cd7ef6a8d0c7ba32013d7f2051e082', - address: 'peer-crescent-01.stakeflow.io:1406', - provider: 'Stakeflow' + "denom": "ucre" } ] }, - apis: { - rpc: [ + "codebase": {}, + "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" + }, + "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" }, { - address: 'https://crescent.rpc.stakin-nodes.com', - provider: 'Stakin' + "address": "https://crescent.rpc.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'https://crescent-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://crescent-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rpc-crescent.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-crescent.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://rpc-crescent-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-crescent-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://crescent-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://crescent-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://rpc.crescent.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.crescent.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - 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" }, { - address: 'https://crescent-api.polkachu.com', - provider: 'Polkachu' + "address": "https://crescent-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://crescent.rest.stakin-nodes.com', - provider: 'Stakin' + "address": "https://crescent.rest.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'https://api-crescent.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-crescent.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://crescent-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://crescent-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://api-crescent-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-crescent-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://crescent-api.w3coins.io', - provider: 'w3coins' + "address": "https://crescent-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://lcd.crescent.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.crescent.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'crescent-grpc.polkachu.com:14590', - provider: 'Polkachu' + "address": "crescent-grpc.polkachu.com:14590", + "provider": "Polkachu" }, { - address: 'crescent.grpc.stakin-nodes.com:443', - provider: 'Stakin' + "address": "crescent.grpc.stakin-nodes.com:443", + "provider": "Stakin" }, { - address: 'crescent-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "crescent-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-crescent.cosmos-spaces.cloud:2270', - provider: 'Cosmos Spaces' + "address": "grpc-crescent.cosmos-spaces.cloud:2270", + "provider": "Cosmos Spaces" }, { - address: 'grpc-crescent-01.stakeflow.io:1402', - provider: 'Stakeflow' + "address": "grpc-crescent-01.stakeflow.io:1402", + "provider": "Stakeflow" }, { - address: 'crescent-grpc.w3coins.io:14590', - provider: 'w3coins' + "address": "crescent-grpc.w3coins.io:14590", + "provider": "w3coins" }, { - address: 'https://grpc.crescent.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.crescent.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/crescent', - tx_page: 'https://www.mintscan.io/crescent/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/crescent/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/crescent", + "tx_page": "https://www.mintscan.io/crescent/transactions/${txHash}", + "account_page": "https://www.mintscan.io/crescent/accounts/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/crescent/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/crescent", + "tx_page": "https://atomscan.com/crescent/transactions/${txHash}", + "account_page": "https://atomscan.com/crescent/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/crescent', - tx_page: 'https://bigdipper.live/crescent/transactions/${txHash}', - account_page: - 'https://bigdipper.live/crescent/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/crescent", + "tx_page": "https://bigdipper.live/crescent/transactions/${txHash}", + "account_page": "https://bigdipper.live/crescent/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/crescent', - account_page: 'https://stakeflow.io/crescent/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/crescent", + "account_page": "https://stakeflow.io/crescent/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'cronos', - status: 'live', - network_type: 'mainnet', - website: 'https://cronos.org', - pretty_name: 'Cronos', - chain_id: 'cronosmainnet_25-1', - bech32_prefix: 'crc', - daemon_name: 'cronosd', - node_home: '$HOME/.cronos', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'basecro' - } - ] - }, - codebase: { - git_repo: 'https://github.com/crypto-org-chain/cronos', - recommended_version: 'v1.0.4', - compatible_versions: ['v1.0.2', 'v1.0.3', 'v1.0.4'], - binaries: { - 'linux/amd64': - 'https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Windows_x86_64.zip' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/crypto-org-chain/cronos-mainnet/master/cronosmainnet_25-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.4', - recommended_version: 'v1.0.4', - compatible_versions: ['v1.0.2', 'v1.0.3', 'v1.0.4'], - binaries: { - 'linux/amd64': - 'https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/crypto-org-chain/cronos/releases/download/v1.0.4/cronos_1.0.4_Windows_x86_64.zip' - } - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' - }, - peers: { - seeds: [ - { - id: '0d5cf1394a1cfde28dc8f023567222abc0f47534', - address: 'cronos-seed-0.crypto.org:26656', - provider: 'cronos.org' - }, - { - id: '3032073adc06d710dd512240281637c1bd0c8a7b', - address: 'cronos-seed-1.crypto.org:26656', - provider: 'cronos.org' - }, - { - id: '04f43116b4c6c70054d9c2b7485383df5b1ed1da', - address: 'cronos-seed-2.crypto.org:26656', - provider: 'cronos.org' - }, - { - id: '337377dcda43d79c537d2c4d93ad3b698ce9452e', - address: 'bd-cronos-mainnet-seed-node-01.bdnodes.net:26656', - provider: 'Blockdaemon.com' - }, - { - id: 'abedfe94dd5731e9750e045ca8d8e40aa6d3c60b', - address: 'seed.cronos.jerrychong.com:26656', - provider: "Jerry's Pool" - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: '0d5cf1394a1cfde28dc8f023567222abc0f47534', - address: 'cronos-seed-0.crypto.org:26656', - provider: 'cronos.org' - }, - { - id: '3032073adc06d710dd512240281637c1bd0c8a7b', - address: 'cronos-seed-1.crypto.org:26656', - provider: 'cronos.org' - }, - { - id: '04f43116b4c6c70054d9c2b7485383df5b1ed1da', - address: 'cronos-seed-2.crypto.org:26656', - provider: 'cronos.org' - }, + "$schema": "../chain.schema.json", + "chain_name": "cronos", + "status": "live", + "network_type": "mainnet", + "website": "https://cronos.org", + "pretty_name": "Cronos", + "chain_id": "cronosmainnet_25-1", + "bech32_prefix": "crc", + "daemon_name": "cronosd", + "node_home": "$HOME/.cronos", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - id: '337377dcda43d79c537d2c4d93ad3b698ce9452e', - address: 'bd-cronos-mainnet-seed-node-01.bdnodes.net:26656', - provider: 'Blockdaemon.com' + "denom": "basecro" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.cronos.org/', - provider: 'cronos.org' + "address": "https://rpc.cronos.org/", + "provider": "cronos.org" }, { - address: 'https://cronos-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://cronos-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - rest: [ + "rest": [ { - address: 'https://rest.cronos.org/', - provider: 'cronos.org' + "address": "https://rest.cronos.org/", + "provider": "cronos.org" }, { - address: 'https://cronos-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://cronos-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ + "grpc": [ { - address: 'grpc.cronos.org:443', - provider: 'cronos.org' + "address": "grpc.cronos.org:443", + "provider": "cronos.org" }, { - address: 'cronos-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "cronos-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://evm.cronos.org/', - provider: 'cronos.org' + "address": "https://evm.cronos.org/", + "provider": "cronos.org" }, { - address: 'https://cronos-evm.publicnode.com', - provider: 'Allnodes.com ⚡️ Nodes & Staking' + "address": "https://cronos-evm.publicnode.com", + "provider": "Allnodes.com ⚡️ Nodes & Staking" } ] }, - 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}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'cryptoorgchain', - status: 'live', - network_type: 'mainnet', - pretty_name: 'Cronos POS Chain', - chain_id: 'crypto-org-chain-mainnet-1', - bech32_prefix: 'cro', - website: 'https://cronos-pos.org/', - daemon_name: 'chain-maind', - node_home: '$HOME/.chain-maind', - slip44: 394, - alternative_slip44s: [118], - fees: { - fee_tokens: [ - { - denom: 'basecro', - low_gas_price: 0.025, - average_gas_price: 0.03, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'basecro' - } - ] - }, - codebase: { - git_repo: 'https://github.com/crypto-org-chain/chain-main', - recommended_version: 'v4.2.2', - compatible_versions: ['v4.2.2'], - binaries: { - 'linux/amd64': - 'https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Windows_x86_64.zip' - }, - genesis: { - genesis_url: - 'https://github.com/crypto-org-chain/mainnet/raw/main/crypto-org-chain-mainnet-1/genesis.json' - }, - versions: [ - { - name: 'v4.2.2', - recommended_version: 'v4.2.2', - compatible_versions: ['v4.2.2'], - binaries: { - 'linux/amd64': - 'https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/crypto-org-chain/chain-main/releases/download/v4.2.2/chain-main_4.2.2_Windows_x86_64.zip' - } + "$schema": "../chain.schema.json", + "chain_name": "cryptoorgchain", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Cronos POS Chain", + "chain_id": "crypto-org-chain-mainnet-1", + "bech32_prefix": "cro", + "website": "https://cronos-pos.org/", + "daemon_name": "chain-maind", + "node_home": "$HOME/.chain-maind", + "slip44": 394, + "alternative_slip44s": [ + 118 + ], + "fees": { + "fee_tokens": [ + { + "denom": "basecro", + "low_gas_price": 0.025, + "average_gas_price": 0.03, + "high_gas_price": 0.04 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cryptoorgchain/images/cronos.png' - }, - description: - 'Cronos PoS Chain is a public, open-source and permissionless blockchain - a fully decentralized network with high speed and low fees, designed to be a public good that helps drive mass adoption of blockchain technology through use cases like Payments, DeFi and NFTs.', - peers: { - seeds: [ - { - id: '87c3adb7d8f649c51eebe0d3335d8f9e28c362f2', - address: 'seed-0.crypto.org:26656', - provider: 'cronos.org' - }, - { - id: 'e1d7ff02b78044795371beb1cd5fb803f9389256', - address: 'seed-1.crypto.org:26656', - provider: 'cronos.org' - }, - { - id: '2c55809558a4e491e9995962e10c026eb9014655', - address: 'seed-2.crypto.org:26656', - provider: 'cronos.org' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:20256', - provider: 'Polkachu' - } - ], - persistent_peers: [ - { - id: '87c3adb7d8f649c51eebe0d3335d8f9e28c362f2', - address: 'seed-0.crypto.org:26656', - provider: 'cronos.org' - }, - { - id: 'e1d7ff02b78044795371beb1cd5fb803f9389256', - address: 'seed-1.crypto.org:26656', - provider: 'cronos.org' - }, + "staking": { + "staking_tokens": [ { - id: '2c55809558a4e491e9995962e10c026eb9014655', - address: 'seed-2.crypto.org:26656', - provider: 'cronos.org' + "denom": "basecro" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cryptoorgchain/images/cronos.png" + }, + "description": "Cronos PoS Chain is a public, open-source and permissionless blockchain - a fully decentralized network with high speed and low fees, designed to be a public good that helps drive mass adoption of blockchain technology through use cases like Payments, DeFi and NFTs.", + "apis": { + "rpc": [ { - address: 'https://rpc.mainnet.crypto.org/', - provider: 'cronos.org' + "address": "https://rpc.mainnet.crypto.org/", + "provider": "cronos.org" }, { - address: 'https://rpc-cryptoorgchain-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-cryptoorgchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc-cryptoorgchain.ecostake.com', - provider: 'ecostake' + "address": "https://rpc-cryptoorgchain.ecostake.com", + "provider": "ecostake" }, { - address: 'https://cryptocom-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://cryptocom-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://cryptocom-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://cryptocom-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://rpc-cryptoorg.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-cryptoorg.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://cro-chain-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://cro-chain-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - rest: [ + "rest": [ { - address: 'https://rest.mainnet.crypto.org/', - provider: 'cronos.org' + "address": "https://rest.mainnet.crypto.org/", + "provider": "cronos.org" }, { - address: 'https://api-cryptoorgchain-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-cryptoorgchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://cryptocom-api.polkachu.com', - provider: 'Polkachu' + "address": "https://cryptocom-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rest-cryptoorgchain.ecostake.com', - provider: 'ecostake' + "address": "https://rest-cryptoorgchain.ecostake.com", + "provider": "ecostake" }, { - address: 'https://cryptocom-api.w3coins.io', - provider: 'w3coins' + "address": "https://cryptocom-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://api-cryptoorg.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-cryptoorg.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://cro-chain-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://cro-chain-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ + "grpc": [ { - address: 'grpc.mainnet.crypto.org:443', - provider: 'cronos.org' + "address": "grpc.mainnet.crypto.org:443", + "provider": "cronos.org" }, { - address: 'grpc-cryptoorgchain-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-cryptoorgchain-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'cryptocom-grpc.polkachu.com:20290', - provider: 'Polkachu' + "address": "cryptocom-grpc.polkachu.com:20290", + "provider": "Polkachu" }, { - address: 'cryptocom-grpc.w3coins.io:20290', - provider: 'w3coins' + "address": "cryptocom-grpc.w3coins.io:20290", + "provider": "w3coins" }, { - address: 'grpc-cryptoorg.cosmos-spaces.cloud:1160', - provider: 'Cosmos Spaces' + "address": "grpc-cryptoorg.cosmos-spaces.cloud:1160", + "provider": "Cosmos Spaces" }, { - address: 'cro-chain-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "cro-chain-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/crypto-org', - tx_page: 'https://www.mintscan.io/crypto-org/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/crypto-org/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/crypto-org", + "tx_page": "https://www.mintscan.io/crypto-org/transactions/${txHash}", + "account_page": "https://www.mintscan.io/crypto-org/accounts/${accountAddress}" }, { - kind: 'cronos.org', - url: 'https://cronos-pos.org/explorer', - tx_page: 'https://cronos-pos.org/explorer/tx/${txHash}' + "kind": "cronos.org", + "url": "https://cronos-pos.org/explorer", + "tx_page": "https://cronos-pos.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}" }, { - kind: 'yummy-explorer', - url: 'https://explorer.yummy.capital', - tx_page: 'https://explorer.yummy.capital/txs/${txHash}' + "kind": "yummy-explorer", + "url": "https://explorer.yummy.capital", + "tx_page": "https://explorer.yummy.capital/txs/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cryptoorgchain/images/cronos.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cryptoorgchain/images/cronos.png" }, { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cryptoorgchain/images/Cronos_POS_Chain_Colour.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cryptoorgchain/images/Cronos_POS_Chain_Colour.svg" }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'cudos', - status: 'live', - network_type: 'mainnet', - pretty_name: 'Cudos', - chain_id: 'cudos-1', - bech32_prefix: 'cudos', - daemon_name: 'cudos-noded', - website: 'https://www.cudos.org/', - node_home: '$HOME/cudos-data', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'acudos', - low_gas_price: 5000000000000, - average_gas_price: 10000000000000, - high_gas_price: 20000000000000 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "cudos", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Cudos", + "chain_id": "cudos-1", + "bech32_prefix": "cudos", + "daemon_name": "cudos-noded", + "website": "https://www.cudos.org/", + "node_home": "$HOME/cudos-data", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'acudos' + "denom": "acudos", + "low_gas_price": 5000000000000, + "average_gas_price": 10000000000000, + "high_gas_price": 20000000000000 } ] }, - codebase: { - git_repo: 'https://github.com/CudoVentures/cudos-node', - recommended_version: 'v1.1.0', - compatible_versions: ['v1.0.1', 'v1.1.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/CudoVentures/cudos-builders/v1.0.0/docker/config/genesis.mainnet.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.1.0', - recommended_version: 'v1.1.0', - compatible_versions: ['v1.0.1', 'v1.1.0'] + "denom": "acudos" } ] }, - 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' + "codebase": {}, + "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" }, - peers: { - seeds: [ + "apis": { + "rpc": [ { - id: 'ff3f0f7b1eecc6844e6512428ef4c7a9448452a8', - address: 'cluster-1-seed-1.hosts.cudos.org:26656', - provider: 'cudo' + "address": "http://mainnet-full-node-01.hosts.cudos.org:26657", + "provider": "cudo" }, { - id: '6d9beb4d44a530a4a10ebe78ed7717f6083d0c4b', - address: 'cluster-2-seed-1.hosts.cudos.org:26656', - provider: 'cudo' + "address": "https://mainnet-full-node-02.hosts.cudos.org:36657", + "provider": "cudo" }, { - id: 'e0f3bcc574ef66ae4561fad0772a4fd1959969af', - address: 'cluster-3-seed-1.hosts.cudos.org:26656', - provider: 'cudo' + "address": "https://cudos-rpc.kleomedes.network", + "provider": "Kleomedes" }, { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'cudos-mainnet-seed.autostake.com:27256', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://cudos-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:12356', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://cudos-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" } ], - persistent_peers: [ + "rest": [ + { + "address": "http://mainnet-full-node-01.hosts.cudos.org:1317", + "provider": "cudo" + }, { - id: 'f196d7cc811a5ab99e4c5dd5c7f3c0135509d1c4', - address: 'cluster-1-sentry-1.hosts.cudos.org:26656', - provider: 'cudo' + "address": "https://mainnet-full-node-02.hosts.cudos.org:31317", + "provider": "cudo" }, { - id: '2cc0a12ff1038509b2ed64719fcddfdded9a04ad', - address: 'cluster-2-sentry-1.hosts.cudos.org:26656', - provider: 'cudo' + "address": "https://cudos-api.kleomedes.network", + "provider": "Kleomedes" }, { - id: 'ab1ec4fb29afc9c0f5a04b7cbd1220b8b30ffea4', - address: 'cluster-3-sentry-1.hosts.cudos.org:26656', - provider: 'cudo' + "address": "https://cudos-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - id: '2958b15e9102cb556cc0f1f1bbbfdfc922a16069', - address: 'mainnet-full-node-01.hosts.cudos.org:26656', - provider: 'cudo' + "address": "https://cudos-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" + } + ], + "grpc": [ + { + "address": "mainnet-full-node-01.hosts.cudos.org:9090", + "provider": "cudo" }, { - id: 'eb14f9142ad313297653f84754b1caf60efe75ac', - address: 'mainnet-full-node-02.hosts.cudos.org:26656', - provider: 'cudo' + "address": "cudos-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'cudos-mainnet-peer.autostake.com:27256', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "cudos-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" + } + ] + }, + "explorers": [ + { + "kind": "bigdipper", + "url": "https://explorer.cudos.org/", + "tx_page": "https://explorer.cudos.org/transactions/${txHash}", + "account_page": "https://explorer.cudos.org/accounts/${accountAddress}" + }, + { + "kind": "cudos-dashboard", + "url": "https://dashboard.cudos.org/", + "tx_page": "https://explorer.cudos.org/transactions/${txHash}", + "account_page": "https://explorer.cudos.org/accounts/${accountAddress}" + }, + { + "kind": "mintscan", + "url": "https://www.mintscan.io/cudos", + "tx_page": "https://www.mintscan.io/cudos/transactions/${txHash}", + "account_page": "https://www.mintscan.io/cudos/accounts/${accountAddress}" + }, + { + "kind": "atomscan", + "url": "https://atomscan.com/cudos", + "tx_page": "https://atomscan.com/cudos/transactions/${txHash}", + "account_page": "https://atomscan.com/cudos/accounts/${accountAddress}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg" + } + ] + }, + { + "$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", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "udec", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.025 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "udec" } ] }, - apis: { - rpc: [ + "codebase": {}, + "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" + }, + "apis": { + "rpc": [ { - address: 'http://mainnet-full-node-01.hosts.cudos.org:26657', - provider: 'cudo' + "address": "https://poseidon.mainnet.decentr.xyz", + "provider": "decentr" }, { - address: 'https://mainnet-full-node-02.hosts.cudos.org:36657', - provider: 'cudo' + "address": "https://rpc.decentr.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://cudos-rpc.kleomedes.network', - provider: 'Kleomedes' + "address": "https://decentr-rpc.ibs.team/", + "provider": "Inter Blockchain Services" }, { - address: 'https://cudos-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://rpc-dcntr.nodine.id/", + "provider": "Nodine.ID" }, { - address: 'https://cudos-rpc.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://rpc-decentr.mms.team/", + "provider": "MMS" } ], - rest: [ - { - address: 'http://mainnet-full-node-01.hosts.cudos.org:1317', - provider: 'cudo' - }, - { - address: 'https://mainnet-full-node-02.hosts.cudos.org:31317', - provider: 'cudo' - }, + "rest": [ { - address: 'https://cudos-api.kleomedes.network', - provider: 'Kleomedes' + "address": "https://rest.mainnet.decentr.xyz", + "provider": "decentr" }, { - address: 'https://cudos-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://api.decentr.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://cudos-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://decentr-api.ibs.team/", + "provider": "Inter Blockchain Services" } ], - grpc: [ + "grpc": [ { - address: 'mainnet-full-node-01.hosts.cudos.org:9090', - provider: 'cudo' + "address": "https://grpc-decentr.sxlzptprjkt.xyz:443", + "provider": "sxlzptprjkt | VALIDATOR" }, { - address: 'cudos-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://grpc.decentr.hexnodes.co", + "provider": "Hexnodes" }, { - address: 'cudos-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://grpc.decentr.nodexcapital.com:443", + "provider": "NodeX Validator" + }, + { + "address": "grpc-decentr.mms.team:443", + "provider": "MMS" } ] }, - explorers: [ + "explorers": [ + { + "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": "atomscan", + "url": "https://atomscan.com/decentr", + "tx_page": "https://atomscan.com/decentr/transactions/${txHash}", + "account_page": "https://atomscan.com/decentr/accounts/${accountAddress}" + }, { - kind: 'bigdipper', - url: 'https://explorer.cudos.org/', - tx_page: 'https://explorer.cudos.org/transactions/${txHash}', - account_page: 'https://explorer.cudos.org/accounts/${accountAddress}' + "kind": "Nodine.ID", + "url": "https://explorer.co.id/decentr", + "tx_page": "https://explorer.co.id/decentr/tx/${txHash}" }, { - kind: 'cudos-dashboard', - url: 'https://dashboard.cudos.org/', - tx_page: 'https://explorer.cudos.org/transactions/${txHash}', - account_page: 'https://explorer.cudos.org/accounts/${accountAddress}' + "kind": "THE EXPLORER", + "url": "https://explorer.sxlzptprjkt.xyz/decentr", + "tx_page": "https://explorer.sxlzptprjkt.xyz/decentr/tx/${txHash}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/cudos', - tx_page: 'https://www.mintscan.io/cudos/transactions/${txHash}', - account_page: 'https://www.mintscan.io/cudos/accounts/${accountAddress}' + "kind": "hexskrt EXPLORER", + "url": "https://explorer.hexskrt.net/decentr", + "tx_page": "https://explorer.hexskrt.net/decentr/tx/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/cudos', - tx_page: 'https://atomscan.com/cudos/transactions/${txHash}', - account_page: 'https://atomscan.com/cudos/accounts/${accountAddress}' + "kind": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com/decentr", + "tx_page": "https://explorer.nodexcapital.com/decentr/tx/${txHash}" + }, + { + "kind": "Explorer ComunityNode", + "url": "https://explorer.comunitynode.my.id/decentr", + "tx_page": "https://explorer.comunitynode.my.id/decentr/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + "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" } ] }, { - $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', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'udec', - fixed_min_gas_price: 0.025, - low_gas_price: 0.025, - average_gas_price: 0.025, - high_gas_price: 0.025 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "desmos", + "status": "live", + "network_type": "mainnet", + "website": "https://desmos.network/", + "pretty_name": "Desmos", + "chain_id": "desmos-mainnet", + "bech32_prefix": "desmos", + "daemon_name": "desmos", + "node_home": "$HOME/.desmos", + "key_algos": [ + "secp256k1" + ], + "slip44": 852, + "fees": { + "fee_tokens": [ { - denom: 'udec' + "denom": "udsm", + "fixed_min_gas_price": 0.001, + "low_gas_price": 0.01, + "average_gas_price": 0.03, + "high_gas_price": 0.05 } ] }, - codebase: { - git_repo: 'https://github.com/Decentr-net/decentr', - recommended_version: 'v1.5.7', - compatible_versions: ['v1.5.7'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/Decentr-net/mainnets/master/3.0/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.5.7', - recommended_version: 'v1.5.7', - compatible_versions: ['v1.5.7'] + "denom": "udsm" } ] }, - 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' + "codebase": {}, + "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" }, - peers: { - seeds: [ + "apis": { + "rpc": [ { - id: '8a3485f940c3b2b9f0dd979a16ea28de154f14dd', - address: 'calliope.mainnet.decentr.xyz:26656', - provider: 'decentr' + "address": "https://rpc.mainnet.desmos.network", + "provider": "desmos" }, { - id: '3261bff0b7c16dcf6b5b8e62dd54faafbfd75415', - address: 'hera.mainnet.decentr.xyz:26656', - provider: 'decentr' + "address": "https://desmos-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - id: 'c37f32e202e13b0725515570f794b68573a6f58c', - address: 'hera.mainnet.decentr.xyz:26656', - provider: 'decentr' + "address": "https://desmos-rpc.ibs.team/", + "provider": "Inter Blockchain Services" }, { - id: '5f3cfa2e3d5ed2c2ef699c8593a3d93c902406a9', - address: 'hermes.mainnet.decentr.xyz:26656', - provider: 'decentr' + "address": "https://desmos-rpc.staketab.org:443", + "provider": "Staketab" }, { - id: 'a529801b5390f56d5c280eaff4ae95b7163e385f', - address: 'melpomene.mainnet.decentr.xyz:26656', - provider: 'decentr' + "address": "https://rpc.desmos.tcnetwork.io", + "provider": "TC Network" }, { - id: '385129dbe71bceff982204afa11ed7fa0ee39430', - address: 'poseidon.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: 'bd99693d0dbc855b0367f781fb48bf1ca6a6a58b', - address: 'zeus.mainnet.decentr.xyz:26656', - provider: 'decentr' - }, - { - id: '6bb349e1709da784d1628fa1f8bfc5cd00af974d', - address: 'seeds.badgerbite.io:16656', - provider: 'decentr' - }, - { - id: '3fb96f1619340507e7f28fd7c4b81f4cd3d9a7e7', - address: 'seeds-decentr.sxlzptprjkt.xyz:31656', - provider: 'sxlzptprjkt | VALIDATOR' - }, - { - id: '89f32d5e096eadddb1b3e6e839963503ef4d2d70', - address: 'rpc.decentr.nodexcapital.com:10856', - provider: 'NodeX Validator' - }, - { - id: '49963582499c44dc8e119b4112e2f7b227003333', - address: 'seed-node.mms.team:39656', - provider: 'MMS' + "address": "https://rpc.desmos.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - persistent_peers: [ - { - id: '6afae5a544d74a8581da932aaa6d483ce797a6b1', - address: '75.119.157.167:28656', - provider: 'Inter Blockchain Services' - }, + "rest": [ { - id: 'a6ebaed2c7972941b5cce5d94ec94a1352a600a4', - address: 'peers-decentr.sxlzptprjkt.xyz:31656', - provider: 'sxlzptprjkt | VALIDATOR' + "address": "https://api.mainnet.desmos.network", + "provider": "desmos" }, { - id: '05f4788f936aa0158eeb935d8857cc9d23e6683d', - address: '65.109.28.226:12656', - provider: 'Hexnodes' + "address": "https://desmos-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - id: '7678919ce37d6a8dc24a81c20ca8856147455670', - address: 'rpc.decentr.indonode.net:20656', - provider: 'Indonode' + "address": "https://desmos-api.ibs.team/", + "provider": "Inter Blockchain Services" }, { - id: '153656b1037e183368bbf9d03a6b97b1a3a9c976', - address: 'peer-decentr.mms.team:26656', - provider: 'MMS' + "address": "https://desmos-rest.staketab.org", + "provider": "Staketab" }, { - id: '0ec21d5e8c86973bfef04e66b2a0e5d6d3d86820', - address: '109.123.234.203:26656', - provider: 'MathNodes' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://poseidon.mainnet.decentr.xyz', - provider: 'decentr' - }, - { - address: 'https://rpc.decentr.chaintools.tech/', - provider: 'ChainTools' - }, - { - address: 'https://decentr-rpc.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://rest.desmos.tcnetwork.io", + "provider": "TC Network" }, { - address: 'https://rpc-dcntr.nodine.id/', - provider: 'Nodine.ID' - }, - { - address: 'https://rpc-decentr.mms.team/', - provider: 'MMS' + "address": "https://lcd.desmos.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ + "grpc": [ { - address: 'https://rest.mainnet.decentr.xyz', - provider: 'decentr' + "address": "desmos-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api.decentr.chaintools.tech/', - provider: 'ChainTools' + "address": "https://grpc-desmos.explorer.co.id", + "provider": "Nodine.ID" }, { - address: 'https://decentr-api.ibs.team/', - provider: 'Inter Blockchain Services' - } - ], - grpc: [ - { - address: 'https://grpc-decentr.sxlzptprjkt.xyz:443', - provider: 'sxlzptprjkt | VALIDATOR' + "address": "services.staketab.com:9043", + "provider": "Staketab" }, { - address: 'https://grpc.decentr.hexnodes.co', - provider: 'Hexnodes' + "address": "desmos.grpc.nodersteam.com:9121", + "provider": "[NODERS]TEAM" }, { - address: 'https://grpc.decentr.nodexcapital.com:443', - provider: 'NodeX Validator' + "address": "https://grpc-desmos.sr20de.xyz", + "provider": "Sr20de" }, { - address: 'grpc-decentr.mms.team:443', - provider: 'MMS' + "address": "https://grpc.desmos.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'decentr.net', - url: 'https://explorer.decentr.net', - tx_page: - 'https://explorer.decentr.net/transactions/${txHash}?networkId=mainnet' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/desmos", + "tx_page": "https://app.ezstaking.io/desmos/txs/${txHash}", + "account_page": "https://app.ezstaking.io/desmos/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/decentr/', - tx_page: 'https://ping.pub/decentr/tx/${txHash}' + "kind": "bigdipper", + "url": "https://bigdipper.live/desmos", + "tx_page": "https://bigdipper.live/desmos/transactions/${txHash}", + "account_page": "https://bigdipper.live/desmos/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/decentr', - tx_page: 'https://atomscan.com/decentr/transactions/${txHash}', - account_page: 'https://atomscan.com/decentr/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/desmos", + "tx_page": "https://www.mintscan.io/desmos/transactions/${txHash}", + "account_page": "https://www.mintscan.io/desmos/accounts/${accountAddress}" }, { - kind: 'Nodine.ID', - url: 'https://explorer.co.id/decentr', - tx_page: 'https://explorer.co.id/decentr/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/desmos", + "tx_page": "https://ping.pub/desmos/tx/${txHash}" }, { - kind: 'THE EXPLORER', - url: 'https://explorer.sxlzptprjkt.xyz/decentr', - tx_page: 'https://explorer.sxlzptprjkt.xyz/decentr/tx/${txHash}' + "kind": "atomscan", + "url": "https://atomscan.com/desmos", + "tx_page": "https://atomscan.com/desmos/transactions/${txHash}" }, { - kind: 'hexskrt EXPLORER', - url: 'https://explorer.hexskrt.net/decentr', - tx_page: 'https://explorer.hexskrt.net/decentr/tx/${txHash}' - }, + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/desmos", + "tx_page": "https://explorer.tcnetwork.io/desmos/transaction/${txHash}" + } + ], + "images": [ { - kind: 'NODEXPLORER', - url: 'https://explorer.nodexcapital.com/decentr', - tx_page: 'https://explorer.nodexcapital.com/decentr/tx/${txHash}' - }, - { - kind: 'Explorer ComunityNode', - url: 'https://explorer.comunitynode.my.id/decentr', - tx_page: 'https://explorer.comunitynode.my.id/decentr/tx/${txHash}' - } - ], - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'desmos', - status: 'live', - network_type: 'mainnet', - website: 'https://desmos.network/', - pretty_name: 'Desmos', - chain_id: 'desmos-mainnet', - bech32_prefix: 'desmos', - daemon_name: 'desmos', - node_home: '$HOME/.desmos', - key_algos: ['secp256k1'], - slip44: 852, - fees: { - fee_tokens: [ - { - denom: 'udsm', - fixed_min_gas_price: 0.001, - low_gas_price: 0.01, - average_gas_price: 0.03, - high_gas_price: 0.05 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'udsm' - } - ] - }, - codebase: { - git_repo: 'https://github.com/desmos-labs/desmos', - recommended_version: 'v6.2.1', - compatible_versions: ['v6.2.1'], - binaries: { - 'linux/amd64': - 'https://github.com/desmos-labs/desmos/releases/download/v6.2.1/desmos-6.2.1-linux-amd64' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/desmos-labs/mainnet/main/genesis.json' - }, - versions: [ - { - name: 'v4.8.0', - recommended_version: 'v4.8.1', - compatible_versions: ['v4.8.0', 'v4.8.1'], - binaries: { - 'linux/amd64': - 'https://github.com/desmos-labs/desmos/releases/download/v4.8.1/desmos-4.8.1-linux-amd64' - }, - next_version_name: 'v5.0.0' - }, - { - name: 'v5.0.0', - recommended_version: 'v5.1.0', - compatible_versions: ['v5.1.0'], - proposal: 28, - height: 9069645, - binaries: { - 'linux/amd64': - 'https://github.com/desmos-labs/desmos/releases/download/v5.1.0/desmos-5.1.0-linux-amd64' - }, - next_version_name: 'v5.2.0' - }, - { - name: 'v5.2.0', - recommended_version: 'v5.2.0', - compatible_versions: ['v5.2.0'], - proposal: 29, - height: 9259165, - binaries: { - 'linux/amd64': - 'https://github.com/desmos-labs/desmos/releases/download/v5.2.0/desmos-5.2.0-linux-amd64' - }, - next_version_name: 'v6' - }, - { - name: 'v6', - recommended_version: 'v6.1.1', - compatible_versions: ['v6.1.0', 'v6.1.1'], - proposal: 32, - height: 10213500, - binaries: { - 'linux/amd64': - 'https://github.com/desmos-labs/desmos/releases/download/v6.1.1/desmos-6.1.1-linux-amd64' - }, - next_version_name: 'v6.2.0' - }, - { - name: 'v6.2.0', - recommended_version: 'v6.2.1', - compatible_versions: ['v6.2.1'], - proposal: 36, - height: 11312575, - binaries: { - 'linux/amd64': - 'https://github.com/desmos-labs/desmos/releases/download/v6.2.1/desmos-6.2.1-linux-amd64' - }, - next_version_name: '' - } - ] - }, - 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' - }, - peers: { - seeds: [ - { - id: '5c86915026093f9a2f81e5910107cf14676b48fc', - address: 'seed-2.mainnet.desmos.network:26656', - provider: 'desmos' - }, - { - id: '45105c7241068904bdf5a32c86ee45979794637f', - address: 'seed-3.mainnet.desmos.network:26656', - provider: 'desmos' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:16256', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: '15b1f6b49a548e9f0d0855bd340199bce9140add', - address: 'seed-desmos.starsquid.io:15601', - provider: 'Starsquid' - }, - { - id: 'c071562db4d2ed2d22100b0d34ec4788f1b058cf', - address: 'seed-desmos.explorer.co.id:17656', - provider: 'Nodine.ID' - }, - { - id: 'b7c72e371caca2e5287c0d9a68bfcdabc93fc664', - address: 'seed-desmos.ibs.team:16658', - provider: 'Inter Blockchain Services' - } - ], - persistent_peers: [ - { - id: 'e8ff89b51d9fbf594e7f9237f01a6a2f19c44725', - address: '65.21.91.99:36656', - provider: 'Staketab' - }, - { - id: '311cfd5691f11ec0cb0f0b8e5303016d86fb4789', - address: '148.251.19.41:26656', - provider: '[NODERS]TEAM' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://rpc.mainnet.desmos.network', - provider: 'desmos' - }, - { - address: 'https://desmos-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' - }, - { - address: 'https://desmos-rpc.ibs.team/', - provider: 'Inter Blockchain Services' - }, - { - address: 'https://desmos-rpc.staketab.org:443', - provider: 'Staketab' - }, - { - address: 'https://rpc.desmos.tcnetwork.io', - provider: 'TC Network' - }, - { - address: 'https://rpc.desmos.bronbro.io:443', - provider: 'Bro_n_Bro' - } - ], - rest: [ - { - address: 'https://api.mainnet.desmos.network', - provider: 'desmos' - }, - { - address: 'https://desmos-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' - }, - { - address: 'https://desmos-api.ibs.team/', - provider: 'Inter Blockchain Services' - }, - { - address: 'https://desmos-rest.staketab.org', - provider: 'Staketab' - }, - { - address: 'https://rest.desmos.tcnetwork.io', - provider: 'TC Network' - }, - { - address: 'https://lcd.desmos.bronbro.io:443', - provider: 'Bro_n_Bro' - } - ], - grpc: [ - { - address: 'desmos-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' - }, - { - address: 'https://grpc-desmos.explorer.co.id', - provider: 'Nodine.ID' - }, - { - address: 'services.staketab.com:9043', - provider: 'Staketab' - }, - { - address: 'desmos.grpc.nodersteam.com:9121', - provider: '[NODERS]TEAM' - }, - { - address: 'https://grpc-desmos.sr20de.xyz', - provider: 'Sr20de' - }, - { - address: 'https://grpc.desmos.bronbro.io:443', - provider: 'Bro_n_Bro' - } - ] - }, - explorers: [ - { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/desmos', - tx_page: 'https://app.ezstaking.io/desmos/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/desmos/account/${accountAddress}' - }, - { - kind: 'bigdipper', - url: 'https://bigdipper.live/desmos', - tx_page: 'https://bigdipper.live/desmos/transactions/${txHash}', - account_page: 'https://bigdipper.live/desmos/accounts/${accountAddress}' - }, - { - kind: 'mintscan', - url: 'https://www.mintscan.io/desmos', - tx_page: 'https://www.mintscan.io/desmos/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/desmos/accounts/${accountAddress}' - }, - { - 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: 'TC Network', - url: 'https://explorer.tcnetwork.io/desmos', - tx_page: 'https://explorer.tcnetwork.io/desmos/transaction/${txHash}' - } + "$schema": "../chain.schema.json", + "chain_name": "dig", + "status": "live", + "network_type": "mainnet", + "website": "https://digchain.org/", + "pretty_name": "Dig Chain", + "chain_id": "dig-1", + "bech32_prefix": "dig", + "daemon_name": "digd", + "node_home": "$HOME/.dig", + "key_algos": [ + "secp256k1", + "ethsecp256k1" ], - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' - } - ] - }, - { - $schema: '../chain.schema.json', - chain_name: 'dig', - status: 'live', - network_type: 'mainnet', - website: 'https://digchain.org/', - pretty_name: 'Dig Chain', - chain_id: 'dig-1', - bech32_prefix: 'dig', - daemon_name: 'digd', - node_home: '$HOME/.dig', - key_algos: ['secp256k1', 'ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'udig', - low_gas_price: 0.025, - average_gas_price: 0.03, - high_gas_price: 0.035 - } - ] - }, - staking: { - staking_tokens: [ + "extra_codecs": [ + "ethermint" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'udig' + "denom": "udig", + "low_gas_price": 0.025, + "average_gas_price": 0.03, + "high_gas_price": 0.035 } ] }, - codebase: { - git_repo: 'https://github.com/notional-labs/dig', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/notional-labs/dig/master/networks/mainnets/dig-1/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'] + "denom": "udig" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' - }, - peers: { - seeds: [], - persistent_peers: [ - { - id: '64eccffdc60a206227032d3a021fbf9dfc686a17', - address: '194.163.156.84:26656' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc-1-dig.notional.ventures' + "address": "https://rpc-1-dig.notional.ventures" }, { - address: 'https://rpc-dig-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-dig-ia.cosmosia.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.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-dig-ia.cosmosia.notional.ventures/", + "provider": "Notional" } ], - grpc: [ + "grpc": [ { - address: 'grpc-dig-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-dig-ia.cosmosia.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}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/dig', - tx_page: 'https://explorer.tcnetwork.io/dig/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/dig", + "tx_page": "https://explorer.tcnetwork.io/dig/transaction/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'doravota', - chain_id: 'vota-ash', - pretty_name: 'Dora Vota', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'dora', - daemon_name: 'dorad', - node_home: '$HOME/.dora', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'peaka', - fixed_min_gas_price: 100000000000, - low_gas_price: 100000000000, - average_gas_price: 100000000000, - high_gas_price: 100000000000 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "doravota", + "chain_id": "vota-ash", + "pretty_name": "Dora Vota", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "dora", + "daemon_name": "dorad", + "node_home": "$HOME/.dora", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'peaka' + "denom": "peaka", + "fixed_min_gas_price": 100000000000, + "low_gas_price": 100000000000, + "average_gas_price": 100000000000, + "high_gas_price": 100000000000 } ] }, - codebase: { - git_repo: 'https://github.com/dorafactory/doravota', - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - binaries: {}, - genesis: { - genesis_url: - 'https://github.com/DoraFactory/doravota/blob/main/config/mainnet/genesis.json' - }, - versions: [ - { - name: 'v9.0.1', - recommended_version: 'v9.0.1', - compatible_versions: ['v9.0.1'], - binaries: {} - }, - { - name: 'v10.0.1', - recommended_version: 'v10.0.1', - compatible_versions: ['v10.0.1'], - binaries: {} - }, + "staking": { + "staking_tokens": [ { - name: 'v11', - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - binaries: {} + "denom": "peaka" } ] }, - peers: { - seeds: [], - persistent_peers: [] - }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://vota-rpc.dorafactory.org/', - provider: 'dorafactory' + "address": "https://vota-rpc.dorafactory.org/", + "provider": "dorafactory" } ], - rest: [ + "rest": [ { - address: 'https://vota-rest.dorafactory.org', - provider: 'dorafactory' + "address": "https://vota-rest.dorafactory.org", + "provider": "dorafactory" } ], - grpc: [ + "grpc": [ { - address: 'vota-grpc.dorafactory.org:443', - provider: 'dorafactory' + "address": "vota-grpc.dorafactory.org:443", + "provider": "dorafactory" } ] }, - explorers: [ + "explorers": [ { - kind: 'Dora Vota Ping Pub', - url: 'https://vota-explorer.dorafactory.org', - tx_page: 'https://vota-explorer.dorafactory.org/doravota/tx/${txHash}' + "kind": "Dora Vota Ping Pub", + "url": "https://vota-explorer.dorafactory.org", + "tx_page": "https://vota-explorer.dorafactory.org/doravota/tx/${txHash}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'dydx', - status: 'live', - website: 'https://dydx.trade/', - network_type: 'mainnet', - pretty_name: 'dYdX Protocol', - chain_id: 'dydx-mainnet-1', - bech32_prefix: 'dydx', - daemon_name: 'dydxprotocold', - node_home: '$HOME/.dydxprotocol', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "dydx", + "status": "live", + "website": "https://dydx.trade/", + "network_type": "mainnet", + "pretty_name": "dYdX Protocol", + "chain_id": "dydx-mainnet-1", + "bech32_prefix": "dydx", + "daemon_name": "dydxprotocold", + "node_home": "$HOME/.dydxprotocol", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'adydx', - fixed_min_gas_price: 12500000000, - low_gas_price: 12500000000, - average_gas_price: 12500000000, - high_gas_price: 20000000000 + "denom": "adydx", + "fixed_min_gas_price": 12500000000, + "low_gas_price": 12500000000, + "average_gas_price": 12500000000, + "high_gas_price": 20000000000 }, { - denom: - 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5', - fixed_min_gas_price: 0.025, - low_gas_price: 0.025, - average_gas_price: 0.025, - high_gas_price: 0.03 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'adydx' + "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } ] }, - codebase: { - git_repo: 'https://github.com/dydxprotocol/v4-chain/', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - cosmos_sdk_version: 'v0.47.4', - cosmwasm_enabled: false, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/dydxopsdao/networks/main/dydx-mainnet-1/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v2', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - cosmos_sdk_version: 'v0.47.4' + "denom": "adydx" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "codebase": { + "cosmos_sdk_version": "v0.47.4", + "cosmwasm_enabled": false }, - description: - 'Our goal is to build open source code that can power a first class product and trading experience.', - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:23856', - provider: 'Polkachu' - }, - { - id: '65b740ee326c9260c30af1f044e9cda63c73f7c1', - address: 'seeds.kingnodes.net:23856', - provider: 'KingNodes' - }, - { - id: 'f04a77b92d0d86725cdb2d6b7a7eb0eda8c27089', - address: 'dydx-mainnet-seed.bwarelabs.com:36656', - provider: 'Bware Labs' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:23856', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'c2c2fcb5e6e4755e06b83b499aff93e97282f8e8', - address: 'tenderseed.ccvalidators.com:26401', - provider: 'CryptoCrew' - }, - { - id: '4f20c3e303c9515051b6276aeb89c0b88ee79f8f', - address: 'seed.dydx.cros-nest.com:26656', - provider: 'Crosnest' - }, - { - id: 'a9cae4047d5c34772442322b10ef5600d8e54900', - address: 'dydx-mainnet-seednode.allthatnode.com:26656', - provider: 'DSRV' - }, - { - id: '802607c6db8148b0c68c8a9ec1a86fd3ba606af6', - address: '64.227.38.88:26656', - provider: 'Luganodes' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'dydx.rpc.kjnodes.com:17059', - provider: 'kjnodes' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: '4c30c8a95e26b07b249813b677caab28bf0c54eb', - address: 'rpc.dydx.nodestake.top:666', - provider: 'NodeStake' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'dydx-mainnet-seed.autostake.com:27366', - provider: 'AutoStake ⚡ 0% fee > Airdrops 🪂💰' - }, - { - id: '09ba537d6563018b97c502979c3478df4decf426', - address: 'dydxprotocol-seed.genznodes.dev:22656', - provider: 'genznodes' - } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'dydx-mainnet-peer.autostake.com:27366', - provider: 'AutoStake ⚡ 0% fee > Airdrops 🪂💰' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" }, - apis: { - rpc: [ + "description": "Our goal is to build open source code that can power a first class product and trading experience.", + "apis": { + "rpc": [ { - address: 'https://community.nuxian-node.ch:6797/dydx/trpc', - provider: 'PRO Delegators' + "address": "https://community.nuxian-node.ch:6797/dydx/trpc", + "provider": "PRO Delegators" }, { - address: 'https://dydx-dao-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://dydx-dao-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://dydx-mainnet-full-rpc.public.blastapi.io', - provider: 'Bware Labs' + "address": "https://dydx-mainnet-full-rpc.public.blastapi.io", + "provider": "Bware Labs" }, { - address: 'https://dydx-rpc.kingnodes.com:443', - provider: 'Kingnodes' + "address": "https://dydx-rpc.kingnodes.com:443", + "provider": "Kingnodes" }, { - address: 'https://dydx-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://dydx-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://dydx-mainnet-rpc.autostake.com:443', - provider: 'AutoStake ⚡ 0% fee > Airdrops 🪂💰' + "address": "https://dydx-mainnet-rpc.autostake.com:443", + "provider": "AutoStake ⚡ 0% fee > Airdrops 🪂💰" }, { - address: 'https://rpc-dydx.ecostake.com:443', - provider: 'ecostake' + "address": "https://rpc-dydx.ecostake.com:443", + "provider": "ecostake" }, { - address: 'https://rpc.dydx.nodestake.top:443', - provider: 'NodeStake' + "address": "https://rpc.dydx.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://rpc-dydx.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-dydx.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://dydx-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://dydx-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://rpc-dydx.cros-nest.com:443', - provider: 'Crosnest' + "address": "https://rpc-dydx.cros-nest.com:443", + "provider": "Crosnest" }, { - address: 'https://dydx-rpc.enigma-validator.com', - provider: 'Enigma' + "address": "https://dydx-rpc.enigma-validator.com", + "provider": "Enigma" } ], - rest: [ + "rest": [ { - address: 'https://community.nuxian-node.ch:6797/dydx/crpc', - provider: 'PRO Delegators' + "address": "https://community.nuxian-node.ch:6797/dydx/crpc", + "provider": "PRO Delegators" }, { - address: 'https://dydx-dao-api.polkachu.com', - provider: 'Polkachu' + "address": "https://dydx-dao-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://dydx-mainnet-full-lcd.public.blastapi.io', - provider: 'Bware Labs' + "address": "https://dydx-mainnet-full-lcd.public.blastapi.io", + "provider": "Bware Labs" }, { - address: 'https://dydx-rest.kingnodes.com:443', - provider: 'Kingnodes' + "address": "https://dydx-rest.kingnodes.com:443", + "provider": "Kingnodes" }, { - address: 'https://dydx-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://dydx-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://dydx-mainnet-lcd.autostake.com:443', - provider: 'AutoStake ⚡ 0% fee > Airdrops 🪂💰' + "address": "https://dydx-mainnet-lcd.autostake.com:443", + "provider": "AutoStake ⚡ 0% fee > Airdrops 🪂💰" }, { - address: 'https://rest-dydx.ecostake.com:443', - provider: 'ecostake' + "address": "https://rest-dydx.ecostake.com:443", + "provider": "ecostake" }, { - address: 'https://api-dydx.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-dydx.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://api.dydx.nodestake.top:443', - provider: 'NodeStake' + "address": "https://api.dydx.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://dydx-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://dydx-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://rest-dydx.cros-nest.com:443', - provider: 'Crosnest' + "address": "https://rest-dydx.cros-nest.com:443", + "provider": "Crosnest" }, { - address: 'https://dydx-lcd.enigma-validator.com', - provider: 'Enigma' + "address": "https://dydx-lcd.enigma-validator.com", + "provider": "Enigma" } ], - grpc: [ + "grpc": [ { - address: 'dydx-dao-grpc-1.polkachu.com:23890', - provider: 'Polkachu (1)' + "address": "dydx-dao-grpc-1.polkachu.com:23890", + "provider": "Polkachu (1)" }, { - address: 'dydx-dao-grpc-2.polkachu.com:23890', - provider: 'Polkachu (2)' + "address": "dydx-dao-grpc-2.polkachu.com:23890", + "provider": "Polkachu (2)" }, { - address: 'dydx-dao-grpc-3.polkachu.com:23890', - provider: 'Polkachu (3)' + "address": "dydx-dao-grpc-3.polkachu.com:23890", + "provider": "Polkachu (3)" }, { - address: 'dydx-dao-grpc-4.polkachu.com:23890', - provider: 'Polkachu (4)' + "address": "dydx-dao-grpc-4.polkachu.com:23890", + "provider": "Polkachu (4)" }, { - address: 'dydx-dao-grpc-5.polkachu.com:23890', - provider: 'Polkachu (5)' + "address": "dydx-dao-grpc-5.polkachu.com:23890", + "provider": "Polkachu (5)" }, { - address: 'dydx-mainnet-full-grpc.public.blastapi.io:443', - provider: 'Bware Labs' + "address": "dydx-mainnet-full-grpc.public.blastapi.io:443", + "provider": "Bware Labs" }, { - address: 'https://dydx-grpc.kingnodes.com:443', - provider: 'Kingnodes' + "address": "https://dydx-grpc.kingnodes.com:443", + "provider": "Kingnodes" }, { - address: 'https://dydx-grpc.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://dydx-grpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'dydx-mainnet-grpc.autostake.com:443', - provider: 'AutoStake ⚡ 0% fee > Airdrops 🪂💰' + "address": "dydx-mainnet-grpc.autostake.com:443", + "provider": "AutoStake ⚡ 0% fee > Airdrops 🪂💰" }, { - address: 'https://grpc.dydx.nodestake.top', - provider: 'NodeStake' + "address": "https://grpc.dydx.nodestake.top", + "provider": "NodeStake" }, { - address: 'dydx.grpc.kjnodes.com:443', - provider: 'kjnodes' + "address": "dydx.grpc.kjnodes.com:443", + "provider": "kjnodes" }, { - address: 'grpc-dydx.cosmos-spaces.cloud:4990', - provider: 'Cosmos Spaces' + "address": "grpc-dydx.cosmos-spaces.cloud:4990", + "provider": "Cosmos Spaces" }, { - address: 'dydx-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "dydx-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/dydx', - tx_page: 'https://www.mintscan.io/dydx/txs/${txHash}', - account_page: 'https://www.mintscan.io/dydx/account/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/dydx", + "tx_page": "https://www.mintscan.io/dydx/txs/${txHash}", + "account_page": "https://www.mintscan.io/dydx/account/${accountAddress}" }, { - kind: 'NodeStake', - url: 'https://explorer.nodestake.top/dydx/', - tx_page: 'https://explorer.nodestake.top/dydx/txs/${txHash}', - account_page: - 'https://explorer.nodestake.top/dydx/account/${accountAddress}' + "kind": "NodeStake", + "url": "https://explorer.nodestake.top/dydx/", + "tx_page": "https://explorer.nodestake.top/dydx/txs/${txHash}", + "account_page": "https://explorer.nodestake.top/dydx/account/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/dydx', - tx_page: 'https://explorer.tcnetwork.io/dydx/transaction/${txHash}', - account_page: - 'https://explorer.tcnetwork.io/dydx/account/${accountAddress}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/dydx", + "tx_page": "https://explorer.tcnetwork.io/dydx/transaction/${txHash}", + "account_page": "https://explorer.tcnetwork.io/dydx/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'dyson', - website: 'https://dysonprotocol.com/', - status: 'live', - network_type: 'mainnet', - pretty_name: 'Dyson Protocol', - chain_id: 'dyson-mainnet-01', - bech32_prefix: 'dys', - node_home: '$HOME/.dyson', - daemon_name: 'dysond', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'dys', - low_gas_price: 0.0001, - average_gas_price: 0.0002, - high_gas_price: 0.0003 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "dyson", + "website": "https://dysonprotocol.com/", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Dyson Protocol", + "chain_id": "dyson-mainnet-01", + "bech32_prefix": "dys", + "node_home": "$HOME/.dyson", + "daemon_name": "dysond", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'dys' + "denom": "dys", + "low_gas_price": 0.0001, + "average_gas_price": 0.0002, + "high_gas_price": 0.0003 } ] }, - codebase: { - git_repo: 'https://gitlab.com/dysonproject/dyson', - recommended_version: 'v0.0.2-bebf2e98', - compatible_versions: ['v0.0.2-bebf2e98'], - genesis: { - genesis_url: - 'https://gitlab.com/dysonproject/dyson-deploy/-/raw/develop/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.0.2-bebf2e98', - recommended_version: 'v0.0.2-bebf2e98', - compatible_versions: ['v0.0.2-bebf2e98'] + "denom": "dys" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dyson.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dyson.svg' - }, - peers: { - seeds: [], - persistent_peers: [ - { - id: 'b1fd06f7f129ad6bf66635b7068931cf0fb68497', - address: '161.97.91.203:27656', - provider: 'genznodes' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dyson.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dyson.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://dys-tm.dysonprotocol.com:443', - provider: 'dysonprotocol' + "address": "https://dys-tm.dysonprotocol.com:443", + "provider": "dysonprotocol" }, { - address: 'https://dyson-rpc.cogwheel.zone:443', - provider: 'cogwheel' + "address": "https://dyson-rpc.cogwheel.zone:443", + "provider": "cogwheel" } ], - rest: [ + "rest": [ { - address: 'https://dys-api.dysonprotocol.com:443', - provider: 'dysonprotocol' + "address": "https://dys-api.dysonprotocol.com:443", + "provider": "dysonprotocol" }, { - address: 'https://dyson-api.cogwheel.zone:443', - provider: 'cogwheel' + "address": "https://dyson-api.cogwheel.zone:443", + "provider": "cogwheel" } ], - grpc: [ + "grpc": [ { - address: 'dys-grpc.dyson.lol:443', - provider: 'lol' + "address": "dys-grpc.dyson.lol:443", + "provider": "lol" }, { - address: 'https://dyson-grpc.cogwheel.zone:443', - provider: 'cogwheel' + "address": "https://dyson-grpc.cogwheel.zone:443", + "provider": "cogwheel" } ] }, - explorers: [ + "explorers": [ { - kind: 'dysonprotocol', - url: 'https://explorer.dys.dysonprotocol.com/dyson/', - tx_page: 'https://explorer.dys.dysonprotocol.com/dyson/tx/${txHash}', - account_page: - 'https://explorer.dys.dysonprotocol.com/dyson/account/${accountAddress}' + "kind": "dysonprotocol", + "url": "https://explorer.dys.dysonprotocol.com/dyson/", + "tx_page": "https://explorer.dys.dysonprotocol.com/dyson/tx/${txHash}", + "account_page": "https://explorer.dys.dysonprotocol.com/dyson/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dyson.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dyson.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dyson.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dyson.svg" } ] }, { - $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', - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'aechelon', - low_gas_price: 10000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_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' - }, - genesis: { - genesis_url: - 'https://gist.githubusercontent.com/echelonfoundation/ee862f58850fc1b5ee6a6fdccc3130d2/raw/55c2c4ea2fee8a9391d0dc55b2c272adb804054a/genesis.json' - }, - versions: [ - { - name: 'v1.1.4', - 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", + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "aechelon", + "low_gas_price": 10000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/echelon.svg' + "staking": { + "staking_tokens": [ + { + "denom": "aechelon" + } + ] }, - peers: { - seeds: [], - persistent_peers: [] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/echelon.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://ech01trpc.mindheartsoul.org', - provider: 'Mind Heart Soul' + "address": "https://ech01trpc.mindheartsoul.org", + "provider": "Mind Heart Soul" }, { - address: 'https://rpc.echjoker.lol', - provider: '⚡ Echelon Joker ⚛ 🃏' + "address": "https://rpc.echjoker.lol", + "provider": "⚡ Echelon Joker ⚛ 🃏" } ], - rest: [ + "rest": [ { - address: 'https://ech01api.mindheartsoul.org', - provider: 'Mind Heart Soul' + "address": "https://ech01api.mindheartsoul.org", + "provider": "Mind Heart Soul" }, { - address: 'https://api.echjoker.lol', - provider: '⚡ Echelon Joker ⚛ 🃏' + "address": "https://api.echjoker.lol", + "provider": "⚡ Echelon Joker ⚛ 🃏" } ], - grpc: [], - 'evm-http-jsonrpc': [ + "grpc": [], + "evm-http-jsonrpc": [ { - address: 'https://ech01jrpc.mindheartsoul.org', - provider: 'Mind Heart Soul' + "address": "https://ech01jrpc.mindheartsoul.org", + "provider": "Mind Heart Soul" }, { - address: 'https://jrpc.echjoker.lol', - provider: '⚡ Echelon Joker ⚛ 🃏' + "address": "https://jrpc.echjoker.lol", + "provider": "⚡ Echelon Joker ⚛ 🃏" } ] }, - 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/transactions/${txHash}', - account_page: 'https://atomscan.com/echelon/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/echelon", + "tx_page": "https://atomscan.com/echelon/transactions/${txHash}", + "account_page": "https://atomscan.com/echelon/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/logo.png', - 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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/echelon.svg" } ] }, { - $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', - 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", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ungm', - low_gas_price: 1, - average_gas_price: 1, - high_gas_price: 1 + "denom": "ungm", + "low_gas_price": 1, + "average_gas_price": 1, + "high_gas_price": 1 }, { - denom: 'eeur', - low_gas_price: 1, - average_gas_price: 1, - high_gas_price: 1 + "denom": "eeur", + "low_gas_price": 1, + "average_gas_price": 1, + "high_gas_price": 1 }, { - denom: 'echf', - low_gas_price: 1, - average_gas_price: 1, - high_gas_price: 1 + "denom": "echf", + "low_gas_price": 1, + "average_gas_price": 1, + "high_gas_price": 1 }, { - denom: 'enok', - low_gas_price: 1, - average_gas_price: 1, - high_gas_price: 1 + "denom": "enok", + "low_gas_price": 1, + "average_gas_price": 1, + "high_gas_price": 1 }, { - denom: 'esek', - low_gas_price: 1, - average_gas_price: 1, - high_gas_price: 1 + "denom": "esek", + "low_gas_price": 1, + "average_gas_price": 1, + "high_gas_price": 1 }, { - denom: 'edkk', - low_gas_price: 1, - average_gas_price: 1, - high_gas_price: 1 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ungm' + "denom": "edkk", + "low_gas_price": 1, + "average_gas_price": 1, + "high_gas_price": 1 } ] }, - codebase: { - git_repo: 'https://github.com/e-money/em-ledger', - recommended_version: 'v1.1.3', - compatible_versions: ['v1.1.3'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/e-money/networks/master/emoney-3/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.1.3', - recommended_version: 'v1.1.3', - compatible_versions: ['v1.1.3'] + "denom": "ungm" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' - }, - peers: { - seeds: [ - { - id: 'eb491498b8f91a02090c2feb7ad875df4087772e', - address: 'seeds.goldenratiostaking.net:1625', - provider: 'Golden Ratio Staking' - }, - { - id: 'ecec8933d80da5fccda6bdd72befe7e064279fc1', - address: '207.180.213.123:26676', - provider: 'easy2stake' - }, - { - id: '1723e34f45f54584f44d193ce9fd9c65271ca0b3', - address: '13.124.62.83:26656', - provider: 'B-Harvest' - }, - { - id: '34eca4a9142bf9c087a987b572c114dad67a8cc5', - address: '172.105.148.191:26656', - provider: 'Cat Boss' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'emoney-mainnet-seed.autostake.com:26746', - provider: 'AutoStake 🛡️ Slash Protected' - } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'emoney-mainnet-peer.autostake.com:26746', - provider: 'AutoStake 🛡️ Slash Protected' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://emoney.validator.network', - provider: 'e-Money' + "address": "https://emoney.validator.network", + "provider": "e-Money" }, { - address: 'https://rpc-emoney-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-emoney-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc.emoney.bh.rocks', - provider: 'BlockHunters 🎯' + "address": "https://rpc.emoney.bh.rocks", + "provider": "BlockHunters 🎯" } ], - rest: [ + "rest": [ { - address: 'https://emoney.validator.network/api/', - provider: 'e-Money' + "address": "https://emoney.validator.network/api/", + "provider": "e-Money" }, { - address: 'https://api-emoney-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-emoney-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://api.emoney.bh.rocks', - provider: 'BlockHunters 🎯' + "address": "https://api.emoney.bh.rocks", + "provider": "BlockHunters 🎯" } ], - grpc: [ + "grpc": [ { - address: 'grpc-emoney-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-emoney-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'emoney-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "emoney-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/emoney', - tx_page: 'https://app.ezstaking.io/emoney/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/emoney/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/emoney", + "tx_page": "https://app.ezstaking.io/emoney/txs/${txHash}", + "account_page": "https://app.ezstaking.io/emoney/account/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/emoney', - tx_page: 'https://bigdipper.live/emoney/transactions/${txHash}', - account_page: 'https://bigdipper.live/emoney/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/emoney", + "tx_page": "https://bigdipper.live/emoney/transactions/${txHash}", + "account_page": "https://bigdipper.live/emoney/accounts/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/emoney', - tx_page: 'https://www.mintscan.io/emoney/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/emoney/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/emoney", + "tx_page": "https://www.mintscan.io/emoney/transactions/${txHash}", + "account_page": "https://www.mintscan.io/emoney/accounts/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/emoney/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/emoney", + "tx_page": "https://atomscan.com/emoney/transactions/${txHash}", + "account_page": "https://atomscan.com/emoney/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'empowerchain', - chain_id: 'empowerchain-1', - pretty_name: 'EmpowerChain', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'empower', - daemon_name: 'empowerd', - node_home: '$HOME/.empowerchain', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'umpwr', - fixed_min_gas_price: 0, - low_gas_price: 0.025, - average_gas_price: 0.025, - high_gas_price: 0.03 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'umpwr' - } - ] - }, - codebase: { - git_repo: 'https://github.com/EmpowerPlastic/empowerchain', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - genesis: { - genesis_url: - 'https://github.com/EmpowerPlastic/empowerchain/raw/main/mainnet/empowerchain-1/genesis.tar.gz' - }, - versions: [ + "$schema": "../chain.schema.json", + "chain_name": "empowerchain", + "chain_id": "empowerchain-1", + "pretty_name": "EmpowerChain", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "empower", + "daemon_name": "empowerd", + "node_home": "$HOME/.empowerchain", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'] + "denom": "umpwr", + "fixed_min_gas_price": 0, + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } ] }, - peers: { - seeds: [ - { - id: 'f2ed98cf518b501b6d1c10c4a16d0dfbc4a9cc98', - address: 'tenderseed.ccvalidators.com:27001' - }, - { - id: 'e16668ddd526f4e114ebb6c4714f0c18c0add8f8', - address: 'empower-seed.zenscape.one:26656' - }, - { - id: '6740fa259552a628266a85de8c2a3dee7702b8f9', - address: 'empower-mainnet-seed.itrocket.net:14656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'empowerchain-mainnet-seed.autostake.com:27326', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'a1427b456513ab70967a2a5c618d347bc89e8848', - address: 'seed.empowerchain.io:26656' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:17456', - provider: 'WhisperNode 🤐' - }, - { - id: '9aa8a73ea9364aa3cf7806d4dd25b6aed88d8152', - address: 'empowerchain.seed.mzonder.com:12156', - provider: 'MZONDER' - } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'empowerchain-mainnet-peer.autostake.com:27326', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '178718a993161cc20f9d0de2bbef9a3aec5c1d3d', - address: 'rpc.empower.indonode.net:52656', - provider: 'Indonode' - }, - { - id: '192d6c396fe0f9da1b1b700aab8bdd1ce6a49490', - address: 'empw-m.peers.stavr.tech:22056', - provider: '🔥STAVR🔥' - }, - { - id: 'a5ce71892959a23ed941cb0167f28959b6694ea3', - address: 'rpc-empower.vinjan.xyz:24656', - provider: 'vinjan' - }, - { - id: '60b046f36fe485fb40cb8ece99e14244141de3cc', - address: 'mainnet-empower.konsortech.xyz:27656', - provider: 'KonsorTech' - }, + "staking": { + "staking_tokens": [ { - id: 'f7eb23352efa7aba7ba9aa56fe034ede139deab3', - address: 'empower.peer.stakevillage.net:16856', - provider: 'Stake Village' + "denom": "umpwr" } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc-empowerchain.ecostake.com:443', - provider: 'ecostake' + "address": "https://rpc-empowerchain.ecostake.com:443", + "provider": "ecostake" }, { - address: 'https://empowerchain-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://empowerchain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://empower.rpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://empower.rpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'http://empw.rpc.m.stavr.tech:22057', - provider: '🔥STAVR🔥' + "address": "http://empw.rpc.m.stavr.tech:22057", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc-empower.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-empower.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://rpc-empowerchain.mzonder.com:443', - provider: 'MZONDER' + "address": "https://rpc-empowerchain.mzonder.com:443", + "provider": "MZONDER" }, { - address: 'https://empower-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://empower-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://rpc-empower.vinjan.xyz:443', - provider: 'vinjan' + "address": "https://rpc-empower.vinjan.xyz:443", + "provider": "vinjan" }, { - address: 'https://rpc.empower.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.empower.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://mainnet-empower-rpc.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-empower-rpc.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://empower.rpc.stakevillage.net:443', - provider: 'Stake Village' + "address": "https://empower.rpc.stakevillage.net:443", + "provider": "Stake Village" }, { - address: 'https://rpc.empowerchain.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.empowerchain.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ + "rest": [ { - address: 'https://rest-empowerchain.ecostake.com:443', - provider: 'ecostake' + "address": "https://rest-empowerchain.ecostake.com:443", + "provider": "ecostake" }, { - address: 'https://empowerchain-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://empowerchain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://empower.api.liveraven.net', - provider: 'LiveRaveN' + "address": "https://empower.api.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://empw.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://empw.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://empower-api.w3coins.io', - provider: 'w3coins' + "address": "https://empower-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://lcd-empower.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-empower.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://api-empower.vinjan.xyz:443', - provider: 'vinjan' + "address": "https://api-empower.vinjan.xyz:443", + "provider": "vinjan" }, { - address: 'https://api.empower.nodestake.top', - provider: 'NodeStake' + "address": "https://api.empower.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://mainnet-empower-api.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-empower-api.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://empower.api.stakevillage.net', - provider: 'Stake Village' + "address": "https://empower.api.stakevillage.net", + "provider": "Stake Village" }, { - address: 'https://lcd.empowerchain.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.empowerchain.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'empowerchain-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "empowerchain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://empower.grpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://empower.grpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'empower-grpc.w3coins.io:17390', - provider: 'w3coins' + "address": "empower-grpc.w3coins.io:17390", + "provider": "w3coins" }, { - address: 'grpc-empowerchain.mzonder.com:443', - provider: 'MZONDER' + "address": "grpc-empowerchain.mzonder.com:443", + "provider": "MZONDER" }, { - address: 'http://empw.grpc.m.stavr.tech:9141', - provider: '🔥STAVR🔥' + "address": "http://empw.grpc.m.stavr.tech:9141", + "provider": "🔥STAVR🔥" }, { - address: 'grpc-empower.vinjan.xyz', - provider: 'vinjan' + "address": "grpc-empower.vinjan.xyz", + "provider": "vinjan" }, { - address: 'https://grpc.empower.nodestake.top:443', - provider: 'NodeStake' + "address": "https://grpc.empower.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'empower.grpc.stakevillage.net:16890', - provider: 'Stake Village' + "address": "empower.grpc.stakevillage.net:16890", + "provider": "Stake Village" }, { - address: 'https://grpc.empowerchain.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.empowerchain.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Empower-Mainnet', - tx_page: 'https://explorer.stavr.tech/Empower-Mainnet/txs/${txHash}', - account_page: - 'https://explorer.stavr.tech/Empower-Mainnet/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Empower-Mainnet", + "tx_page": "https://explorer.stavr.tech/Empower-Mainnet/txs/${txHash}", + "account_page": "https://explorer.stavr.tech/Empower-Mainnet/account/${accountAddress}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/empower', - tx_page: 'https://explorer.nodestake.top/empower/tx/${txHash}', - account_page: - 'https://explorer.nodestake.top/empower/account/{$accountAddress}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/empower", + "tx_page": "https://explorer.nodestake.top/empower/tx/${txHash}", + "account_page": "https://explorer.nodestake.top/empower/account/{$accountAddress}" }, { - kind: 'Stake Village', - url: 'https://exp.stakevillage.net/empower', - tx_page: 'https://exp.stakevillage.net/empower/tx/${txHash}', - account_page: - 'https://exp.stakevillage.net/empower/account/${accountAddress}' + "kind": "Stake Village", + "url": "https://exp.stakevillage.net/empower", + "tx_page": "https://exp.stakevillage.net/empower/tx/${txHash}", + "account_page": "https://exp.stakevillage.net/empower/account/${accountAddress}" } ] }, { - $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', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ + "$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", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'aRYT' + "denom": "aRYT" } ] }, - 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: 'ethos-grpc.provable.dev:443', - provider: 'laurel.provable' + "address": "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' - }, - codebase: { - genesis: { - genesis_url: '' - } + "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" }, - images: [ + "codebase": {}, + "images": [ { - 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' + "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', - website: 'https://evmos.org/', - pretty_name: 'Evmos', - chain_id: 'evmos_9001-2', - bech32_prefix: 'evmos', - node_home: '$HOME/.evmosd', - daemon_name: 'evmosd', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'aevmos', - fixed_min_gas_price: 250000000, - low_gas_price: 20000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'aevmos' - } - ] - }, - codebase: { - git_repo: 'https://github.com/evmos/evmos', - recommended_version: 'v16.0.2', - compatible_versions: ['v16.0.0', 'v16.0.1', 'v16.0.2'], - cosmos_sdk_version: 'v0.47.5-evmos.2', - consensus: { - type: 'cometbft', - version: 'v0.37.3-0.20230920093934-46df7b597e3c' - }, - ibc_go_version: '7.3.1', - binaries: { - 'linux/amd64': - 'https://github.com/evmos/evmos/releases/download/v16.0.2/evmos_16.0.2_Linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/evmos/evmos/releases/download/v16.0.2/evmos_16.0.2_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/evmos/evmos/releases/download/v16.0.2/evmos_16.0.2_Darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/evmos/evmos/releases/download/v16.0.2/evmos_16.0.2_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/evmos/evmos/releases/download/v16.0.2/evmos_16.0.2_Windows_amd64.zip' - }, - genesis: { - genesis_url: 'https://archive.evmos.org/mainnet/genesis.json' - }, - versions: [ - { - name: 'v12', - tag: 'v12.1.5', - proposal: 137, - height: 12303000, - recommended_version: 'v12.1.5', - compatible_versions: [ - 'v12.1.5', - 'v12.1.3', - 'v12.1.2', - 'v12.1.1', - 'v12.1.0' - ], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '6.1.0', - binaries: { - 'linux/amd64': - 'https://github.com/evmos/evmos/releases/download/v12.1.5/evmos_12.1.5_Linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/evmos/evmos/releases/download/v12.1.5/evmos_12.1.5_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/evmos/evmos/releases/download/v12.1.5/evmos_12.1.5_Darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/evmos/evmos/releases/download/v12.1.5/evmos_12.1.5_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/evmos/evmos/releases/download/v12.1.5/evmos_12.1.5_Windows_amd64.zip' - }, - next_version_name: 'v13.0.2' - }, - { - name: 'v13.0.2', - tag: 'v13.0.2', - proposal: 149, - height: 14538200, - recommended_version: 'v13.0.2', - compatible_versions: ['v13.0.2'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - ibc_go_version: 'v6.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/evmos/evmos/releases/download/v13.0.2/evmos_13.0.2_Linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/evmos/evmos/releases/download/v13.0.2/evmos_13.0.2_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/evmos/evmos/releases/download/v13.0.2/evmos_13.0.2_Darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/evmos/evmos/releases/download/v13.0.2/evmos_13.0.2_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/evmos/evmos/releases/download/v13.0.2/evmos_13.0.2_Windows_amd64.zip' - }, - next_version_name: 'v14.0.0' - }, - { - name: 'v14.0.0', - tag: 'v14.0.0', - proposal: 196, - height: 16105000, - recommended_version: 'v14.0.0', - compatible_versions: ['v14.0.0'], - cosmos_sdk_version: 'v0.47.4-evmos.2', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - ibc_go_version: 'v7.3.0', - binaries: { - 'linux/amd64': - 'https://github.com/evmos/evmos/releases/download/v14.0.0/evmos_14.0.0_Linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/evmos/evmos/releases/download/v14.0.0/evmos_14.0.0_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/evmos/evmos/releases/download/v14.0.0/evmos_14.0.0_Darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/evmos/evmos/releases/download/v14.0.0/evmos_14.0.0_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/evmos/evmos/releases/download/v14.0.0/evmos_14.0.0_Windows_amd64.zip' - }, - next_version_name: 'v15.0.0' - }, - { - name: 'v15.0.0', - tag: 'v15.0.0', - proposal: 240, - height: 16946771, - recommended_version: 'v15.0.0', - compatible_versions: ['v15.0.0'], - cosmos_sdk_version: 'v0.47.5-evmos', - consensus: { - type: 'cometbft', - version: 'v0.37.3-0.20230920093934-46df7b597e3c' - }, - ibc_go_version: 'v7.3.1', - binaries: { - 'linux/amd64': - 'https://github.com/evmos/evmos/releases/download/v15.0.0/evmos_15.0.0_Linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/evmos/evmos/releases/download/v15.0.0/evmos_15.0.0_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/evmos/evmos/releases/download/v15.0.0/evmos_15.0.0_Darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/evmos/evmos/releases/download/v15.0.0/evmos_15.0.0_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/evmos/evmos/releases/download/v15.0.0/evmos_15.0.0_Windows_amd64.zip' - }, - next_version_name: 'v16.0.0' - }, - { - name: 'v16.0.0', - tag: 'v16.0.2', - proposal: 265, - height: 18295000, - recommended_version: 'v16.0.2', - compatible_versions: ['v16.0.0', 'v16.0.1', 'v16.0.2'], - cosmos_sdk_version: 'v0.47.5-evmos.2', - consensus: { - type: 'cometbft', - version: 'v0.37.3-0.20230920093934-46df7b597e3c' - }, - ibc_go_version: 'v7.3.1', - binaries: { - 'linux/amd64': - 'https://github.com/evmos/evmos/releases/download/v16.0.2/evmos_16.0.2_Linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/evmos/evmos/releases/download/v16.0.2/evmos_16.0.2_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/evmos/evmos/releases/download/v16.0.2/evmos_16.0.2_Darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/evmos/evmos/releases/download/v16.0.2/evmos_16.0.2_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/evmos/evmos/releases/download/v16.0.2/evmos_16.0.2_Windows_amd64.zip' - }, - next_version_name: '' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' - }, - description: - 'Developers use Evmos as the Ethereum Canary Chain to deploy applications of the future. Get all the functionalities of Ethereum with the power of IBC and Interchain composability.', - peers: { - seeds: [ + "$schema": "../chain.schema.json", + "chain_name": "evmos", + "status": "live", + "network_type": "mainnet", + "website": "https://evmos.org/", + "pretty_name": "Evmos", + "chain_id": "evmos_9001-2", + "bech32_prefix": "evmos", + "node_home": "$HOME/.evmosd", + "daemon_name": "evmosd", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "aevmos", + "fixed_min_gas_price": 250000000, + "low_gas_price": 20000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "aevmos" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "v0.47.5-evmos.2" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" + }, + "description": "Developers use Evmos as the Ethereum Canary Chain to deploy applications of the future. Get all the functionalities of Ethereum with the power of IBC and Interchain composability.", + "apis": { + "rpc": [ { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:13456', - provider: 'RHINO' + "address": "https://rpc-evmos.ecostake.com", + "provider": "ecostake" }, { - id: '7aa31684d201f8ebc0b1e832d90d7490345d77ee', - address: '52.10.99.253:26656', - provider: 'Cosmostation' + "address": "https://evmos-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - id: '5740e4a36e646e80cc5648daf5e983e5b5d8f265', - address: '54.39.18.27:26656', - provider: 'Figment' + "address": "https://tendermint.bd.evmos.org:26657", + "provider": "Blockdaemon" }, { - id: '588cedb70fa1d98c14a2f2c1456bfa41e1a156a8', - address: 'evmos-sentry.mercury-nodes.net:29539', - provider: 'Mercury' + "address": "https://rpc-evmos-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:13456', - provider: 'Polkachu' + "address": "https://rpc.evmos.testnet.run", + "provider": "TestNetRun" }, { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:13456', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://rpc.evmos.nodestake.top", + "provider": "NodeStake" }, { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'evmos-mainnet-seed.autostake.com:26736', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://rpc.evmos.chaintools.tech/", + "provider": "ChainTools" }, { - id: '40f4fac63da8b1ce8f850b0fa0f79b2699d2ce72', - address: 'seed.evmos.jerrychong.com:26656', - provider: "Jerry's Pool" + "address": "https://evmos-rpc.polkachu.com", + "provider": "Polkachu" }, { - id: '86bd5cb6e762f673f1706e5889e039d5406b4b90', - address: 'evmos.seed.node75.org:10756', - provider: 'Pro-nodes75' + "address": "https://rpc.evmos.silentvalidator.com/", + "provider": "silent" }, { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://rpc.evmos.tcnetwork.io", + "provider": "TC Network" }, { - id: 'ac009a9564d3471852795b5d703095a1d4b6a3e1', - address: 'seed-evmos-01.stakeflow.io:1707', - provider: 'Stakeflow' + "address": "https://evmos.rpc.stakin-nodes.com", + "provider": "Stakin" }, { - id: '008175475229d09bcbbbe713c4e50faa85719c9e', - address: 'seed-node.mms.team:37656', - provider: 'MMS' - } - ], - persistent_peers: [ + "address": "https://rpc-evmos.architectnodes.com", + "provider": "Architect Nodes" + }, { - id: '7aa31684d201f8ebc0b1e832d90d7490345d77ee', - address: '52.10.99.253:26656', - provider: 'Cosmostation' + "address": "https://evmos-rpc.validatrium.club", + "provider": "Validatrium" }, { - id: '5740e4a36e646e80cc5648daf5e983e5b5d8f265', - address: '54.39.18.27:26656', - provider: 'Figment' + "address": "https://evmos-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - id: '588cedb70fa1d98c14a2f2c1456bfa41e1a156a8', - address: 'evmos-sentry.mercury-nodes.net:29539', - provider: 'Mercury' + "address": "https://rpc-evmos-01.stakeflow.io", + "provider": "Stakeflow" }, { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'evmos-mainnet-peer.autostake.com:26736', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://evmos-rpc.theamsolutions.info", + "provider": "AM Solutions" }, { - id: 'ac009a9564d3471852795b5d703095a1d4b6a3e1', - address: 'peer-evmos-01.stakeflow.io:1707', - provider: 'Stakeflow' + "address": "https://rpc-evmos.validavia.me", + "provider": "Validavia" }, { - id: 'd3c8c2ecd3cf0d05cc49ff12b81c52b3ec9675a5', - address: 'peer-evmos.mms.team:26656', - provider: 'MMS' + "address": "https://evmos-rpc.w3coins.io", + "provider": "w3coins" }, { - id: '25695d17ec014c39054ac0026db3228053a6a2db', - address: '65.108.195.213:40656', - provider: 'StakeTown' + "address": "https://evmos-rpc.stake-town.com", + "provider": "StakeTown" }, { - id: 'cdf9f4c1f76006e783634ec3cdb48c1fed3c4a00', - address: 'evmos-mainnet.peer.stakevillage.net:16956', - provider: 'Stake Village' - } - ] - }, - apis: { - rpc: [ + "address": "https://evmos.rpc.liveraven.net", + "provider": "LiveRaveN" + }, { - address: 'https://rpc-evmos.ecostake.com', - provider: 'ecostake' + "address": "https://evmos-rpc.antrixy.org/", + "provider": "Antrix Validators" }, { - address: 'https://evmos-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://evmos-mainnet.rpc.stakevillage.net:443", + "provider": "Stake Village" }, { - address: 'https://tendermint.bd.evmos.org:26657', - provider: 'Blockdaemon' + "address": "https://rpc.evmos.bronbro.io:443", + "provider": "Bro_n_Bro" + } + ], + "rest": [ + { + "address": "https://rest.bd.evmos.org:1317", + "provider": "Blockdaemon" }, { - address: 'https://rpc-evmos-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "https://evmos-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc.evmos.testnet.run', - provider: 'TestNetRun' + "address": "https://api-evmos-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc.evmos.nodestake.top', - provider: 'NodeStake' + "address": "https://api.evmos.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://rpc.evmos.chaintools.tech/', - provider: 'ChainTools' + "address": "https://evmos-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://evmos-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://api.evmos.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://rpc.evmos.silentvalidator.com/', - provider: 'silent' + "address": "https://rest.evmos.tcnetwork.io", + "provider": "TC Network" }, { - address: 'https://rpc.evmos.tcnetwork.io', - provider: 'TC Network' + "address": "https://evmos.rest.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'https://evmos.rpc.stakin-nodes.com', - provider: 'Stakin' + "address": "https://rest-evmos.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://rpc-evmos.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://evmos-api.validatrium.club", + "provider": "Validatrium" }, { - address: 'https://evmos-rpc.validatrium.club', - provider: 'Validatrium' + "address": "https://rest-evmos.ecostake.com", + "provider": "ecostake" }, { - address: 'https://evmos-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://evmos-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://rpc-evmos-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-evmos-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://evmos-rpc.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://evmos-api.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://rpc-evmos.validavia.me', - provider: 'Validavia' + "address": "https://lcd-evmos.validavia.me", + "provider": "Validavia" }, { - address: 'https://evmos-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://evmos-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://evmos-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://evmos-api.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://evmos.rpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://evmos.api.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://evmos-rpc.antrixy.org/', - provider: 'Antrix Validators' + "address": "https://evmos-rest.antrixy.org/", + "provider": "Antrix Validators" }, { - address: 'https://evmos-mainnet.rpc.stakevillage.net:443', - provider: 'Stake Village' + "address": "https://evmos-mainnet.api.stakevillage.net", + "provider": "Stake Village" }, { - address: 'https://rpc.evmos.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.evmos.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ - { - address: 'https://rest.bd.evmos.org:1317', - provider: 'Blockdaemon' - }, - { - address: 'https://evmos-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' - }, + "grpc": [ { - address: 'https://api-evmos-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "grpc.bd.evmos.org:9090", + "provider": "evmos.org" }, { - address: 'https://api.evmos.nodestake.top', - provider: 'NodeStake' + "address": "grpc-evmos-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'https://evmos-api.polkachu.com', - provider: 'Polkachu' + "address": "evmos-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api.evmos.silentvalidator.com/', - provider: 'silent' + "address": "grpc.evmos.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://rest.evmos.tcnetwork.io', - provider: 'TC Network' + "address": "grpc-evmos.cosmos-spaces.cloud:1190", + "provider": "Cosmos Spaces" }, { - address: 'https://evmos.rest.stakin-nodes.com', - provider: 'Stakin' + "address": "evmos.grpcui.chaintools.host:443", + "provider": "ChainTools" }, { - address: 'https://rest-evmos.architectnodes.com', - provider: 'Architect Nodes' + "address": "evmos-grpc.polkachu.com:13490", + "provider": "Polkachu" }, { - address: 'https://evmos-api.validatrium.club', - provider: 'Validatrium' + "address": "evmos.grpc.stakin-nodes.com:443", + "provider": "Stakin" }, { - address: 'https://rest-evmos.ecostake.com', - provider: 'ecostake' + "address": "evmos-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://evmos-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "evmos-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://api-evmos-01.stakeflow.io', - provider: 'Stakeflow' + "address": "grpc-evmos-01.stakeflow.io:1702", + "provider": "Stakeflow" }, { - address: 'https://evmos-api.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://evmos-grpc.theamsolutions.info ", + "provider": "AM Solutions" }, { - address: 'https://lcd-evmos.validavia.me', - provider: 'Validavia' + "address": "evmos-grpc.w3coins.io:13490", + "provider": "w3coins" }, { - address: 'https://evmos-api.w3coins.io', - provider: 'w3coins' + "address": "grpc-evmos.mms.team:443", + "provider": "MMS" }, { - address: 'https://evmos-api.stake-town.com', - provider: 'StakeTown' + "address": "evmos-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'https://evmos.api.liveraven.net', - provider: 'LiveRaveN' + "address": "evmos.grpc.liveraven.net:443", + "provider": "LiveRaveN" }, { - address: 'https://evmos-rest.antrixy.org/', - provider: 'Antrix Validators' + "address": "https://evmos-grpc.antrixy.org/", + "provider": "Antrix Validators" }, { - address: 'https://evmos-mainnet.api.stakevillage.net', - provider: 'Stake Village' + "address": "evmos-mainnet.grpc.stakevillage.net:16990", + "provider": "Stake Village" }, { - address: 'https://lcd.evmos.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.evmos.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "evm-http-jsonrpc": [ { - address: 'grpc.bd.evmos.org:9090', - provider: 'evmos.org' + "address": "https://eth.bd.evmos.org:8545", + "provider": "Blockdaemon" }, { - address: 'grpc-evmos-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "https://jsonrpc-evmos-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'evmos-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://evmos-json-rpc.stakely.io", + "provider": "Stakely" }, { - address: 'grpc.evmos.nodestake.top:443', - provider: 'NodeStake' + "address": "https://jsonrpc.evmos.nodestake.top", + "provider": "NodeStake" }, { - address: 'grpc-evmos.cosmos-spaces.cloud:1190', - provider: 'Cosmos Spaces' + "address": "https://json-rpc.evmos.bh.rocks", + "provider": "BlockHunters" }, { - address: 'evmos.grpcui.chaintools.host:443', - provider: 'ChainTools' + "address": "https://evmos-json-rpc.agoranodes.com", + "provider": "AgoraNodes" }, { - address: 'evmos-grpc.polkachu.com:13490', - provider: 'Polkachu' + "address": "https://evm-rpc.evmos.silentvalidator.com/", + "provider": "silent" }, { - address: 'evmos.grpc.stakin-nodes.com:443', - provider: 'Stakin' + "address": "https://json-rpc.evmos.tcnetwork.io", + "provider": "TC Network" }, { - address: 'evmos-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://evmosevm.rpc.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'evmos-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://evmos-evm.publicnode.com", + "provider": "Allnodes.com ⚡️ Nodes & Staking" }, { - address: 'grpc-evmos-01.stakeflow.io:1702', - provider: 'Stakeflow' + "address": "https://evmos-jsonrpc.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://evmos-grpc.theamsolutions.info ', - provider: 'AM Solutions' + "address": "https://jsonrpc-evmos.mms.team", + "provider": "MMS" }, { - address: 'evmos-grpc.w3coins.io:13490', - provider: 'w3coins' + "address": "https://evmos-jsonrpc.stake-town.com", + "provider": "StakeTown" }, { - address: 'grpc-evmos.mms.team:443', - provider: 'MMS' + "address": "https://evmos.jsonrpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'evmos-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "https://evmos.json.antrixy.org", + "provider": "Antrix Validators" }, { - address: 'evmos.grpc.liveraven.net:443', - provider: 'LiveRaveN' - }, - { - address: 'https://evmos-grpc.antrixy.org/', - provider: 'Antrix Validators' - }, - { - address: 'evmos-mainnet.grpc.stakevillage.net:16990', - provider: 'Stake Village' - }, - { - address: 'https://grpc.evmos.bronbro.io:443', - provider: 'Bro_n_Bro' - } - ], - 'evm-http-jsonrpc': [ - { - address: 'https://eth.bd.evmos.org:8545', - provider: 'Blockdaemon' - }, - { - address: 'https://jsonrpc-evmos-ia.cosmosia.notional.ventures/', - provider: 'Notional' - }, - { - address: 'https://evmos-json-rpc.stakely.io', - provider: 'Stakely' - }, - { - address: 'https://jsonrpc.evmos.nodestake.top', - provider: 'NodeStake' - }, - { - address: 'https://json-rpc.evmos.bh.rocks', - provider: 'BlockHunters' - }, - { - address: 'https://evmos-json-rpc.agoranodes.com', - provider: 'AgoraNodes' - }, - { - address: 'https://evm-rpc.evmos.silentvalidator.com/', - provider: 'silent' - }, - { - address: 'https://json-rpc.evmos.tcnetwork.io', - provider: 'TC Network' - }, - { - address: 'https://evmosevm.rpc.stakin-nodes.com', - provider: 'Stakin' - }, - { - address: 'https://evmos-evm.publicnode.com', - provider: 'Allnodes.com ⚡️ Nodes & Staking' - }, - { - address: 'https://evmos-jsonrpc.theamsolutions.info', - provider: 'AM Solutions' - }, - { - address: 'https://jsonrpc-evmos.mms.team', - provider: 'MMS' - }, - { - address: 'https://evmos-jsonrpc.stake-town.com', - provider: 'StakeTown' - }, - { - address: 'https://evmos.jsonrpc.liveraven.net', - provider: 'LiveRaveN' - }, - { - address: 'https://evmos.json.antrixy.org', - provider: 'Antrix Validators' - }, - { - address: 'https://evmos-mainnet.jsonrpc.stakevillage.net', - provider: 'Stake Village' + "address": "https://evmos-mainnet.jsonrpc.stakevillage.net", + "provider": "Stake Village" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/evmos', - tx_page: 'https://app.ezstaking.io/evmos/txs/${txHash}', - account_page: 'https://app.ezstaking.io/evmos/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/evmos", + "tx_page": "https://app.ezstaking.io/evmos/txs/${txHash}", + "account_page": "https://app.ezstaking.io/evmos/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/evmos', - tx_page: 'https://www.mintscan.io/evmos/transactions/${txHash}', - account_page: 'https://www.mintscan.io/evmos/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/evmos", + "tx_page": "https://www.mintscan.io/evmos/transactions/${txHash}", + "account_page": "https://www.mintscan.io/evmos/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/evmos', - tx_page: 'https://bigdipper.live/evmos/transactions/${txHash}', - account_page: 'https://bigdipper.live/evmos/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/evmos", + "tx_page": "https://bigdipper.live/evmos/transactions/${txHash}", + "account_page": "https://bigdipper.live/evmos/accounts/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/evmos/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/evmos", + "tx_page": "https://atomscan.com/evmos/transactions/${txHash}", + "account_page": "https://atomscan.com/evmos/accounts/${accountAddress}" }, { - kind: 'tcnetwork', - url: 'https://evmos.tcnetwork.io', - tx_page: 'https://evmos.tcnetwork.io/transaction/${txHash}' + "kind": "tcnetwork", + "url": "https://evmos.tcnetwork.io", + "tx_page": "https://evmos.tcnetwork.io/transaction/${txHash}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/evmos', - account_page: 'https://stakeflow.io/evmos/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/evmos", + "account_page": "https://stakeflow.io/evmos/accounts/${accountAddress}" }, { - kind: 'Stake Village', - url: 'https://exp.stakevillage.net/evmos', - tx_page: 'https://exp.stakevillage.net/evmos/tx/${txHash}', - account_page: - 'https://exp.stakevillage.net/evmos/accounts/${accountAddress}' + "kind": "Stake Village", + "url": "https://exp.stakevillage.net/evmos", + "tx_page": "https://exp.stakevillage.net/evmos/tx/${txHash}", + "account_page": "https://exp.stakevillage.net/evmos/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'fetchhub', - status: 'live', - network_type: 'mainnet', - pretty_name: 'Fetch.ai', - chain_id: 'fetchhub-4', - bech32_prefix: 'fetch', - daemon_name: 'fetchd', - node_home: '$HOME/.fetchd', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'afet', - low_gas_price: 0.025, - average_gas_price: 0.025, - high_gas_price: 0.035 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "fetchhub", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Fetch.ai", + "chain_id": "fetchhub-4", + "bech32_prefix": "fetch", + "daemon_name": "fetchd", + "node_home": "$HOME/.fetchd", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'afet' + "denom": "afet", + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.035 } ] }, - codebase: { - git_repo: 'https://github.com/fetchai/fetchd', - recommended_version: 'v0.10.5', - compatible_versions: ['v0.10.5'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/fetchai/genesis-fetchhub/fetchhub-4/fetchhub-4/data/genesis_migrated_5300200.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.10.5', - recommended_version: 'v0.10.5', - compatible_versions: ['v0.10.5'] + "denom": "afet" } ] }, - 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' - }, - peers: { - seeds: [ - { - id: '17693da418c15c95d629994a320e2c4f51a8069b', - address: 'connect-fetchhub.fetch.ai:36456', - provider: 'fetch.ai' - }, - { - id: 'a575c681c2861fe945f77cb3aba0357da294f1f2', - address: 'connect-fetchhub.fetch.ai:36457', - provider: 'fetch.ai' - }, - { - id: 'd7cda986c9f59ab9e05058a803c3d0300d15d8da', - address: 'connect-fetchhub.fetch.ai:36458', - provider: 'fetch.ai' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:15256', - provider: 'Polkachu' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'fetchhub-mainnet-seed.autostake.com:27266', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: '937d7371c9381aa7ae5f411129419a893164becf', - address: 'seed-fetch.ibs.team:16659', - provider: 'Inter Blockchain Services' - } - ], - persistent_peers: [ - { - id: 'e3d21a822e3903a96c14bfd8f8e06132f198d7c4', - address: 'sentries-fetchhub.fetch.ai:36400', - provider: 'fetch.ai' - }, - { - id: '4be243f5d22403f6069d2ed3c4a79161216f22a0', - address: 'sentries-fetchhub.fetch.ai:36401', - provider: 'fetch.ai' - }, - { - id: 'd6faadb9e785642b355136ed278d5b5d6b2f87dd', - address: 'sentries-fetchhub.fetch.ai:36402', - provider: 'fetch.ai' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'fetchhub-mainnet-peer.autostake.com:27266', - provider: 'AutoStake 🛡️ Slash Protected' - } - ] + "codebase": {}, + "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" }, - 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://rpc-fetchhub-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-fetchhub-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://fetch-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://fetch-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://fetchai-rpc.kleomedes.network', - provider: 'Kleomedes' + "address": "https://fetchai-rpc.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://fetch-rpc.teasel.org', - provider: '𝗧𝗲𝗮𝘀𝗲𝗹' + "address": "https://fetch-rpc.teasel.org", + "provider": "𝗧𝗲𝗮𝘀𝗲𝗹" }, { - address: 'https://fetch-rpc.antrixy.org', - provider: 'Antrix' + "address": "https://fetch-rpc.antrixy.org", + "provider": "Antrix" }, { - address: 'https://rpc-fetch.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rpc-fetch.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://fetchhub-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://fetchhub-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://fetch-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://fetch-rpc.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://fetch-rpc.cosmosrescue.com', - provider: 'cosmosrescue' + "address": "https://fetch-rpc.cosmosrescue.com", + "provider": "cosmosrescue" }, { - address: 'https://fetch-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://fetch-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://fetch-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://fetch-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://fetch-rpc.highstakes.ch:26657/', - provider: 'High Stakes 🇨🇭' + "address": "https://fetch-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" } ], - 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.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-fetchhub-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://fetch-api.polkachu.com', - provider: 'Polkachu' + "address": "https://fetch-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://fetchai-api.kleomedes.network', - provider: 'Kleomedes' + "address": "https://fetchai-api.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://fetch-rest.teasel.org', - provider: '𝗧𝗲𝗮𝘀𝗲𝗹' + "address": "https://fetch-rest.teasel.org", + "provider": "𝗧𝗲𝗮𝘀𝗲𝗹" }, { - address: 'https://fetch-rest.antrixy.org', - provider: 'Antrix' + "address": "https://fetch-rest.antrixy.org", + "provider": "Antrix" }, { - address: 'https://fetchhub-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://fetchhub-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rest-fetch.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rest-fetch.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://fetch-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://fetch-api.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://fetch-api.cosmosrescue.com', - provider: 'cosmosrescue' + "address": "https://fetch-api.cosmosrescue.com", + "provider": "cosmosrescue" }, { - address: 'https://fetch-api.w3coins.io', - provider: 'w3coins' + "address": "https://fetch-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://fetch-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://fetch-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://fetch-api.highstakes.ch:1317/', - provider: 'High Stakes 🇨🇭' + "address": "https://fetch-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" } ], - grpc: [ + "grpc": [ { - address: 'grpc-fetchhub.fetch.ai:443', - provider: 'fetch.ai' + "address": "grpc-fetchhub.fetch.ai:443", + "provider": "fetch.ai" }, { - address: 'grpc-fetchhub-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-fetchhub-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'fetch-grpc.polkachu.com:15290', - provider: 'Polkachu' + "address": "fetch-grpc.polkachu.com:15290", + "provider": "Polkachu" }, { - address: 'fetchhub-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "fetchhub-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'fetch-grpc.teasel.org:443', - provider: '𝗧𝗲𝗮𝘀𝗲𝗹' + "address": "fetch-grpc.teasel.org:443", + "provider": "𝗧𝗲𝗮𝘀𝗲𝗹" }, { - address: 'fetch-grpc.antrixy.org:443', - provider: 'Antrix' + "address": "fetch-grpc.antrixy.org:443", + "provider": "Antrix" }, { - address: 'fetch-grpc.cosmosrescue.com:9090', - provider: 'cosmosrescue' + "address": "fetch-grpc.cosmosrescue.com:9090", + "provider": "cosmosrescue" }, { - address: 'fetch-grpc.w3coins.io:15290', - provider: 'w3coins' + "address": "fetch-grpc.w3coins.io:15290", + "provider": "w3coins" }, { - address: 'fetch-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "fetch-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/fetchai', - tx_page: 'https://www.mintscan.io/fetchai/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/fetchai/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/fetchai", + "tx_page": "https://www.mintscan.io/fetchai/transactions/${txHash}", + "account_page": "https://www.mintscan.io/fetchai/accounts/${accountAddress}" }, { - 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/fetchai', - tx_page: 'https://atomscan.com/fetchai/transactions/${txHash}', - account_page: 'https://atomscan.com/fetchai/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/fetchai", + "tx_page": "https://atomscan.com/fetchai/transactions/${txHash}", + "account_page": "https://atomscan.com/fetchai/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://fetch-explorer.teasel.org', - tx_page: 'https://fetch-explorer.teasel.org/transactions/${txHash}' + "kind": "bigdipper", + "url": "https://fetch-explorer.teasel.org", + "tx_page": "https://fetch-explorer.teasel.org/transactions/${txHash}" }, { - kind: 'azoyalabs', - url: 'https://fetchstation.azoyalabs.com/mainnet', - tx_page: - 'https://fetchstation.azoyalabs.com/mainnet/explorer/transactions/${txHash}', - account_page: - 'https://fetchstation.azoyalabs.com/mainnet/explorer/address/${accountAddress}' + "kind": "azoyalabs", + "url": "https://fetchstation.azoyalabs.com/mainnet", + "tx_page": "https://fetchstation.azoyalabs.com/mainnet/explorer/transactions/${txHash}", + "account_page": "https://fetchstation.azoyalabs.com/mainnet/explorer/address/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'firmachain', - status: 'live', - network_type: 'mainnet', - website: 'https://firmachain.org/', - pretty_name: 'FirmaChain', - chain_id: 'colosseum-1', - bech32_prefix: 'firma', - slip44: 7777777, - daemon_name: 'firmachaind', - node_home: '$HOME/.firmachain', - key_algos: ['secp256k1'], - fees: { - fee_tokens: [ - { - denom: 'ufct', - fixed_min_gas_price: 0.1 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "firmachain", + "status": "live", + "network_type": "mainnet", + "website": "https://firmachain.org/", + "pretty_name": "FirmaChain", + "chain_id": "colosseum-1", + "bech32_prefix": "firma", + "slip44": 7777777, + "daemon_name": "firmachaind", + "node_home": "$HOME/.firmachain", + "key_algos": [ + "secp256k1" + ], + "fees": { + "fee_tokens": [ { - denom: 'ufct' + "denom": "ufct", + "fixed_min_gas_price": 0.1 } ] }, - codebase: { - git_repo: 'https://github.com/firmachain/firmachain', - recommended_version: 'v0.3.5-patch', - compatible_versions: ['v0.3.5-patch'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/FirmaChain/mainnet/main/colosseum-1/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.3.5', - recommended_version: 'v0.3.5-patch', - compatible_versions: ['v0.3.5-patch'] + "denom": "ufct" } ] }, - 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' - }, - peers: { - seeds: [ - { - id: 'f89dcc15241e30323ae6f491011779d53f9a5487', - address: 'mainnet-seed1.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: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:16456', - provider: 'Lavender.Five Nodes 🐝' - } - ], - persistent_peers: [ - { - id: '931a7c680d28c84a8a53e4017a6eae0788ee7cf2', - address: 'firmachain.ramuchi.tech:57656', - provider: 'ramuchi.tech' - } - ] + "codebase": {}, + "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" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://lcd-mainnet.firmachain.dev:26657', - provider: 'FirmaChain' + "address": "https://lcd-mainnet.firmachain.dev:26657", + "provider": "FirmaChain" }, { - address: 'https://rpc.firmachain.chaintools.tech/', - provider: 'ChainTools' + "address": "https://rpc.firmachain.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://firmachain-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://firmachain-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://firmachain-rpc.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://firmachain-rpc.ramuchi.tech", + "provider": "ramuchi.tech" } ], - rest: [ + "rest": [ { - address: 'https://lcd-mainnet.firmachain.dev:1317', - provider: 'FirmaChain' + "address": "https://lcd-mainnet.firmachain.dev:1317", + "provider": "FirmaChain" }, { - address: 'https://api.firmachain.chaintools.tech/', - provider: 'ChainTools' + "address": "https://api.firmachain.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://firmachain-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://firmachain-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://firmachain-api.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://firmachain-api.ramuchi.tech", + "provider": "ramuchi.tech" } ], - grpc: [ + "grpc": [ { - address: 'firmachain-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "firmachain-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://firmachain-grpc.ramuchi.tech:1390', - provider: 'ramuchi.tech' + "address": "https://firmachain-grpc.ramuchi.tech:1390", + "provider": "ramuchi.tech" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/firmachain', - tx_page: 'https://app.ezstaking.io/firmachain/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/firmachain/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/firmachain", + "tx_page": "https://app.ezstaking.io/firmachain/txs/${txHash}", + "account_page": "https://app.ezstaking.io/firmachain/account/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://explorer.firmachain.dev', - tx_page: 'https://explorer.firmachain.dev/transactions/${txHash}' + "kind": "bigdipper", + "url": "https://explorer.firmachain.dev", + "tx_page": "https://explorer.firmachain.dev/transactions/${txHash}" }, { - kind: 'explorer.ChainTools', - url: 'https://explorer.chaintools.tech/firmachain', - tx_page: 'https://explorer.chaintools.tech/firmachain/tx/${txHash}' + "kind": "explorer.ChainTools", + "url": "https://explorer.chaintools.tech/firmachain", + "tx_page": "https://explorer.chaintools.tech/firmachain/tx/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/firmachain', - tx_page: 'https://atomscan.com/firmachain/transactions/${txHash}', - account_page: - 'https://atomscan.com/firmachain/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/firmachain", + "tx_page": "https://atomscan.com/firmachain/transactions/${txHash}", + "account_page": "https://atomscan.com/firmachain/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'furya', - status: 'live', - network_type: 'mainnet', - website: 'https://furya.xyz/', - pretty_name: 'furya', - chain_id: 'furya-1', - daemon_name: 'furyad', - node_home: '$HOME/.furyad', - bech32_prefix: 'furya', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ufury', - low_gas_price: 0, - average_gas_price: 0.25, - high_gas_price: 0.5 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "furya", + "status": "live", + "network_type": "mainnet", + "website": "https://furya.xyz/", + "pretty_name": "furya", + "chain_id": "furya-1", + "daemon_name": "furyad", + "node_home": "$HOME/.furyad", + "bech32_prefix": "furya", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ufury' + "denom": "ufury", + "low_gas_price": 0, + "average_gas_price": 0.25, + "high_gas_price": 0.5 } ] }, - codebase: { - git_repo: 'https://github.com/furysport/furya-chain', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - genesis: { - genesis_url: - 'https://github.com/furysport/furya-chain/blob/main/network/mainnet/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'] + "denom": "ufury" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/chain.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/chain.svg' - }, - peers: { - seeds: [ - { - id: '38f40db17cdae23ba3c2b0f7d5738b9d31d077aa', - address: '34.32.247.201:26656', - provider: 'Furya' - } - ], - persistent_peers: [ - { - id: '38f40db17cdae23ba3c2b0f7d5738b9d31d077aa', - address: '34.32.247.201:26656', - provider: 'Furya' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/chain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/chain.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.furya.xyz', - provider: 'Furya Genesis Validator 🐝' + "address": "https://rpc.furya.xyz", + "provider": "Furya Genesis Validator 🐝" } ], - rest: [ + "rest": [ { - address: 'https://api.furya.xyz', - provider: 'Furya Genesis Validator 🐝' + "address": "https://api.furya.xyz", + "provider": "Furya Genesis Validator 🐝" } ], - grpc: [ + "grpc": [ { - address: 'grpc.furya.xyz:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "grpc.furya.xyz:443", + "provider": "Lavender.Five Nodes 🐝" } ] }, - explorers: [ + "explorers": [ { - kind: 'Furya Explorer', - url: 'https://explorer.furya.xyz/', - tx_page: 'https://explorer.furya.xyz/txs/${txHash}', - account_page: 'https://explorer.furya.xyz/account/${accountAddress}' + "kind": "Furya Explorer", + "url": "https://explorer.furya.xyz/", + "tx_page": "https://explorer.furya.xyz/txs/${txHash}", + "account_page": "https://explorer.furya.xyz/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/chain.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/chain.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/chain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/chain.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'fxcore', - chain_id: 'fxcore', - website: 'https://functionx.io', - pretty_name: 'f(x)Core', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'fx', - daemon_name: 'fxcored', - node_home: '$HOME/.fxcore', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'FX', - fixed_min_gas_price: 4000000000000, - low_gas_price: 4000000000000, - average_gas_price: 4200000000000, - high_gas_price: 5000000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'FX' - } - ] - }, - codebase: { - git_repo: 'https://github.com/functionx/fx-core', - recommended_version: 'v4.2.1', - compatible_versions: ['v4.2.1'], - binaries: { - 'linux/amd64': - 'https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/FunctionX/fx-core/releases/download/v4.2.1/fx-core_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Windows_x86_64.zip' - }, - genesis: { - name: 'fxv1', - genesis_url: - 'https://github.com/functionx/fx-core/raw/main/public/mainnet/genesis.json' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '6.1.0', - versions: [ - { - name: 'fxv1', - tag: 'v1.1.2', - height: 0, - next_version_name: 'fxv2', - recommended_version: 'v1.1.2', - compatible_versions: ['v1.1.2'], - binaries: { - 'linux/amd64': - 'https://github.com/FunctionX/fx-core/releases/download/v1.1.2/fx-core_1.1.2_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/FunctionX/fx-core/releases/download/v1.1.2/fx-core_1.1.2_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/FunctionX/fx-core/releases/download/v1.1.2/fx-core_1.1.2_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/FunctionX/fx-core/releases/download/v1.1.2/fx-core_1.1.2_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/FunctionX/fx-core/releases/download/v1.1.2/fx-core_1.1.2_Windows_x86_64.zip' - } - }, - { - name: 'fxv2', - tag: 'v2.4.2', - height: 5713000, - proposal: 10, - next_version_name: 'fxv3', - recommended_version: 'v2.4.2', - compatible_versions: ['v2.4.2'], - binaries: { - 'linux/amd64': - 'https://github.com/FunctionX/fx-core/releases/download/v2.4.2/fx-core_2.4.2_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/FunctionX/fx-core/releases/download/v2.4.2/fx-core_2.4.2_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/FunctionX/fx-core/releases/download/v2.4.2/fx-core_2.4.2_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/FunctionX/fx-core/releases/download/v2.4.2/fx-core_2.4.2_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/FunctionX/fx-core/releases/download/v2.4.2/fx-core_2.4.2_Windows_x86_64.zip' - } - }, - { - name: 'fxv3', - tag: 'v3.1.0', - height: 8756000, - proposal: 29, - next_version_name: 'v4.2.x', - recommended_version: 'v3.1.0', - compatible_versions: ['v3.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/FunctionX/fx-core/releases/download/v3.1.0/fx-core_3.1.0_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/FunctionX/fx-core/releases/download/v3.1.0/fx-core_3.1.0_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/FunctionX/fx-core/releases/download/v3.1.0/fx-core_3.1.0_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/FunctionX/fx-core/releases/download/v3.1.0/fx-core_3.1.0_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/FunctionX/fx-core/releases/download/v3.1.0/fx-core_3.1.0_Windows_x86_64.zip' - } - }, + "$schema": "../chain.schema.json", + "chain_name": "fxcore", + "chain_id": "fxcore", + "website": "https://functionx.io", + "pretty_name": "f(x)Core", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "fx", + "daemon_name": "fxcored", + "node_home": "$HOME/.fxcore", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - name: 'v4.2.x', - tag: 'v4.2.1', - height: 10477500, - proposal: 36, - recommended_version: 'v4.2.1', - compatible_versions: ['v4.2.1'], - binaries: { - 'linux/amd64': - 'https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/FunctionX/fx-core/releases/download/v4.2.1/fx-core_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/functionx/fx-core/releases/download/v4.2.1/fx-core_Windows_x86_64.zip' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - } + "denom": "FX", + "fixed_min_gas_price": 4000000000000, + "low_gas_price": 4000000000000, + "average_gas_price": 4200000000000, + "high_gas_price": 5000000000000 } ] }, - peers: { - seeds: [ - { - id: 'c5877d9d243af1a504caf5b7f7a9c915b3ae94ae', - address: 'fxcore-mainnet-seed-node-1.functionx.io:26656', - provider: 'Function X' - }, + "staking": { + "staking_tokens": [ { - id: 'b289311ece065c813287e3a25835bb6378999aa5', - address: 'fxcore-mainnet-seed-node-2.functionx.io:26656', - provider: 'Function X' - } - ], - persistent_peers: [ - { - id: '96f04dffc25ffcce11e179581d2a3ab6cb5535d5', - address: 'fxcore-mainnet-node-1.functionx.io:26656', - provider: 'Function X' - }, - { - id: '836ded83bac83a4ac8511826fa1ad4ca2238f960', - address: 'fxcore-mainnet-node-2.functionx.io:26656', - provider: 'Function X' - }, - { - id: '7c7a260eeefda37eac896ae423e78cf345a2ef70', - address: 'fxcore-mainnet-node-3.functionx.io:26656', - provider: 'Function X' - }, - { - id: '0fee38117655b6961319950d6beb929fb194217c', - address: 'fxcore-mainnet-node-4.functionx.io:26656', - provider: 'Function X' - }, - { - id: '6e8818051a2ca9b8be67a6f2ba48c33d8c489d5c', - address: 'fxcore-mainnet-node-5.functionx.io:26656', - provider: 'Function X' + "denom": "FX" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46" + }, + "apis": { + "rpc": [ { - address: 'https://fx-json.functionx.io', - provider: 'Function X' + "address": "https://fx-json.functionx.io", + "provider": "Function X" } ], - rest: [ + "rest": [ { - address: 'https://fx-rest.functionx.io', - provider: 'Function X' + "address": "https://fx-rest.functionx.io", + "provider": "Function X" } ], - grpc: [ + "grpc": [ { - address: 'https://fx-grpc.functionx.io', - provider: 'Function X' + "address": "https://fx-grpc.functionx.io", + "provider": "Function X" }, { - address: 'https://fx-grpc.portfolio-x.xyz:9090', - provider: 'Portfolio X' + "address": "https://fx-grpc.portfolio-x.xyz:9090", + "provider": "Portfolio X" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://fx-web3.functionx.io', - provider: 'Function X' + "address": "https://fx-web3.functionx.io", + "provider": "Function X" } ] }, - explorers: [ + "explorers": [ { - kind: 'starscan', - url: 'https://starscan.io', - tx_page: 'https://starscan.io/fxcore/tx/${txHash}', - account_page: 'https://starscan.io/fxcore/address/${accountAddress}' + "kind": "starscan", + "url": "https://starscan.io", + "tx_page": "https://starscan.io/fxcore/tx/${txHash}", + "account_page": "https://starscan.io/fxcore/address/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/fx', - tx_page: 'https://explorer.tcnetwork.io/fx/transaction/${txHash}', - account_page: - 'https://explorer.tcnetwork.io/fx/account/${accountAddress}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/fx", + "tx_page": "https://explorer.tcnetwork.io/fx/transaction/${txHash}", + "account_page": "https://explorer.tcnetwork.io/fx/account/${accountAddress}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'galaxy', - status: 'live', - network_type: 'mainnet', - website: 'https://galaxychain.zone/', - pretty_name: 'Galaxy', - chain_id: 'galaxy-1', - bech32_prefix: 'galaxy', - daemon_name: 'galaxyd', - node_home: '$HOME/.galaxy', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uglx', - low_gas_price: 0.025, - average_gas_price: 0.025, - high_gas_price: 0.035 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uglx' - } - ] - }, - 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' - }, - genesis: { - genesis_url: - 'https://github.com/OrbisWorlds/networks/raw/main/galaxy-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.0', - 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", + "website": "https://galaxychain.zone/", + "pretty_name": "Galaxy", + "chain_id": "galaxy-1", + "bech32_prefix": "galaxy", + "daemon_name": "galaxyd", + "node_home": "$HOME/.galaxy", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uglx", + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.035 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' - }, - peers: { - seeds: [], - persistent_peers: [ - { - id: '10f7caa39969dc36450b138848a06e7deabe6fed', - address: '95.111.244.128:26656', - provider: 'Pathrocknetwork' - }, + "staking": { + "staking_tokens": [ { - id: '8b447bd4fa1e56d8252538a6e23573e5e78924fa', - address: '161.97.155.94:26656', - provider: '3Tekos' + "denom": "uglx" } ] }, - apis: { - rpc: [], - rest: [], - grpc: [] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg" + }, + "apis": { + "rpc": [], + "rest": [], + "grpc": [] }, - 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}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'gateway', - status: 'live', - network_type: 'mainnet', - website: 'https://wormhole.com', - pretty_name: 'Wormhole Gateway', - chain_id: 'wormchain', - bech32_prefix: 'wormhole', - daemon_name: 'wormchaind', - node_home: '$HOME/.wormchaind', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "gateway", + "status": "live", + "network_type": "mainnet", + "website": "https://wormhole.com", + "pretty_name": "Wormhole Gateway", + "chain_id": "wormchain", + "bech32_prefix": "wormhole", + "daemon_name": "wormchaind", + "node_home": "$HOME/.wormchaind", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'utest', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0, - high_gas_price: 0 + "denom": "utest", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'uworm' + "denom": "uworm" } ] }, - codebase: { - git_repo: 'https://github.com/wormhole-foundation/wormhole', - recommended_version: 'v2.23.0', - cosmos_sdk_version: - 'github.com/wormhole-foundation/cosmos-sdk@v0.45.9-wormhole-2', - consensus: { - type: 'tendermint', - version: 'github.com/tendermint/tendermint@v0.34.24' - }, - cosmwasm_version: - 'github.com/wormhole-foundation/wasmd@v0.30.0-wormchain-2', - cosmwasm_enabled: true, - ibc_go_version: '4.2.2', - ics_enabled: ['ics20-1'], - genesis: { - name: 'v1', - genesis_url: - 'https://github.com/wormhole-foundation/wormhole/blob/main/wormchain/mainnet/genesis.json' - } + "codebase": { + "cosmos_sdk_version": "github.com/wormhole-foundation/cosmos-sdk@v0.45.9-wormhole-2", + "cosmwasm_enabled": true, + "cosmwasm_version": "github.com/wormhole-foundation/wasmd@v0.30.0-wormchain-2" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gateway/images/gateway_logo.png', - theme: { - primary_color_hex: '#0F0C48' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gateway/images/gateway_logo.png", + "theme": { + "primary_color_hex": "#0F0C48" } }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gateway/images/gateway_logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gateway/images/wormhole_logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gateway/images/gateway_logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gateway/images/wormhole_logo.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gateway/images/gateway_logo.png' - }, - peers: { - seeds: [ - { - id: '8e7a0485dd956491a63cea0fac598e7588ef46f7', - address: '35.207.119.54:26656', - provider: 'Jump Crypto' - } - ], - persistent_peers: [ - { - id: '8e7a0485dd956491a63cea0fac598e7588ef46f7', - address: '35.207.119.54:26656', - provider: 'Jump Crypto' - }, - { - id: 'b4f2e07e01222307faabce24b1e8dc2736e96c53', - address: '194.169.245.254:26656', - provider: 'ChainLayer' - }, - { - id: '2b457d275d6f75867bd1fcc859f52db0dbd39324', - address: '57.128.144.245:26656', - provider: 'Forbole' - }, - { - id: 'ecdd26f15d171073f2c3a1419caee3fbc820cfb2', - address: '37.120.245.149:26656', - provider: 'Syncnode' - }, - { - id: 'e0a00b061f072ff0b60c03b49d32ee780331e5b8', - address: '162.19.171.137:36156', - provider: 'Chainode' - }, - { - id: '2fec1a950c29e0b847b50e9cbd081948bf717e8a', - address: '15.235.53.169:26656', - provider: 'Figment' - }, - { - id: '59e1edf9de1827931ced34ebc5f7737b42a02f31', - address: '80.190.129.50:49660', - provider: 'Staking Facilities' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gateway/images/gateway_logo.png" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://tncnt-eu-wormchain-main-01.rpc.p2p.world/', - provider: 'P2P' + "address": "https://tncnt-eu-wormchain-main-01.rpc.p2p.world/", + "provider": "P2P" }, { - address: 'https://wormchain-rpc.quickapi.com/', - provider: 'ChainLayer' + "address": "https://wormchain-rpc.quickapi.com/", + "provider": "ChainLayer" } ], - rest: [ + "rest": [ { - address: 'https://tncnt-eu-wormchain-main-01.rpc.p2p.world/lcd/', - provider: 'P2P' + "address": "https://tncnt-eu-wormchain-main-01.rpc.p2p.world/lcd/", + "provider": "P2P" }, { - address: 'https://wormchain-lcd.quickapi.com/', - provider: 'ChainLayer' + "address": "https://wormchain-lcd.quickapi.com/", + "provider": "ChainLayer" } ], - grpc: [ + "grpc": [ { - address: 'tncnt-eu-wormchain-main-01-grpc.rpc.p2p.world:80', - provider: 'P2P' + "address": "tncnt-eu-wormchain-main-01-grpc.rpc.p2p.world:80", + "provider": "P2P" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://bigdipper.live/wormhole', - tx_page: 'https://bigdipper.live/wormhole/transactions/${txHash}', - account_page: - 'https://bigdipper.live/wormhole/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/wormhole", + "tx_page": "https://bigdipper.live/wormhole/transactions/${txHash}", + "account_page": "https://bigdipper.live/wormhole/accounts/${accountAddress}" } ], - keywords: ['bridge'] + "keywords": [ + "bridge" + ] }, { - $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', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'el1', - low_gas_price: 51000000000, - average_gas_price: 52000000000, - high_gas_price: 53000000000 - } - ] - }, - staking: { - staking_tokens: [ + "$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", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'el1' + "denom": "el1", + "low_gas_price": 51000000000, + "average_gas_price": 52000000000, + "high_gas_price": 53000000000 } ] }, - codebase: { - git_repo: 'https://github.com/alpha-omega-labs/genesisd', - recommended_version: 'v0.3.0', - compatible_versions: ['v0.3.0'], - genesis: { - genesis_url: - 'https://github.com/alpha-omega-labs/genesisd/raw/neolithic/genesis_29-1-state/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.3.0', - recommended_version: 'v0.3.0', - compatible_versions: ['v0.3.0'] + "denom": "el1" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' - }, - peers: { - persistent_peers: [ - { - id: '36111b4156ace8f1cfa5584c3ccf479de4d94936', - address: '65.21.34.226:26656', - provider: 'GenesisL1' - }, - { - id: 'be81a20b7134552e270774ec861c4998fabc2969', - address: 'genesisl1.3ventures.io:26656' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg" }, - 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: 'ping.pub', - url: 'https://exp.utsa.tech/genesis', - tx_page: 'https://exp.utsa.tech/genesis/tx/${txHash}' + "kind": "ping.pub", + "url": "https://exp.utsa.tech/genesis", + "tx_page": "https://exp.utsa.tech/genesis/tx/${txHash}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Genesisl1', - tx_page: 'https://explorer.stavr.tech/Genesisl1/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Genesisl1/accounts/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Genesisl1", + "tx_page": "https://explorer.stavr.tech/Genesisl1/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Genesisl1/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/genesisl1', - tx_page: 'https://atomscan.com/genesisl1/transactions/${txHash}', - account_page: - 'https://atomscan.com/genesisl1/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/genesisl1", + "tx_page": "https://atomscan.com/genesisl1/transactions/${txHash}", + "account_page": "https://atomscan.com/genesisl1/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'gitopia', - status: 'live', - website: 'https://gitopia.com/', - network_type: 'mainnet', - pretty_name: 'Gitopia', - chain_id: 'gitopia', - bech32_prefix: 'gitopia', - daemon_name: 'gitopiad', - node_home: '$HOME/.gitopia', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ulore', - fixed_min_gas_price: 0.001, - low_gas_price: 0.0012, - average_gas_price: 0.0016, - high_gas_price: 0.0024 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ulore' - } - ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/gitopia/gitopia', - genesis: { - genesis_url: - 'https://github.com/gitopia/mainnet/raw/master/genesis.tar.gz' - }, - recommended_version: 'v3.3.0', - compatible_versions: ['v3.3.0'], - cosmos_sdk_version: 'v0.46.13', - consensus: { - type: 'cometbft', - version: 'v0.34.28' - }, - ibc_go_version: '5.3.1', - ics_enabled: ['ics20-1'], - versions: [ - { - name: 'v2', - recommended_version: 'v2.1.1', - compatible_versions: ['v2.0.0', 'v2.1.1'], - binaries: { - 'linux/amd64': - 'https://server.gitopia.com/releases/Gitopia/gitopia/v2.1.1/gitopiad_2.1.1_linux_amd64.tar.gz', - 'linux/arm64': - 'https://server.gitopia.com/releases/Gitopia/gitopia/v2.1.1/gitopiad_2.1.1_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://server.gitopia.com/releases/Gitopia/gitopia/v2.1.1/gitopiad_2.1.1_darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://server.gitopia.com/releases/Gitopia/gitopia/v2.1.1/gitopiad_2.1.1_darwin_arm64.tar.gz' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '5.0.0', - ics_enabled: ['ics20-1'], - next_version_name: 'v3' - }, - { - name: 'v3', - recommended_version: 'v3.0.1', - compatible_versions: ['v3.0.1'], - binaries: { - 'linux/amd64': - 'https://server.gitopia.com/releases/Gitopia/gitopia/v3.0.1/gitopiad_3.0.1_linux_amd64.tar.gz', - 'linux/arm64': - 'https://server.gitopia.com/releases/Gitopia/gitopia/v3.0.1/gitopiad_3.0.1_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://server.gitopia.com/releases/Gitopia/gitopia/v3.0.1/gitopiad_3.0.1_darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://server.gitopia.com/releases/Gitopia/gitopia/v3.0.1gitopiad_3.0.1_darwin_arm64.tar.gz' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'cometbft', - version: '0.34' - }, - ibc_go_version: '5.3.1', - ics_enabled: ['ics20-1'], - next_version_name: 'v3.2.0' - }, - { - name: 'v3.2.0', - recommended_version: 'v3.2.0', - compatible_versions: ['v3.2.0'], - proposal: 12, - height: 6446000, - cosmos_sdk_version: 'v0.46.13', - consensus: { - type: 'cometbft', - version: 'v0.34.28' - }, - ibc_go_version: '5.3.1', - ics_enabled: ['ics20-1'], - next_version_name: 'v3.3.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "gitopia", + "status": "live", + "website": "https://gitopia.com/", + "network_type": "mainnet", + "pretty_name": "Gitopia", + "chain_id": "gitopia", + "bech32_prefix": "gitopia", + "daemon_name": "gitopiad", + "node_home": "$HOME/.gitopia", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v3.3.0', - recommended_version: 'v3.3.0', - compatible_versions: ['v3.3.0'], - proposal: 14, - height: 6720000, - cosmos_sdk_version: 'v0.46.13', - consensus: { - type: 'cometbft', - version: 'v0.34.28' - }, - ibc_go_version: '5.3.1', - ics_enabled: ['ics20-1'], - next_version_name: '' + "denom": "ulore", + "fixed_min_gas_price": 0.001, + "low_gas_price": 0.0012, + "average_gas_price": 0.0016, + "high_gas_price": 0.0024 } ] }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' - } - ], - description: - 'Gitopia is the next-generation Code Collaboration Platform fuelled by a decentralized network and interactive token economy. It is designed to optimize the open-source software development process through collaboration, transparency, and incentivization.', - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:11356', - provider: 'polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:11356', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'gitopia-mainnet-seed.autostake.com', - provider: 'autostake' - }, + "staking": { + "staking_tokens": [ { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:11356', - provider: 'WhisperNode 🤐' - }, - { - id: '187425bc3739daaef8cb1d7cf47d655117396dbe', - address: 'seed-gitopia.ibs.team:16660', - provider: 'Inter Blockchain Services' - }, - { - id: '9aa8a73ea9364aa3cf7806d4dd25b6aed88d8152', - address: 'gitopia-seed.mzonder.com:11056', - provider: 'MZONDER' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'gitopia.rpc.kjnodes.com:14159', - provider: 'kjnodes' - }, - { - id: 'f280239045928af4e1b289d9df4059b7f941777b', - address: 'seed-node.mms.team:35656', - provider: 'MMS' - }, - { - id: 'a74403b9fbf58ba7538e0a9584510c67a0877beb', - address: 'rpc.gitopia.nodestake.top:666', - provider: 'NodeStake' - }, - { - id: '6d41d36d54abd868c4cdaf5b956ac047327bff67', - address: 'seeds-3.anode.team:10260', - provider: 'AlxVoy ⚡ ANODE.TEAM' + "denom": "ulore" } ], - persistent_peers: [ - { - id: '8f67a2fcdd7ade970b1983bf1697111d35dfdd6f', - address: '52.79.199.137:26656', - provider: 'nodestake' - }, - { - id: '4979b96c4453efb66c677876fe0e9109b15a8440', - address: '65.21.235.144:26656', - provider: '[NODERS]TEAM' - }, - { - id: 'be0c48bbcefb13702008d819ee4292f5afa4dc4c', - address: '148.251.235.130:11656', - provider: 'Staketab' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'gitopia-mainnet-peer.autostake.com', - provider: 'autostake' - }, - { - id: 'c6f7524b45ae2d9da2a272858c804fd67a29cf72', - address: '95.214.53.218:33656', - provider: 'genznodes' - }, - { - id: 'adc84ea4f4c2e758ec83b0487c52a5d2d1ed1d56', - address: 'seeds-gitopia.hexnodes.co:16656', - provider: 'Hexnodes' - }, - { - id: 'c903e98ce3923865f521151d97f36510157c8bc1', - address: 'gitopia.peers.stavr.tech:51056', - provider: '🔥STAVR🔥' - }, - { - id: 'fdf51e3445ef8b3b28c313d98c65516b8faf3317', - address: 'rpc.gitopia.indonode.net:26656', - provider: 'Indonode' - }, - { - id: 'd5525675ceb88d2c4f4df828ec01d237bcc11950', - address: '138.201.21.197:26656', - provider: 'StakeTown' - }, - { - id: '1c90a7d16090e69fca5d53b6558b2cef7b8f88a8', - address: '116.203.35.46:36656', - provider: 'Stake-Take' - }, - { - id: 'cc7d9f8d2fa2225063d8d5ac3fe70cbb64d7a0f7', - address: 'gitopia.ramuchi.tech:20000', - provider: 'ramuchi.tech' - }, - { - id: '4112e75275da1fef14904036a76354a13d40dc8f', - address: 'peer-gitopia.mms.team:31656', - provider: 'MMS' - }, - { - id: '31ef9b9bceeea15fcafe4a3be0a81c8c04071bc7', - address: 'mainnet-gitopia.konsortech.xyz:38656', - provider: 'KonsorTech' - }, - { - id: 'abd217aa49d5ee86c271d04feef2cf4c97ff8d55', - address: 'gitopia.p2p.roomit.xyz:16601', - provider: 'RoomIT' - }, - { - id: 'f93ac5cc7f69e825e87bf32556b4633ce543bb6e', - address: 'gitopia.peer.stakevillage.net:14156', - provider: 'Stake Village' - }, - { - id: '901c393d17c1e6094cbbc83c34f167a67bb5fab1', - address: '65.108.70.119:36656', - provider: 'AlxVoy ⚡ ANODE.TEAM' - }, - { - id: 'aa26aa0baa5dfc41c126d16d4dc48bb45151d560', - address: 'gitopia-mainnet.peers.l0vd.com:22656', - provider: 'L0vd.com ❤️' - } - ] + "lock_duration": { + "time": "1814400s" + } }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.46.13" + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png" + } + ], + "description": "Gitopia is the next-generation Code Collaboration Platform fuelled by a decentralized network and interactive token economy. It is designed to optimize the open-source software development process through collaboration, transparency, and incentivization.", + "apis": { + "rpc": [ { - address: 'http://gitopia.rpc.nodersteam.com:20657', - provider: '[NODERS]TEAM' + "address": "http://gitopia.rpc.nodersteam.com:20657", + "provider": "[NODERS]TEAM" }, { - address: 'https://gitopia-rpc.polkachu.com:443', - provider: 'polkachu' + "address": "https://gitopia-rpc.polkachu.com:443", + "provider": "polkachu" }, { - address: 'https://gitopia-rpc.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://gitopia-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc.gitopia.nodestake.top:443', - provider: 'nodestake' + "address": "https://rpc.gitopia.nodestake.top:443", + "provider": "nodestake" }, { - address: 'https://gitopia-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://gitopia-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://gitopia-rpc.ibs.team:443', - provider: 'Inter Blockchain Services' + "address": "https://gitopia-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" }, { - address: 'https://m-gitopia.rpc.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-gitopia.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'http://gitopia.rpc.m.stavr.tech:51057', - provider: '🔥STAVR🔥' + "address": "http://gitopia.rpc.m.stavr.tech:51057", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc-gitopia.nodeist.net', - provider: 'Nodeist' + "address": "https://rpc-gitopia.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://gitopia-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://gitopia-rpc.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://rpc-gitopia.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-gitopia.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://gitopia.rpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://gitopia.rpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://gitopia-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://gitopia-rpc.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://rpc.gitopia.silentvalidator.com', - provider: 'silent' + "address": "https://rpc.gitopia.silentvalidator.com", + "provider": "silent" }, { - address: 'https://gitopia-rpc.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://gitopia-rpc.ramuchi.tech", + "provider": "ramuchi.tech" }, { - address: 'https://rpc-gitopia.mzonder.com', - provider: 'MZONDER' + "address": "https://rpc-gitopia.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://gitopia.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://gitopia.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://rpc.gitopia.sgtstake.com', - provider: 'SGTstake' + "address": "https://rpc.gitopia.sgtstake.com", + "provider": "SGTstake" }, { - address: 'https://mainnet-gitopia-rpc.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-gitopia-rpc.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://rpc.gitopia.quokkastake.io', - provider: '🐹 Quokka Stake' + "address": "https://rpc.gitopia.quokkastake.io", + "provider": "🐹 Quokka Stake" }, { - address: 'http://gitopia.rpc.tarabukin.work:60557', - provider: 'tarabukinivan' + "address": "http://gitopia.rpc.tarabukin.work:60557", + "provider": "tarabukinivan" }, { - address: 'https://rpc.gitopia.roomit.xyz', - provider: 'RoomIT' + "address": "https://rpc.gitopia.roomit.xyz", + "provider": "RoomIT" }, { - address: 'https://gitopia.rpc.moonbridge.team', - provider: 'Moonbridge' + "address": "https://gitopia.rpc.moonbridge.team", + "provider": "Moonbridge" }, { - address: 'https://gitopia-rpc.stakeangle.com', - provider: 'StakeAngle' + "address": "https://gitopia-rpc.stakeangle.com", + "provider": "StakeAngle" }, { - address: 'https://gitopia.rpc.m.anode.team', - provider: 'AlxVoy ⚡ ANODE.TEAM' + "address": "https://gitopia.rpc.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" }, { - address: 'https://rpc.gitopia.sbgid.com', - provider: 'kokos' + "address": "https://rpc.gitopia.sbgid.com", + "provider": "kokos" }, { - address: 'https://gitopia.rpc.stakevillage.net', - provider: 'Stake Village' + "address": "https://gitopia.rpc.stakevillage.net", + "provider": "Stake Village" }, { - address: 'https://gitopia-rpc.enigma-validator.com/', - provider: 'Enigma' + "address": "https://gitopia-rpc.enigma-validator.com/", + "provider": "Enigma" }, { - address: 'https://rpc.gitopia.tcnetwork.io/', - provider: 'TC Network' + "address": "https://rpc.gitopia.tcnetwork.io/", + "provider": "TC Network" }, { - address: 'https://gitopia.nodejumper.io:443', - provider: 'NODEJUMPER' + "address": "https://gitopia.nodejumper.io:443", + "provider": "NODEJUMPER" }, { - address: 'https://rpc.gitopia.stakeup.tech/', - provider: 'StakeUp' + "address": "https://rpc.gitopia.stakeup.tech/", + "provider": "StakeUp" }, { - address: 'https://gitopia-mainnet.rpc.l0vd.com:443', - provider: 'L0vd.com ❤️' + "address": "https://gitopia-mainnet.rpc.l0vd.com:443", + "provider": "L0vd.com ❤️" } ], - rest: [ + "rest": [ { - address: 'http://gitopia.api.nodersteam.com:20017', - provider: '[NODERS]TEAM' + "address": "http://gitopia.api.nodersteam.com:20017", + "provider": "[NODERS]TEAM" }, { - address: 'https://gitopia-api.polkachu.com:443', - provider: 'polkachu' + "address": "https://gitopia-api.polkachu.com:443", + "provider": "polkachu" }, { - address: 'https://gitopia-api.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://gitopia-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api.gitopia.nodestake.top:443', - provider: 'nodestake' + "address": "https://api.gitopia.nodestake.top:443", + "provider": "nodestake" }, { - address: 'https://gitopia-rest.staketab.org', - provider: 'Staketab' + "address": "https://gitopia-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://gitopia-mainnet-lcd.autostake.com:443', - provider: 'autostake' + "address": "https://gitopia-mainnet-lcd.autostake.com:443", + "provider": "autostake" }, { - address: 'https://gitopia-api.ibs.team:443', - provider: 'Inter Blockchain Services' + "address": "https://gitopia-api.ibs.team:443", + "provider": "Inter Blockchain Services" }, { - address: 'https://m-gitopia.api.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-gitopia.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://gitopia.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://gitopia.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api-gitopia.nodeist.net', - provider: 'Nodeist' + "address": "https://api-gitopia.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://gitopia-api.genznodes.dev', - provider: 'genznodes' + "address": "https://gitopia-api.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://lcd-gitopia.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-gitopia.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://gitopia.api.liveraven.net', - provider: 'LiveRaveN' + "address": "https://gitopia.api.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://gitopia-api.stake-town.com', - provider: 'StakeTown' + "address": "https://gitopia-api.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://api.gitopia.silentvalidator.com', - provider: 'silent' + "address": "https://api.gitopia.silentvalidator.com", + "provider": "silent" }, { - address: 'https://gitopia-api.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://gitopia-api.ramuchi.tech", + "provider": "ramuchi.tech" }, { - address: 'https://api-gitopia.mzonder.com', - provider: 'MZONDER' + "address": "https://api-gitopia.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://gitopia.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://gitopia.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://api.gitopia.sgtstake.com/', - provider: 'SGTstake' + "address": "https://api.gitopia.sgtstake.com/", + "provider": "SGTstake" }, { - address: 'https://mainnet-gitopia-api.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-gitopia-api.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://api.gitopia.quokkastake.io', - provider: '🐹 Quokka Stake' + "address": "https://api.gitopia.quokkastake.io", + "provider": "🐹 Quokka Stake" }, { - address: 'https://api.gitopia.roomit.xyz', - provider: 'RoomIT' + "address": "https://api.gitopia.roomit.xyz", + "provider": "RoomIT" }, { - address: 'https://gitopia.api.moonbridge.team', - provider: 'Moonbridge' + "address": "https://gitopia.api.moonbridge.team", + "provider": "Moonbridge" }, { - address: 'http://gitopia-rpc.stakeangle.com:41317', - provider: 'StakeAngle' + "address": "http://gitopia-rpc.stakeangle.com:41317", + "provider": "StakeAngle" }, { - address: 'https://gitopia.api.m.anode.team', - provider: 'AlxVoy ⚡ ANODE.TEAM' + "address": "https://gitopia.api.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" }, { - address: 'https://api.gitopia.sbgid.com', - provider: 'kokos' + "address": "https://api.gitopia.sbgid.com", + "provider": "kokos" }, { - address: 'https://gitopia.api.stakevillage.net', - provider: 'Stake Village' + "address": "https://gitopia.api.stakevillage.net", + "provider": "Stake Village" }, { - address: 'https://gitopia-lcd.enigma-validator.com/', - provider: 'Enigma' + "address": "https://gitopia-lcd.enigma-validator.com/", + "provider": "Enigma" }, { - address: 'https://rest.gitopia.tcnetwork.io/', - provider: 'TC Network' + "address": "https://rest.gitopia.tcnetwork.io/", + "provider": "TC Network" }, { - address: 'https://gitopia.nodejumper.io:1317', - provider: 'NODEJUMPER' + "address": "https://gitopia.nodejumper.io:1317", + "provider": "NODEJUMPER" }, { - address: 'https://api.gitopia.stakeup.tech/', - provider: 'StakeUp' + "address": "https://api.gitopia.stakeup.tech/", + "provider": "StakeUp" }, { - address: 'https://gitopia-mainnet.api.l0vd.com:443', - provider: 'L0vd.com ❤️' + "address": "https://gitopia-mainnet.api.l0vd.com:443", + "provider": "L0vd.com ❤️" } ], - grpc: [ + "grpc": [ { - address: 'grpc.gitopia.indonode.net:26090', - provider: 'indonode' + "address": "grpc.gitopia.indonode.net:26090", + "provider": "indonode" }, { - address: 'gitopia.grpc.nodersteam.com:9201', - provider: '[NODERS]TEAM' + "address": "gitopia.grpc.nodersteam.com:9201", + "provider": "[NODERS]TEAM" }, { - address: 'gitopia-grpc.polkachu.com:11390', - provider: 'polkachu' + "address": "gitopia-grpc.polkachu.com:11390", + "provider": "polkachu" }, { - address: 'services.staketab.com:9410', - provider: 'Staketab' + "address": "services.staketab.com:9410", + "provider": "Staketab" }, { - address: 'https://gitopia-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://gitopia-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://grpc.gitopia.nodestake.top:443', - provider: 'nodestake' + "address": "https://grpc.gitopia.nodestake.top:443", + "provider": "nodestake" }, { - address: 'https://grpc-gitopia.nodeist.net', - provider: 'Nodeist' + "address": "https://grpc-gitopia.nodeist.net", + "provider": "Nodeist" }, { - address: 'http://gitopia.grpc.m.stavr.tech:5123', - provider: '🔥STAVR🔥' + "address": "http://gitopia.grpc.m.stavr.tech:5123", + "provider": "🔥STAVR🔥" }, { - address: 'gitopia-grpc.genznodes.dev:33090', - provider: 'genznodes' + "address": "gitopia-grpc.genznodes.dev:33090", + "provider": "genznodes" }, { - address: 'https://grpc.gitopia.hexnodes.co:16090', - provider: 'Hexnodes' + "address": "https://grpc.gitopia.hexnodes.co:16090", + "provider": "Hexnodes" }, { - address: 'https://gitopia.grpc.liveraven.net:443', - provider: 'LiveRaveN' + "address": "https://gitopia.grpc.liveraven.net:443", + "provider": "LiveRaveN" }, { - address: 'https://grpc.gitopia.indonode.net:26090', - provider: 'Indonode' + "address": "https://grpc.gitopia.indonode.net:26090", + "provider": "Indonode" }, { - address: 'gitopia-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "gitopia-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'grpc.gitopia.silentvalidator.com:443', - provider: 'silent' + "address": "grpc.gitopia.silentvalidator.com:443", + "provider": "silent" }, { - address: 'https://gitopia-grpc.ramuchi.tech:16001', - provider: 'ramuchi.tech' + "address": "https://gitopia-grpc.ramuchi.tech:16001", + "provider": "ramuchi.tech" }, { - address: 'grpc-gitopia.mzonder.com:443', - provider: 'MZONDER' + "address": "grpc-gitopia.mzonder.com:443", + "provider": "MZONDER" }, { - address: 'gitopia.grpc.kjnodes.com:14190', - provider: 'kjnodes' + "address": "gitopia.grpc.kjnodes.com:14190", + "provider": "kjnodes" }, { - address: 'grpc.gitopia.roomit.xyz:8443', - provider: 'RoomIT' + "address": "grpc.gitopia.roomit.xyz:8443", + "provider": "RoomIT" }, { - address: 'https://gitopia.grpc.moonbridge.team', - provider: 'Moonbridge' + "address": "https://gitopia.grpc.moonbridge.team", + "provider": "Moonbridge" }, { - address: 'http://gitopia-rpc.stakeangle.com:41390', - provider: 'StakeAngle' + "address": "http://gitopia-rpc.stakeangle.com:41390", + "provider": "StakeAngle" }, { - address: 'https://gitopia.grpc.m.anode.team', - provider: 'AlxVoy ⚡ ANODE.TEAM' + "address": "https://gitopia.grpc.m.anode.team", + "provider": "AlxVoy ⚡ ANODE.TEAM" }, { - address: 'https://grpc.gitopia.sbgid.com', - provider: 'kokos' + "address": "https://grpc.gitopia.sbgid.com", + "provider": "kokos" }, { - address: 'mainnet-gitopia-grpc.konsortech.xyz:38090', - provider: 'KonsorTech' + "address": "mainnet-gitopia-grpc.konsortech.xyz:38090", + "provider": "KonsorTech" }, { - address: 'gitopia.grpc.stakevillage.net:14190', - provider: 'Stake Village' + "address": "gitopia.grpc.stakevillage.net:14190", + "provider": "Stake Village" }, { - address: 'gitopia.nodejumper.io:9090', - provider: 'NODEJUMPER' + "address": "gitopia.nodejumper.io:9090", + "provider": "NODEJUMPER" }, { - address: 'grpc.gitopia.stakeup.tech:443', - provider: 'StakeUp' + "address": "grpc.gitopia.stakeup.tech:443", + "provider": "StakeUp" }, { - address: 'gitopia-mainnet.grpc.l0vd.com:80', - provider: 'L0vd.com ❤️' + "address": "gitopia-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com ❤️" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://ping.pub/gitopia', - tx_page: 'https://ping.pub/gitopia/tx/${txHash}', - account_page: 'https://ping.pub/gitopia/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://ping.pub/gitopia", + "tx_page": "https://ping.pub/gitopia/tx/${txHash}", + "account_page": "https://ping.pub/gitopia/account/${accountAddress}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Gitopia-M', - tx_page: 'https://explorer.stavr.tech/Gitopia-M/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Gitopia-M/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Gitopia-M", + "tx_page": "https://explorer.stavr.tech/Gitopia-M/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Gitopia-M/account/${accountAddress}" }, { - kind: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀', - url: 'https://exp.utsa.tech/gitopia', - tx_page: 'https://exp.utsa.tech/gitopia/tx/${txHash}', - account_page: 'https://exp.utsa.tech/gitopia/account/${accountAddress}' + "kind": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀", + "url": "https://exp.utsa.tech/gitopia", + "tx_page": "https://exp.utsa.tech/gitopia/tx/${txHash}", + "account_page": "https://exp.utsa.tech/gitopia/account/${accountAddress}" }, { - kind: 'Nodeist', - url: 'https://exp.nodeist.net/gitopia', - tx_page: 'https://exp.nodeist.net/gitopia/tx/${txHash}', - account_page: - 'https://exp.nodeist.net/gitopia/account/${accountAddress}' + "kind": "Nodeist", + "url": "https://exp.nodeist.net/gitopia", + "tx_page": "https://exp.nodeist.net/gitopia/tx/${txHash}", + "account_page": "https://exp.nodeist.net/gitopia/account/${accountAddress}" }, { - kind: 'Stake-Take', - url: 'https://explorer.stake-take.com/gitopia', - tx_page: 'https://explorer.stake-take.com/gitopia/tx/${txHash}', - account_page: - 'https://explorer.stake-take.com/gitopia/account/${accountAddress}' + "kind": "Stake-Take", + "url": "https://explorer.stake-take.com/gitopia", + "tx_page": "https://explorer.stake-take.com/gitopia/tx/${txHash}", + "account_page": "https://explorer.stake-take.com/gitopia/account/${accountAddress}" }, { - kind: 'NODEXPLORER', - url: 'https://explorer.nodexcapital.com/gitopia', - tx_page: 'https://explorer.nodexcapital.com/gitopia/tx/${txHash}', - account_page: - 'https://explorer.nodexcapital.com/gitopia/account/${accountAddress}' + "kind": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com/gitopia", + "tx_page": "https://explorer.nodexcapital.com/gitopia/tx/${txHash}", + "account_page": "https://explorer.nodexcapital.com/gitopia/account/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/gitopia', - tx_page: 'https://explorer.tcnetwork.io/gitopia/transaction/${txHash}', - account_page: - 'https://explorer.tcnetwork.io/gitopia/account/${accountAddress}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/gitopia", + "tx_page": "https://explorer.tcnetwork.io/gitopia/transaction/${txHash}", + "account_page": "https://explorer.tcnetwork.io/gitopia/account/${accountAddress}" }, { - kind: 'NodeStake', - url: 'https://explorer.nodestake.top/gitopia', - tx_page: 'https://explorer.nodestake.top/gitopia/tx/${txHash}', - account_page: - 'https://explorer.nodestake.top/gitopia/account/${accountAddress}' + "kind": "NodeStake", + "url": "https://explorer.nodestake.top/gitopia", + "tx_page": "https://explorer.nodestake.top/gitopia/tx/${txHash}", + "account_page": "https://explorer.nodestake.top/gitopia/account/${accountAddress}" }, { - kind: 'RoomIT', - url: 'https://explorer.tendermint.roomit.xyz/gitopia', - tx_page: - 'https://explorer.tendermint.roomit.xyz/gitopia/transaction/${txHash}', - account_page: - 'https://explorer.tendermint.roomit.xyz/gitopia/account/${accountAddress}' + "kind": "RoomIT", + "url": "https://explorer.tendermint.roomit.xyz/gitopia", + "tx_page": "https://explorer.tendermint.roomit.xyz/gitopia/transaction/${txHash}", + "account_page": "https://explorer.tendermint.roomit.xyz/gitopia/account/${accountAddress}" }, { - kind: 'Moonbridge', - url: 'https://explorer.moonbridge.team/gitopia', - tx_page: 'https://explorer.moonbridge.team/gitopia/tx/${txHash}', - account_page: - 'https://explorer.moonbridge.team/gitopia/account/${accountAddress}' + "kind": "Moonbridge", + "url": "https://explorer.moonbridge.team/gitopia", + "tx_page": "https://explorer.moonbridge.team/gitopia/tx/${txHash}", + "account_page": "https://explorer.moonbridge.team/gitopia/account/${accountAddress}" }, { - kind: 'KonsorTech', - url: 'https://explorer.konsortech.xyz/gitopia', - tx_page: 'https://explorer.konsortech.xyz/gitopia/tx/${txHash}', - account_page: - 'https://explorer.konsortech.xyz/gitopia/account/${accountAddress}' + "kind": "KonsorTech", + "url": "https://explorer.konsortech.xyz/gitopia", + "tx_page": "https://explorer.konsortech.xyz/gitopia/tx/${txHash}", + "account_page": "https://explorer.konsortech.xyz/gitopia/account/${accountAddress}" }, { - kind: 'Stake Village', - url: 'https://exp.stakevillage.net/gitopia', - tx_page: 'https://exp.stakevillage.net/gitopia/tx/${txHash}', - account_page: - 'https://exp.stakevillage.net/gitopia/account/${accountAddress}' + "kind": "Stake Village", + "url": "https://exp.stakevillage.net/gitopia", + "tx_page": "https://exp.stakevillage.net/gitopia/tx/${txHash}", + "account_page": "https://exp.stakevillage.net/gitopia/account/${accountAddress}" }, { - kind: 'AlxVoy ⚡ ANODE.TEAM', - url: 'https://main.anode.team/gitopia', - tx_page: 'https://main.anode.team/gitopia/tx/${txHash}', - account_page: - 'https://main.anode.team/gitopia/account/${accountAddress}' + "kind": "AlxVoy ⚡ ANODE.TEAM", + "url": "https://main.anode.team/gitopia", + "tx_page": "https://main.anode.team/gitopia/tx/${txHash}", + "account_page": "https://main.anode.team/gitopia/account/${accountAddress}" }, { - kind: 'L0vd.com ❤️', - url: 'https://chain-services.l0vd.com/mainnets/gitopia', - tx_page: - 'https://chain-services.l0vd.com/mainnets/gitopia/tx/${txHash}', - account_page: - 'https://chain-services.l0vd.com/mainnets/gitopia/account/${accountAddress}' + "kind": "L0vd.com ❤️", + "url": "https://chain-services.l0vd.com/mainnets/gitopia", + "tx_page": "https://chain-services.l0vd.com/mainnets/gitopia/tx/${txHash}", + "account_page": "https://chain-services.l0vd.com/mainnets/gitopia/account/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png" } }, { - $schema: '../chain.schema.json', - chain_name: 'gravitybridge', - status: 'live', - network_type: 'mainnet', - website: 'https://www.gravitybridge.net/', - pretty_name: 'Gravity Bridge', - chain_id: 'gravity-bridge-3', - bech32_prefix: 'gravity', - daemon_name: 'gravity', - node_home: '$HOME/.gravity', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ugraviton', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0, - high_gas_price: 0.035 - }, - { - denom: 'gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48', - low_gas_price: 0.0002, - average_gas_price: 0.0005, - high_gas_price: 0.0008 - }, - { - denom: 'gravity0xdAC17F958D2ee523a2206206994597C13D831ec7', - low_gas_price: 0.0002, - average_gas_price: 0.0005, - high_gas_price: 0.0008 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ugraviton' - } - ] - }, - codebase: { - git_repo: 'https://github.com/Gravity-Bridge/Gravity-Bridge', - recommended_version: 'v1.11.1', - compatible_versions: ['v1.11.1'], - binaries: { - 'linux/amd64': - 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.11.1/gravity-linux-amd64' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/Gravity-Bridge/Gravity-Docs/main/genesis.json' - }, - versions: [ - { - name: 'pleiades2', - recommended_version: 'v1.8.0', - compatible_versions: ['v1.8.0'], - binaries: { - 'linux/amd64': - 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.8.0/gravity-linux-amd64', - 'linux/arm64': - 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.8.0/gravity-linux-arm64', - 'darwin/amd64': - 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.8.0/gravity-darwin-amd64', - 'windows/amd64': - 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.8.0/gravity-windows-amd64.exe' - }, - next_version_name: 'orion' - }, + "$schema": "../chain.schema.json", + "chain_name": "gravitybridge", + "status": "live", + "network_type": "mainnet", + "website": "https://www.gravitybridge.net/", + "pretty_name": "Gravity Bridge", + "chain_id": "gravity-bridge-3", + "bech32_prefix": "gravity", + "daemon_name": "gravity", + "node_home": "$HOME/.gravity", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'orion', - height: 6698820, - recommended_version: 'v1.9.1', - proposal: 172, - compatible_versions: ['v1.9.0', 'v1.9.1'], - binaries: { - 'linux/amd64': - 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.9.1/gravity-linux-amd64' - }, - next_version_name: 'antares' + "denom": "ugraviton", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0.035 }, { - name: 'antares', - height: 7440250, - recommended_version: 'v1.10.2', - proposal: 183, - compatible_versions: ['v1.10.0', 'v1.10.2'], - binaries: { - 'linux/amd64': - 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.10.2/gravity-linux-amd64' - }, - next_version_name: 'apollo' + "denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "low_gas_price": 0.0002, + "average_gas_price": 0.0005, + "high_gas_price": 0.0008 }, { - name: 'apollo', - height: 9244100, - recommended_version: 'v1.11.1', - proposal: 212, - compatible_versions: ['v1.11.1'], - binaries: { - 'linux/amd64': - 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.11.1/gravity-linux-amd64' - }, - next_version_name: '' + "denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "low_gas_price": 0.0002, + "average_gas_price": 0.0005, + "high_gas_price": 0.0008 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' - }, - description: - 'An open, decentralized bridge that unlocks the power of interoperability & liquidity between blockchain ecosystems.', - peers: { - seeds: [ - { - id: '2b089bfb4c7366efb402b48376a7209632380c9c', - address: '65.19.136.133:26656', - provider: 'althea' - }, - { - id: '63e662f5e048d4902c7c7126291cf1fc17687e3c', - address: '95.211.103.175:26656', - provider: 'amhost' - }, + "staking": { + "staking_tokens": [ { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:14256', - provider: 'Polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:14256', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: '86bd5cb6e762f673f1706e5889e039d5406b4b90', - address: 'gravity.seed.node75.org:10556', - provider: 'Pro-Nodes' - }, - { - id: '4e595d6781b122b2aea91b08da0ad97f708bf52a', - address: 'seed-gravity-bridge-01.stakeflow.io:1306', - provider: 'Stakeflow' - }, - { - id: '9f4ed62cd0b60d7c4bdbdce5db5794211707528b', - address: 'seed-gravity.ibs.team:16661', - provider: 'Inter Blockchain Services' - } - ], - persistent_peers: [ - { - id: 'b9180ddd3329ddaea74fe6fbdc729506b90f313b', - address: 'gravity.ramuchi.tech:36656', - provider: 'ramuchi.tech' - }, - { - id: '4e595d6781b122b2aea91b08da0ad97f708bf52a', - address: 'peer-gravity-bridge-01.stakeflow.io:1306', - provider: 'Stakeflow' - }, - { - id: '64a8bf0acf5385086409c1e1cc3cc9b9e5645243', - address: '65.21.91.99:26776', - provider: 'Staketab' + "denom": "ugraviton" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg" + }, + "description": "An open, decentralized bridge that unlocks the power of interoperability & liquidity between blockchain ecosystems.", + "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-gravitybridge-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-gravitybridge-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://gravitybridge-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://gravitybridge-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc.gravity.bh.rocks/', - provider: 'BlockHunters 🎯' + "address": "https://rpc.gravity.bh.rocks/", + "provider": "BlockHunters 🎯" }, { - address: 'https://gravity-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://gravity-rpc.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://gravity-rpc.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://gravity-rpc.ramuchi.tech", + "provider": "ramuchi.tech" }, { - address: 'https://rpc-gravity-bridge-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-gravity-bridge-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://gravity-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://gravity-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://gravity-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://gravity-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://rpc.g-bridge.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.g-bridge.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ + "rest": [ { - address: 'https://gravitychain.io:1317', - provider: 'althea' + "address": "https://gravitychain.io:1317", + "provider": "althea" }, { - address: 'https://api-gravitybridge-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-gravitybridge-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://gravity-api.polkachu.com', - provider: 'Polkachu' + "address": "https://gravity-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://gravitybridge-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://gravitybridge-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api.gravity.bh.rocks/', - provider: 'BlockHunters 🎯' + "address": "https://api.gravity.bh.rocks/", + "provider": "BlockHunters 🎯" }, { - address: 'https://gravity-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://gravity-api.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://gravity-api.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://gravity-api.ramuchi.tech", + "provider": "ramuchi.tech" }, { - address: 'https://api-gravity-bridge-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-gravity-bridge-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://gravity-rest.staketab.org', - provider: 'Staketab' + "address": "https://gravity-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://gravity-api.w3coins.io', - provider: 'w3coins' + "address": "https://gravity-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://lcd.g-bridge.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.g-bridge.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - 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.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-gravitybridge-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'gravity-grpc.polkachu.com:14290', - provider: 'Polkachu' + "address": "gravity-grpc.polkachu.com:14290", + "provider": "Polkachu" }, { - address: 'gravitybridge-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "gravitybridge-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://gravity-grpc.ramuchi.tech:10090', - provider: 'ramuchi.tech' + "address": "https://gravity-grpc.ramuchi.tech:10090", + "provider": "ramuchi.tech" }, { - address: 'grpc-gravity-bridge-01.stakeflow.io:1302', - provider: 'Stakeflow' + "address": "grpc-gravity-bridge-01.stakeflow.io:1302", + "provider": "Stakeflow" }, { - address: 'services.staketab.com:9017', - provider: 'Staketab' + "address": "services.staketab.com:9017", + "provider": "Staketab" }, { - address: 'gravity-grpc.w3coins.io:14290', - provider: 'w3coins' + "address": "gravity-grpc.w3coins.io:14290", + "provider": "w3coins" }, { - address: 'https://grpc.g-bridge.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.g-bridge.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/gravitybridge', - tx_page: 'https://app.ezstaking.io/gravitybridge/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/gravitybridge/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/gravitybridge", + "tx_page": "https://app.ezstaking.io/gravitybridge/txs/${txHash}", + "account_page": "https://app.ezstaking.io/gravitybridge/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/gravity-bridge', - tx_page: - 'https://www.mintscan.io/gravity-bridge/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/gravity-bridge/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/gravity-bridge", + "tx_page": "https://www.mintscan.io/gravity-bridge/transactions/${txHash}", + "account_page": "https://www.mintscan.io/gravity-bridge/accounts/${accountAddress}" }, { - 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}', - account_page: - 'https://atomscan.com/gravity-bridge/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/gravity-bridge", + "tx_page": "https://atomscan.com/gravity-bridge/transactions/${txHash}", + "account_page": "https://atomscan.com/gravity-bridge/accounts/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/gravitybridge', - tx_page: - 'https://explorer.tcnetwork.io/gravitybridge/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/gravitybridge", + "tx_page": "https://explorer.tcnetwork.io/gravitybridge/transaction/${txHash}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/gravity-bridge', - account_page: - 'https://stakeflow.io/gravity-bridge/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/gravity-bridge", + "account_page": "https://stakeflow.io/gravity-bridge/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'haqq', - status: 'live', - network_type: 'mainnet', - website: 'https://haqq.network/', - pretty_name: 'Haqq Network', - chain_id: 'haqq_11235-1', - bech32_prefix: 'haqq', - node_home: '$HOME/.haqqd', - daemon_name: 'haqqd', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'aISLM', - fixed_min_gas_price: 250000000, - low_gas_price: 20000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'aISLM' - } - ] - }, - codebase: { - git_repo: 'https://github.com/haqq-network/haqq', - recommended_version: 'v1.7.0', - compatible_versions: ['v1.7.0'], - binaries: { - 'linux/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Windows_x86_64.zip' - }, - cosmos_sdk_version: 'v0.47.5-evmos', - consensus: { - type: 'cometbft', - version: 'v0.37.3' - }, - ibc_go_version: '7.3.1', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/haqq-network/mainnet/master/genesis.json' - }, - versions: [ - { - name: 'v1.0.2', - tag: 'v1.0.2', - recommended_version: 'v1.0.2', - compatible_versions: ['v1.0.2'], - proposal: 4, - height: 1027509, - cosmos_sdk_version: 'v0.45.5-0.20220523154235-2921a1c3c918', - consensus: { - type: 'tendermint', - version: 'v0.34.20-0.20220517115723-e6f071164839' - }, - ibc_go_version: '3.1.0', - next_version_name: 'v1.1.9' - }, - { - name: 'v1.1.9', - tag: 'v1.1.9', - recommended_version: 'v1.1.9', - compatible_versions: ['v1.1.9'], - proposal: 6, - height: 2853700, - cosmos_sdk_version: 'v0.45.6', - consensus: { - type: 'tendermint', - version: 'v0.34.20-0.20220517115723-e6f071164839' - }, - ibc_go_version: '3.1.1', - next_version_name: 'v1.2.1' - }, - { - name: 'v1.2.1', - tag: 'v1.2.1', - recommended_version: 'v1.2.1', - compatible_versions: ['v1.2.1'], - proposal: 7, - height: 2865555, - cosmos_sdk_version: 'v0.45.9', - consensus: { - type: 'tendermint', - version: 'v0.34.21' - }, - ibc_go_version: '3.2.0', - next_version_name: 'v1.3.0' - }, - { - name: 'v1.3.0', - tag: 'v1.3.0', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'], - proposal: 8, - height: 5978000, - cosmos_sdk_version: 'v0.45.9', - consensus: { - type: 'tendermint', - version: 'v0.34.21' - }, - ibc_go_version: '3.2.0', - next_version_name: 'v1.3.1' - }, - { - name: 'v1.3.1', - tag: 'v1.3.1', - recommended_version: 'v1.3.1', - compatible_versions: ['v1.3.1'], - proposal: 9, - height: 5978800, - cosmos_sdk_version: 'v0.45.9', - consensus: { - type: 'tendermint', - version: 'v0.34.21' - }, - ibc_go_version: '3.2.0', - next_version_name: 'v1.4.0' - }, - { - name: 'v1.4.0', - tag: 'v1.4.0', - recommended_version: 'v1.4.0', - compatible_versions: ['v1.4.0'], - proposal: 10, - height: 6134000, - cosmos_sdk_version: 'v0.46.9-ledger', - consensus: { - type: 'tendermint', - version: 'v0.34.26' - }, - ibc_go_version: 'v5.2.1', - next_version_name: 'v1.4.1' - }, - { - name: 'v1.4.1', - tag: 'v1.4.1', - recommended_version: 'v1.4.1', - compatible_versions: ['v1.4.1'], - cosmos_sdk_version: 'v0.46.9-ledger', - consensus: { - type: 'tendermint', - version: '0.34.26' - }, - ibc_go_version: '5.2.1', - binaries: { - 'linux/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.4.1/haqq_1.4.1_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.4.1/haqq_1.4.1_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.4.1/haqq_1.4.1_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.4.1/haqq_1.4.1_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.4.1/haqq_1.4.1_Windows_x86_64.zip' - }, - next_version_name: 'v1.5.0' - }, - { - name: 'v1.5.0', - tag: 'v1.5.0', - recommended_version: 'v1.5.0', - compatible_versions: ['v1.5.0'], - proposal: 18, - height: 7770000, - cosmos_sdk_version: 'v0.46.10-ledger.3', - consensus: { - type: 'tendermint', - version: '0.34.26' - }, - ibc_go_version: '5.2.1', - binaries: { - 'linux/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.5.0/haqq_1.5.0_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.5.0/haqq_1.5.0_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.5.0/haqq_1.5.0_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.5.0/haqq_1.5.0_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.5.0/haqq_1.5.0_Windows_x86_64.zip' - }, - next_version_name: 'v1.6.0' - }, - { - name: 'v1.6.0', - tag: 'v1.6.0', - recommended_version: 'v1.6.0', - compatible_versions: ['v1.6.0'], - proposal: 21, - height: 8002000, - cosmos_sdk_version: 'v0.46.13-ledger.3', - consensus: { - type: 'cometbft', - version: '0.34.29' - }, - ibc_go_version: '6.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.0/haqq_1.6.0_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.0/haqq_1.6.0_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.0/haqq_1.6.0_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.0/haqq_1.6.0_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.0/haqq_1.6.0_Windows_x86_64.zip' - }, - next_version_name: 'v1.6.1' - }, - { - name: 'v1.6.1', - tag: 'v1.6.1', - recommended_version: 'v1.6.1', - compatible_versions: ['v1.6.1'], - proposal: 22, - height: 8076500, - cosmos_sdk_version: 'v0.46.13-ledger.3', - consensus: { - type: 'cometbft', - version: '0.34.29' - }, - ibc_go_version: '6.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.1/haqq_1.6.1_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.1/haqq_1.6.1_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.1/haqq_1.6.1_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.1/haqq_1.6.1_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.1/haqq_1.6.1_Windows_x86_64.zip' - }, - next_version_name: 'v1.6.2' - }, - { - name: 'v1.6.2', - tag: 'v1.6.2', - recommended_version: 'v1.6.2', - compatible_versions: ['v1.6.2'], - proposal: 23, - height: 8193000, - cosmos_sdk_version: 'v0.46.13-ledger.3', - consensus: { - type: 'cometbft', - version: '0.34.29' - }, - ibc_go_version: '6.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.2/haqq_1.6.2_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.2/haqq_1.6.2_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.2/haqq_1.6.2_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.2/haqq_1.6.2_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.2/haqq_1.6.2_Windows_x86_64.zip' - }, - next_version_name: 'v1.6.3' - }, - { - name: 'v1.6.3', - tag: 'v1.6.3', - recommended_version: 'v1.6.3', - compatible_versions: ['v1.6.3'], - proposal: 25, - height: 8282000, - cosmos_sdk_version: 'v0.46.13-ledger.3', - consensus: { - type: 'cometbft', - version: '0.34.29' - }, - ibc_go_version: '6.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.3/haqq_1.6.3_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.3/haqq_1.6.3_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.3/haqq_1.6.3_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.3/haqq_1.6.3_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.3/haqq_1.6.3_Windows_x86_64.zip' - }, - next_version_name: 'v1.6.4' - }, - { - name: 'v1.6.4', - tag: 'v1.6.4', - recommended_version: 'v1.6.4', - compatible_versions: ['v1.6.4'], - proposal: 26, - height: 9070000, - cosmos_sdk_version: 'v0.46.13-ledger.3', - consensus: { - type: 'cometbft', - version: '0.34.29' - }, - ibc_go_version: '6.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.4/haqq_1.6.4_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.4/haqq_1.6.4_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.4/haqq_1.6.4_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.4/haqq_1.6.4_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.6.4/haqq_1.6.4_Windows_x86_64.zip' - }, - next_version_name: 'v1.7.0' - }, - { - name: 'v1.7.0', - tag: 'v1.7.0', - recommended_version: 'v1.7.0', - compatible_versions: ['v1.7.0'], - proposal: 27, - height: 9451000, - cosmos_sdk_version: 'v0.47.5-evmos', - consensus: { - type: 'cometbft', - version: 'v0.37.3' - }, - ibc_go_version: '7.3.1', - binaries: { - 'linux/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/haqq-network/haqq/releases/download/v1.7.0/haqq_1.7.0_Windows_x86_64.zip' - }, - next_version_name: '' + "$schema": "../chain.schema.json", + "chain_name": "haqq", + "status": "live", + "network_type": "mainnet", + "website": "https://haqq.network/", + "pretty_name": "Haqq Network", + "chain_id": "haqq_11235-1", + "bech32_prefix": "haqq", + "node_home": "$HOME/.haqqd", + "daemon_name": "haqqd", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "aISLM", + "fixed_min_gas_price": 250000000, + "low_gas_price": 20000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/haqq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/haqq.svg' - }, - peers: { - seeds: [ - { - id: '0533e20e65912f72f2ad88a4c91eefbc634212d7', - address: 'haqq-sync.rpc.p2p.world:26656', - provider: 'P2P.org' - }, - { - id: '977ee99c89207677f116801a595c97979a0c0cd1', - address: '80.240.20.106:26656', - provider: 'kioqq' - }, - { - id: '731f27fe9cd05257fcfc68b96147aec79035f920', - address: 'seed1.haqq.network:26656', - provider: 'Haqq' - }, - { - id: '681da1f78742b2a0f8e0e7dac6e6f72166d82a8c', - address: 'seed2.haqq.network:26656', - provider: 'Haqq' - }, - { - id: 'd8e2d0095763ed3c6f38814e7752eccc3c547913', - address: '167.235.192.194:26656', - provider: 'kioqq' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, + "staking": { + "staking_tokens": [ { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:24056', - provider: 'Lavender.Five Nodes 🐝' - } - ], - persistent_peers: [ - { - id: '0533e20e65912f72f2ad88a4c91eefbc634212d7', - address: 'haqq-sync.rpc.p2p.world:26656', - provider: 'P2P.org' - }, - { - id: '977ee99c89207677f116801a595c97979a0c0cd1', - address: '80.240.20.106:26656', - provider: '[NODERS]TEAM' - }, - { - id: '977ee99c89207677f116801a595c97979a0c0cd1', - address: '80.240.20.106:26656', - provider: 'kioqq' - }, - { - id: '28498a11b7e3bdf7e63fb6c57b07cfcbe89d6a20', - address: 'mainnet-haqq.konsortech.xyz:11656', - provider: 'KonsorTech' + "denom": "aISLM" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.47.5-evmos" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/haqq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/haqq.svg" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.tm.haqq.network', - provider: 'Haqq' + "address": "https://rpc.tm.haqq.network", + "provider": "Haqq" }, { - address: 'https://m-s1-tm.haqq.sh', - provider: 'kioqq' + "address": "https://m-s1-tm.haqq.sh", + "provider": "kioqq" }, { - address: 'http://haqq.rpc.nodersteam.com:19657', - provider: '[NODERS]TEAM' + "address": "http://haqq.rpc.nodersteam.com:19657", + "provider": "[NODERS]TEAM" }, { - address: 'https://rpc.haqq.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.haqq.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://haqq-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://haqq-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://haqq-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://haqq-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-haqq.sr20de.xyz:443', - provider: 'Sr20de' + "address": "https://rpc-haqq.sr20de.xyz:443", + "provider": "Sr20de" } ], - rest: [ + "rest": [ { - address: 'https://rest.cosmos.haqq.network', - provider: 'Haqq' + "address": "https://rest.cosmos.haqq.network", + "provider": "Haqq" }, { - address: 'https://m-s1-sdk.haqq.sh', - provider: 'kioqq' + "address": "https://m-s1-sdk.haqq.sh", + "provider": "kioqq" }, { - address: 'http://haqq.api.nodersteam.com:19017', - provider: '[NODERS]TEAM' + "address": "http://haqq.api.nodersteam.com:19017", + "provider": "[NODERS]TEAM" }, { - address: 'https://api.haqq.nodestake.top', - provider: 'NodeStake' + "address": "https://api.haqq.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://haqq-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://haqq-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://haqq-api.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://haqq-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://mainnet-haqq-api.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-haqq-api.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://api-haqq.sr20de.xyz', - provider: 'Sr20de' + "address": "https://api-haqq.sr20de.xyz", + "provider": "Sr20de" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.cosmos.haqq.network', - provider: 'Haqq' + "address": "https://grpc.cosmos.haqq.network", + "provider": "Haqq" }, { - address: 'grpc://m-s1-grpc.haqq.sh:1337', - provider: 'kioqq' + "address": "grpc://m-s1-grpc.haqq.sh:1337", + "provider": "kioqq" }, { - address: 'haqq.grpc.nodersteam.com:9191', - provider: '[NODERS]TEAM' + "address": "haqq.grpc.nodersteam.com:9191", + "provider": "[NODERS]TEAM" }, { - address: 'https://grpc.haqq.nodestake.top:443', - provider: 'NodeStake' + "address": "https://grpc.haqq.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'haqq-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "haqq-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://haqq-grpc.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://haqq-grpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'mainnet-haqq-grpc.konsortech.xyz:11090', - provider: 'KonsorTech' + "address": "mainnet-haqq-grpc.konsortech.xyz:11090", + "provider": "KonsorTech" }, { - address: 'https://grpc-haqq.sr20de.xyz', - provider: 'Sr20de' + "address": "https://grpc-haqq.sr20de.xyz", + "provider": "Sr20de" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://rpc.eth.haqq.network', - provider: 'Haqq' + "address": "https://rpc.eth.haqq.network", + "provider": "Haqq" }, { - address: 'https://m-s1-evm-rpc.haqq.sh', - provider: 'kioqq' + "address": "https://m-s1-evm-rpc.haqq.sh", + "provider": "kioqq" }, { - address: 'https://jsonrpc.haqq.nodestake.top', - provider: 'NodeStake' + "address": "https://jsonrpc.haqq.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://haqq-evm.publicnode.com', - provider: 'Allnodes.com ⚡️ Nodes & Staking' + "address": "https://haqq-evm.publicnode.com", + "provider": "Allnodes.com ⚡️ Nodes & Staking" }, { - address: 'https://haqq-jsonrpc.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://haqq-jsonrpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://mainnet-haqq-evm.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-haqq-evm.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://evm-haqq.sr20de.xyz', - provider: 'Sr20de' + "address": "https://evm-haqq.sr20de.xyz", + "provider": "Sr20de" } ] }, - explorers: [ + "explorers": [ { - kind: 'blockscout', - url: 'https://explorer.haqq.network', - tx_page: 'https://explorer.haqq.network/tx/${txHash}' + "kind": "blockscout", + "url": "https://explorer.haqq.network", + "tx_page": "https://explorer.haqq.network/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/haqq', - tx_page: 'https://ping.pub/haqq/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/haqq", + "tx_page": "https://ping.pub/haqq/tx/${txHash}" }, { - kind: 'explorers.guru', - url: 'https://haqq.explorers.guru', - tx_page: 'https://haqq.explorers.guru/transaction/${txHash}' + "kind": "explorers.guru", + "url": "https://haqq.explorers.guru", + "tx_page": "https://haqq.explorers.guru/transaction/${txHash}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/haqq', - tx_page: 'https://explorer.nodestake.top/haqq/tx/${txHash}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/haqq", + "tx_page": "https://explorer.nodestake.top/haqq/tx/${txHash}" }, { - kind: 'KonsorTech Explorer', - url: 'https://explorer.konsortech.xyz/haqq', - tx_page: 'https://explorer.konsortech.xyz/haqq/tx/${txHash}' + "kind": "KonsorTech Explorer", + "url": "https://explorer.konsortech.xyz/haqq", + "tx_page": "https://explorer.konsortech.xyz/haqq/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/haqq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/haqq.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/haqq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/haqq.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'highbury', - status: 'live', - network_type: 'mainnet', - website: 'https://www.fury.black/', - pretty_name: 'Highbury', - chain_id: 'highbury_710-1', - bech32_prefix: 'fury', - daemon_name: 'fury', - node_home: '$HOME/.fury', - slip44: 459, - alternative_slip44s: [710], - fees: { - fee_tokens: [ - { - denom: 'ufury', - low_gas_price: 0.05, - average_gas_price: 0.1, - high_gas_price: 0.25 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "highbury", + "status": "live", + "network_type": "mainnet", + "website": "https://www.fury.black/", + "pretty_name": "Highbury", + "chain_id": "highbury_710-1", + "bech32_prefix": "fury", + "daemon_name": "fury", + "node_home": "$HOME/.fury", + "slip44": 459, + "alternative_slip44s": [ + 710 + ], + "fees": { + "fee_tokens": [ { - denom: 'ufury' + "denom": "ufury", + "low_gas_price": 0.05, + "average_gas_price": 0.1, + "high_gas_price": 0.25 } ] }, - codebase: { - git_repo: 'https://github.com/Four4Two/fury/', - recommended_version: 'v0.4.1', - compatible_versions: ['v0.4.1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/Four4Two/fury/mainnet/networks/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.4.1', - recommended_version: 'v0.4.1', - compatible_versions: ['v0.4.1'] + "denom": "ufury" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.svg' - }, - peers: { - seeds: [ - { - id: '377132f66d6fe7eed732842b276d1d7d998e685e', - address: '35.200.155.236:26656', - provider: 'Fanfury' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://gridiron.furya.io', - provider: 'fanfury' + "address": "https://gridiron.furya.io", + "provider": "fanfury" } ], - rest: [ + "rest": [ { - address: 'https://api-mainnet.furya.io/', - provider: 'fanfury' + "address": "https://api-mainnet.furya.io/", + "provider": "fanfury" } ], - grpc: [ + "grpc": [ { - address: 'api-mainnet.furya.io:9090', - provider: 'fanfury' + "address": "api-mainnet.furya.io:9090", + "provider": "fanfury" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://rest.furya.io/', - provider: 'fanfury' + "address": "https://rest.furya.io/", + "provider": "fanfury" } ] }, - explorers: [ + "explorers": [ { - kind: 'pingpub', - url: 'https://explorer.furya.wtf/', - tx_page: 'https://www.explorer.furya.wtf//txs/${txHash}', - account_page: 'https://explorer.furya.wtf//account/${accountAddress}' + "kind": "pingpub", + "url": "https://explorer.furya.wtf/", + "tx_page": "https://www.explorer.furya.wtf//txs/${txHash}", + "account_page": "https://explorer.furya.wtf//account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/highbury/images/fury.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'humans', - status: 'live', - network_type: 'mainnet', - website: 'https://humans.ai/', - pretty_name: 'Humans.ai', - chain_id: 'humans_1089-1', - bech32_prefix: 'human', - node_home: '$HOME/.humansd', - daemon_name: 'humansd', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'aheart', - fixed_min_gas_price: 250000000, - low_gas_price: 80000000000, - average_gas_price: 100000000000, - high_gas_price: 160000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'aheart' - } - ] - }, - codebase: { - git_repo: 'https://github.com/humansdotai/', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - cosmos_sdk_version: '0.46.11', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - genesis: { - genesis_url: - 'https://github.com/humansdotai/mainnets/blob/main/mainnet/1/genesis_1089-1.json' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - consensus: { - type: 'cometbft', - version: '0.34.27' - } + "$schema": "../chain.schema.json", + "chain_name": "humans", + "status": "live", + "network_type": "mainnet", + "website": "https://humans.ai/", + "pretty_name": "Humans.ai", + "chain_id": "humans_1089-1", + "bech32_prefix": "human", + "node_home": "$HOME/.humansd", + "daemon_name": "humansd", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "aheart", + "fixed_min_gas_price": 250000000, + "low_gas_price": 80000000000, + "average_gas_price": 100000000000, + "high_gas_price": 160000000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg' - }, - peers: { - seeds: [ - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'humans.rpc.kjnodes.com:12259', - provider: 'kjnodes' - }, - { - id: 'f8006da7d742777eeca0194b94586c8f147be4f6', - address: 'humans-mainnet-seed.itrocket.net:17656', - provider: 'itrocket' - }, - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:18456', - provider: 'RHINO' - } - ], - persistent_peers: [ - { - id: '5e51671241340f1d1e1409a9e0cc4474820bf782', - address: 'humans-mainnet-peer.itrocket.net:17656', - provider: 'itrocket' - }, - { - id: '2f8a0bf63e23606dc85bdd11afbf34e68a9f3b74', - address: 'mainnet-humans.konsortech.xyz:40656', - provider: 'KonsorTech' - }, + "staking": { + "staking_tokens": [ { - id: '9193e655f0581b4acf2e87976ac0b55795359742', - address: '167.235.177.226:26656', - provider: '[NODERS]TEAM' + "denom": "aheart" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46.11" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.humans.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.humans.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://humans.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://humans.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'http://humans.rpc.nodersteam.com:22657', - provider: '[NODERS]TEAM' + "address": "http://humans.rpc.nodersteam.com:22657", + "provider": "[NODERS]TEAM" }, { - address: 'https://rpc-humans.nodeist.net', - provider: 'Nodeist' + "address": "https://rpc-humans.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://humans-mainnet-rpc.itrocket.net', - provider: 'itrocket' + "address": "https://humans-mainnet-rpc.itrocket.net", + "provider": "itrocket" }, { - address: 'https://humans-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://humans-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://rpc-humansai.thenop.io:443', - provider: 'TheNOP.io' + "address": "https://rpc-humansai.thenop.io:443", + "provider": "TheNOP.io" }, { - address: 'https://humans-rpc.stakeangle.com/', - provider: 'StakeAngle' + "address": "https://humans-rpc.stakeangle.com/", + "provider": "StakeAngle" }, { - address: 'https://rpc.humans.stakepool.dev.br', - provider: 'StakePool' + "address": "https://rpc.humans.stakepool.dev.br", + "provider": "StakePool" }, { - address: 'https://humans-rpc.anyvalid.com:26627', - provider: 'AnyValid' + "address": "https://humans-rpc.anyvalid.com:26627", + "provider": "AnyValid" }, { - address: 'https://mainnet-humans-rpc.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-humans-rpc.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://rpc.humans-mainnet.stake-take.com/', - provider: 'Stake-Take' + "address": "https://rpc.humans-mainnet.stake-take.com/", + "provider": "Stake-Take" } ], - rest: [ + "rest": [ { - address: 'https://api.humans.nodestake.top', - provider: 'NodeStake' + "address": "https://api.humans.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://humans.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://humans.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'http://humans.api.nodersteam.com:22017', - provider: '[NODERS]TEAM' + "address": "http://humans.api.nodersteam.com:22017", + "provider": "[NODERS]TEAM" }, { - address: 'https://api-humans.nodeist.net', - provider: 'Nodeist' + "address": "https://api-humans.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://humans-mainnet-api.itrocket.net', - provider: 'itrocket' + "address": "https://humans-mainnet-api.itrocket.net", + "provider": "itrocket" }, { - address: 'https://humans-rest.staketab.org', - provider: 'Staketab' + "address": "https://humans-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://api-humansai.thenop.io:443', - provider: 'TheNOP.io' + "address": "https://api-humansai.thenop.io:443", + "provider": "TheNOP.io" }, { - address: 'http://humans-rpc.stakeangle.com:41417', - provider: 'StakeAngle' + "address": "http://humans-rpc.stakeangle.com:41417", + "provider": "StakeAngle" }, { - address: 'https://rest.humans.stakepool.dev.br', - provider: 'StakePool' + "address": "https://rest.humans.stakepool.dev.br", + "provider": "StakePool" }, { - address: 'https://mainnet-humans-api.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-humans-api.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://api.humans-mainnet.stake-take.com/', - provider: 'Stake-Take' + "address": "https://api.humans-mainnet.stake-take.com/", + "provider": "Stake-Take" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.humans.nodestake.top:443', - provider: 'NodeStake' + "address": "https://grpc.humans.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://humans.grpc.kjnodes.com/', - provider: 'kjnodes' + "address": "https://humans.grpc.kjnodes.com/", + "provider": "kjnodes" }, { - address: 'https://grpc-humans.nodeist.net/', - provider: 'Nodeist' + "address": "https://grpc-humans.nodeist.net/", + "provider": "Nodeist" }, { - address: 'humans-mainnet-grpc.itrocket.net:17090', - provider: 'itrocket' + "address": "humans-mainnet-grpc.itrocket.net:17090", + "provider": "itrocket" }, { - address: 'http://humans-rpc.stakeangle.com:41490/', - provider: 'Staketab' + "address": "http://humans-rpc.stakeangle.com:41490/", + "provider": "Staketab" }, { - address: 'humans.grpc.nodersteam.com:9221', - provider: '[NODERS]TEAM' + "address": "humans.grpc.nodersteam.com:9221", + "provider": "[NODERS]TEAM" }, { - address: 'https://grpc-humans.cosmos-spaces.cloud:1190', - provider: 'StakePool' + "address": "https://grpc-humans.cosmos-spaces.cloud:1190", + "provider": "StakePool" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://jsonrpc.humans.nodestake.top/', - provider: 'NodeStake' + "address": "https://jsonrpc.humans.nodestake.top/", + "provider": "NodeStake" }, { - address: 'https://humans-mainnet-evm.itrocket.net', - provider: 'itrocket' + "address": "https://humans-mainnet-evm.itrocket.net", + "provider": "itrocket" }, { - address: 'https://humans-evm-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://humans-evm-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://evm.humans.stakepool.dev.br', - provider: 'Stakepool' + "address": "https://evm.humans.stakepool.dev.br", + "provider": "Stakepool" }, { - address: 'https://mainnet-humans-evm.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-humans-evm.konsortech.xyz", + "provider": "KonsorTech" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://mintscan.io/humans', - tx_page: 'https://www.mintscan.io/humans/tx/${txHash}' + "kind": "mintscan", + "url": "https://mintscan.io/humans", + "tx_page": "https://www.mintscan.io/humans/tx/${txHash}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/humans', - tx_page: 'https://bigdipper.live/humans/transactions/${txHash}', - account_page: 'https://bigdipper.live/humans/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/humans", + "tx_page": "https://bigdipper.live/humans/transactions/${txHash}", + "account_page": "https://bigdipper.live/humans/accounts/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/humans', - tx_page: 'https://ping.pub/humans/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/humans", + "tx_page": "https://ping.pub/humans/tx/${txHash}" }, { - kind: 'explorers.guru', - url: 'https://humans.explorers.guru', - tx_page: 'https://humans.explorers.guru/transaction/${txHash}' + "kind": "explorers.guru", + "url": "https://humans.explorers.guru", + "tx_page": "https://humans.explorers.guru/transaction/${txHash}" }, { - kind: 'exploreme', - url: 'https://humansai.exploreme.pro/', - tx_page: 'https://humans.exploreme.pro/transaction/${txHash}' + "kind": "exploreme", + "url": "https://humansai.exploreme.pro/", + "tx_page": "https://humans.exploreme.pro/transaction/${txHash}" }, { - kind: 'itrocket', - url: 'https://mainnet.itrocket.net/humans/staking', - tx_page: 'https://mainnet.itrocket.net/humans/tx/${txHash}', - account_page: - 'https://mainnet.itrocket.net/humans/account/${accountAddress}' + "kind": "itrocket", + "url": "https://mainnet.itrocket.net/humans/staking", + "tx_page": "https://mainnet.itrocket.net/humans/tx/${txHash}", + "account_page": "https://mainnet.itrocket.net/humans/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'idep', - status: 'live', - network_type: 'mainnet', - website: 'https://www.idep.network/', - pretty_name: 'IDEP', - chain_id: 'Antora', - bech32_prefix: 'idep', - daemon_name: 'idep', - node_home: '$HOME/.ion', - 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' - }, - genesis: { - genesis_url: - 'https://github.com/IDEP-network/Antora/raw/main/genesis.json' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/IDEP-network/Antora/raw/main/iond' - } - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.svg' - }, - peers: { - seeds: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:16556', - provider: 'Lavender.Five Nodes 🐝' - } - ], - persistent_peers: [ - { - id: '8ffc74dbcd5ab32bc89e058ec53060d5762f88b5', - address: '178.63.100.102:26656', - provider: 'IDEP' - }, - { - id: '3a8cfcbaac7d102e9cfad31f856e1852be2125f3', - address: 'sentry-1.idep.ezstaking.xyz:26756', - provider: 'EZStaking.io' - }, + "$schema": "../chain.schema.json", + "chain_name": "idep", + "status": "live", + "network_type": "mainnet", + "website": "https://www.idep.network/", + "pretty_name": "IDEP", + "chain_id": "Antora", + "bech32_prefix": "idep", + "daemon_name": "idep", + "node_home": "$HOME/.ion", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '32a1a93033968e391266484cd4896dfc9b326e4c', - address: 'sentry-2.idep.ezstaking.xyz:26789', - provider: 'EZStaking.io' + "denom": "idep", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [], - rest: [], - grpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.svg" + }, + "apis": { + "rpc": [], + "rest": [], + "grpc": [ { - address: 'idep-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "idep-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/idep', - tx_page: 'https://app.ezstaking.io/idep/txs/${txHash}', - account_page: 'https://app.ezstaking.io/idep/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/idep", + "tx_page": "https://app.ezstaking.io/idep/txs/${txHash}", + "account_page": "https://app.ezstaking.io/idep/account/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/idep/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/idep", + "tx_page": "https://atomscan.com/idep/transactions/${txHash}", + "account_page": "https://atomscan.com/idep/accounts/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/idep', - tx_page: 'https://explorer.tcnetwork.io/idep/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/idep", + "tx_page": "https://explorer.tcnetwork.io/idep/transaction/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.png', - 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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'impacthub', - status: 'live', - network_type: 'mainnet', - website: 'https://www.ixo.world/', - pretty_name: 'ixo', - chain_id: 'ixo-5', - bech32_prefix: 'ixo', - daemon_name: 'ixod', - node_home: '$HOME/.ixod', - key_algos: ['secp256k1', 'ed25519'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uixo', - fixed_min_gas_price: 0.025, - low_gas_price: 0.025, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "impacthub", + "status": "live", + "network_type": "mainnet", + "website": "https://www.ixo.world/", + "pretty_name": "ixo", + "chain_id": "ixo-5", + "bech32_prefix": "ixo", + "daemon_name": "ixod", + "node_home": "$HOME/.ixod", + "key_algos": [ + "secp256k1", + "ed25519" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uixo' + "denom": "uixo", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - codebase: { - git_repo: 'https://github.com/ixofoundation/ixo-blockchain', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - genesis: { - genesis_url: - 'https://github.com/ixofoundation/genesis/raw/bc042e1223d551b22d55c155de06e662ca24d2f2/ixo-5/genesis.json.tar.gz' - }, - versions: [ - { - name: 'v0.20.0', - recommended_version: 'v0.20.1', - compatible_versions: ['v0.20.0', 'v0.20.1'], - proposal: 403, - height: 1254500, - next_version_name: 'v2' - }, + "staking": { + "staking_tokens": [ { - name: 'v2', - proposal: 439, - height: 2383000, - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - next_version_name: '' + "denom": "uixo" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' - }, - peers: { - seeds: [ - { - id: '36e4738c7efcf353d3048e5e6073406d045bae9d', - address: '80.64.208.43:26656', - provider: 'simplyvc' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:16656', - provider: 'Lavender.Five Nodes 🐝' - } - ], - persistent_peers: [ - { - id: '36e4738c7efcf353d3048e5e6073406d045bae9d', - address: '80.64.208.43:26656', - provider: 'simplyvc' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://proxies.sifchain.finance/api/impacthub-3/rpc', - provider: 'sifchain' + "address": "https://proxies.sifchain.finance/api/impacthub-3/rpc", + "provider": "sifchain" }, { - address: 'https://impacthub.ixo.world/rpc/', - provider: 'ixoworld' + "address": "https://impacthub.ixo.world/rpc/", + "provider": "ixoworld" }, { - address: 'https://rpc-ixo-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-ixo-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://impacthub-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://impacthub-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://ixo-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://ixo-rpc.ibs.team", + "provider": "Inter Blockchain Services" } ], - rest: [ + "rest": [ { - address: 'https://proxies.sifchain.finance/api/impacthub-3/rest', - provider: 'sifchain' + "address": "https://proxies.sifchain.finance/api/impacthub-3/rest", + "provider": "sifchain" }, { - address: 'https://impacthub.ixo.world/rest/', - provider: 'ixoworld' + "address": "https://impacthub.ixo.world/rest/", + "provider": "ixoworld" }, { - address: 'https://api-ixo-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-ixo-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://impacthub-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://impacthub-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://ixo-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://ixo-api.ibs.team", + "provider": "Inter Blockchain Services" } ], - grpc: [ + "grpc": [ { - address: 'grpc-ixo-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-ixo-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'impacthub-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "impacthub-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/ixo', - tx_page: 'https://app.ezstaking.io/ixo/txs/${txHash}', - account_page: 'https://app.ezstaking.io/ixo/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/ixo", + "tx_page": "https://app.ezstaking.io/ixo/txs/${txHash}", + "account_page": "https://app.ezstaking.io/ixo/account/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/ixo/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/ixo", + "tx_page": "https://atomscan.com/ixo/transactions/${txHash}", + "account_page": "https://atomscan.com/ixo/accounts/${accountAddress}" }, { - kind: 'Mintscan', - url: 'https://www.mintscan.io/ixo', - tx_page: 'https://www.mintscan.io/ixo/transactions/${txHash}', - account_page: 'https://www.mintscan.io/ixo/accounts/${accountAddress}' + "kind": "Mintscan", + "url": "https://www.mintscan.io/ixo", + "tx_page": "https://www.mintscan.io/ixo/transactions/${txHash}", + "account_page": "https://www.mintscan.io/ixo/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'imversed', - status: 'live', - network_type: 'mainnet', - website: 'https://imversed.network/', - pretty_name: 'Imversed', - chain_id: 'imversed_5555555-1', - bech32_prefix: 'imv', - daemon_name: 'imversed', - node_home: '$HOME/.imversed', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'aimv', - fixed_min_gas_price: 250000000, - low_gas_price: 20000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'aimv' - } - ] - }, - codebase: { - git_repo: 'https://github.com/imversed/imversed', - recommended_version: 'v3.11', - compatible_versions: ['v3.11'], - binaries: { - 'linux/amd64': - 'https://github.com/imversed/imversed/releases/download/v3.11/imversed_3.11_Linux_amd64.tar.gz' - }, - genesis: { - genesis_url: 'https://static.imversed.com/mainnet/genesis.json' - }, - versions: [ - { - name: 'v3.11', - recommended_version: 'v3.11', - compatible_versions: ['v3.11'], - binaries: { - 'linux/amd64': - 'https://github.com/imversed/imversed/releases/download/v3.11/imversed_3.11_Linux_amd64.tar.gz' - } + "$schema": "../chain.schema.json", + "chain_name": "imversed", + "status": "live", + "network_type": "mainnet", + "website": "https://imversed.network/", + "pretty_name": "Imversed", + "chain_id": "imversed_5555555-1", + "bech32_prefix": "imv", + "daemon_name": "imversed", + "node_home": "$HOME/.imversed", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "aimv", + "fixed_min_gas_price": 250000000, + "low_gas_price": 20000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' - }, - peers: { - seeds: [ - { - id: '6413d43ff0dce9400515f24e8e93a0cf28f0efff', - address: '35.209.184.54:26656' - } - ], - persistent_peers: [ + "staking": { + "staking_tokens": [ { - id: '0968486e82c910b1d7adaacb43bf7e633b19665a', - address: '35.209.184.219:26656' + "denom": "aimv" } ] }, - apis: { - rpc: [], - rest: [], - grpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg" + }, + "apis": { + "rpc": [], + "rest": [], + "grpc": [ { - address: 'grpc.imversed.network:443', - provider: 'imversed' + "address": "grpc.imversed.network:443", + "provider": "imversed" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://jsonrpc.imversed.network:443', - provider: 'imversed' + "address": "https://jsonrpc.imversed.network:443", + "provider": "imversed" } ] }, - explorers: [ + "explorers": [ { - kind: 'blockscout', - url: 'https://txe.imversed.network/', - tx_page: 'https://txe.imversed.network/tx/${txHash}' + "kind": "blockscout", + "url": "https://txe.imversed.network/", + "tx_page": "https://txe.imversed.network/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'injective', - status: 'live', - network_type: 'mainnet', - website: 'https://injective.com/', - pretty_name: 'Injective', - chain_id: 'injective-1', - bech32_prefix: 'inj', - extra_codecs: ['injective'], - slip44: 60, - daemon_name: 'injectived', - node_home: '$HOME/.injectived', - fees: { - fee_tokens: [ - { - denom: 'inj', - fixed_min_gas_price: 160000000, - low_gas_price: 500000000, - average_gas_price: 700000000, - high_gas_price: 900000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'inj' - } - ] - }, - codebase: { - git_repo: 'https://github.com/InjectiveLabs/injective-chain-releases', - recommended_version: 'v1.12.1-1705909076', - compatible_versions: ['v1.12.0-1704530206', 'v1.12.1-1705909076'], - binaries: { - 'linux/amd64': - 'https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.12.1-1705909076/linux-amd64.zip', - 'darwin/amd64': - 'https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.12.1-1705909076/darwin-amd64.zip' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/InjectiveLabs/mainnet-config/master/10001/genesis.json' - }, - versions: [ - { - name: 'v1.10', - recommended_version: 'v1.10', - compatible_versions: ['v1.10'], - binaries: { - 'linux/amd64': - 'https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.10.0-1679065799/linux-amd64.zip', - 'darwin/amd64': - 'https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.10.0-1679065799/darwin-amd64.zip' - }, - next_version_name: 'v1.11' - }, - { - name: 'v1.11', - proposal: 231, - height: 34775000, - recommended_version: 'v1.11.5-1687535916', - compatible_versions: [ - 'v1.11', - 'v1.11.3-1686246472', - 'v1.11.4-1686608669', - 'v1.11.5-1687535916' - ], - binaries: { - 'linux/amd64': - 'https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.11.5-1687535916/linux-amd64.zip', - 'darwin/amd64': - 'https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.11.5-1687535916/darwin-amd64.zip' - }, - next_version_name: 'v1.12.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "injective", + "status": "live", + "network_type": "mainnet", + "website": "https://injective.com/", + "pretty_name": "Injective", + "chain_id": "injective-1", + "bech32_prefix": "inj", + "extra_codecs": [ + "injective" + ], + "slip44": 60, + "daemon_name": "injectived", + "node_home": "$HOME/.injectived", + "fees": { + "fee_tokens": [ { - name: 'v1.12.0', - proposal: 314, - height: 57076000, - recommended_version: 'v1.12.1-1705909076', - compatible_versions: ['v1.12.0-1704530206', 'v1.12.1-1705909076'], - binaries: { - 'linux/amd64': - 'https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.12.1-1705909076/linux-amd64.zip', - 'darwin/amd64': - 'https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.12.1-1705909076/darwin-amd64.zip' - }, - next_version_name: '' + "denom": "inj", + "fixed_min_gas_price": 160000000, + "low_gas_price": 500000000, + "average_gas_price": 700000000, + "high_gas_price": 900000000 } ] }, - 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' - }, - description: - 'Injective’s mission is to create a truly free and inclusive financial system through decentralization.', - peers: { - seeds: [ - { - id: '38c18461209694e1f667ff2c8636ba827cc01c86', - address: '176.9.143.252:11751', - provider: 'injectivelabs.org' - }, - { - id: '4f9025feca44211eddc26cd983372114947b2e85', - address: '176.9.140.49:11751', - provider: 'injectivelabs.org' - }, - { - id: 'c98bb1b889ddb58b46e4ad3726c1382d37cd5609', - address: '65.109.51.80:11751', - provider: 'injectivelabs.org' - }, - { - id: '23d0eea9bb42316ff5ea2f8b4cd8475ef3f35209', - address: '65.109.36.70:11751', - provider: 'injectivelabs.org' - }, - { - id: 'f9ae40fb4a37b63bea573cc0509b4a63baa1a37a', - address: '15.235.114.80:11751', - provider: 'injectivelabs.org' - }, - { - id: '7f3473ddab10322b63789acb4ac58647929111ba', - address: '15.235.13.116:11751', - provider: 'injectivelabs.org' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:14356', - provider: 'polkachu.com' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'injective-mainnet-seed.autostake.com:26726', - provider: 'AutoStake.com' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:14356', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: '1846e76e14913124a07e231586d487a0636c0296', - address: 'tenderseed.ccvalidators.com:26007', - provider: 'ccvalidators.com' - }, - { - id: '5a1cd1a7da5aab3e3075fbae0a905c7256e48193', - address: 'seeds.goldenratiostaking.net:1635', - provider: 'Golden Ratio Staking' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:14356', - provider: 'WhisperNode 🤐' - }, - { - id: '858c86e2590f82934b8483ed184afd88416a7b31', - address: 'seed-injective-01.stakeflow.io:2106', - provider: 'Stakeflow' - } - ], - persistent_peers: [ - { - id: '38c18461209694e1f667ff2c8636ba827cc01c86', - address: '176.9.143.252:11751', - provider: 'injectivelabs.org' - }, - { - id: '4f9025feca44211eddc26cd983372114947b2e85', - address: '176.9.140.49:11751', - provider: 'injectivelabs.org' - }, - { - id: 'c98bb1b889ddb58b46e4ad3726c1382d37cd5609', - address: '65.109.51.80:11751', - provider: 'injectivelabs.org' - }, - { - id: '23d0eea9bb42316ff5ea2f8b4cd8475ef3f35209', - address: '65.109.36.70:11751', - provider: 'injectivelabs.org' - }, - { - id: 'f9ae40fb4a37b63bea573cc0509b4a63baa1a37a', - address: '15.235.114.80:11751', - provider: 'injectivelabs.org' - }, - { - id: '7f3473ddab10322b63789acb4ac58647929111ba', - address: '15.235.13.116:11751', - provider: 'injectivelabs.org' - }, + "staking": { + "staking_tokens": [ { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'injective-mainnet-peer.autostake.com:26726', - provider: 'AutoStake.com' - }, - { - id: '858c86e2590f82934b8483ed184afd88416a7b31', - address: 'peer-injective-01.stakeflow.io:2106', - provider: 'Stakeflow' + "denom": "inj" } ] }, - apis: { - rpc: [ + "codebase": {}, + "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" + }, + "description": "Injective’s mission is to create a truly free and inclusive financial system through decentralization.", + "apis": { + "rpc": [ { - address: 'https://injective-rpc.quickapi.com:443', - provider: 'Chainlayer' + "address": "https://injective-rpc.quickapi.com:443", + "provider": "Chainlayer" }, { - address: 'https://rpc-injective.goldenratiostaking.net', - provider: 'Golden Ratio Staking' + "address": "https://rpc-injective.goldenratiostaking.net", + "provider": "Golden Ratio Staking" }, { - address: 'https://injective-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://injective-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://injective-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://injective-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-injective-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-injective-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://injective-mainnet-rpc.autostake.com:443', - provider: 'AutoStake.com' + "address": "https://injective-mainnet-rpc.autostake.com:443", + "provider": "AutoStake.com" }, { - address: 'https://rpc.injective.posthuman.digital:443', - provider: 'POSTHUMAN ꝏ DVS' + "address": "https://rpc.injective.posthuman.digital:443", + "provider": "POSTHUMAN ꝏ DVS" }, { - address: 'https://rpc-injective.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-injective.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://rpc-injective-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-injective-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://injective-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://injective-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://injective-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://injective-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://injective-rpc.highstakes.ch:26657/', - provider: 'High Stakes 🇨🇭' + "address": "https://injective-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" } ], - rest: [ + "rest": [ { - address: 'https://injective-lcd.quickapi.com:443', - provider: 'Chainlayer' + "address": "https://injective-lcd.quickapi.com:443", + "provider": "Chainlayer" }, { - address: 'https://api-injective-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-injective-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://injective-api.polkachu.com', - provider: 'Polkachu' + "address": "https://injective-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://injective-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://injective-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rest.injective.posthuman.digital:443', - provider: 'POSTHUMAN ꝏ DVS' + "address": "https://rest.injective.posthuman.digital:443", + "provider": "POSTHUMAN ꝏ DVS" }, { - address: 'https://lcd-injective.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-injective.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://api-injective-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-injective-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://rest-injective.goldenratiostaking.net', - provider: 'Golden Ratio Staking' + "address": "https://rest-injective.goldenratiostaking.net", + "provider": "Golden Ratio Staking" }, { - address: 'https://injective-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://injective-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://injective-api.w3coins.io', - provider: 'w3coins' + "address": "https://injective-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://injective-api.highstakes.ch:1317/', - provider: 'High Stakes 🇨🇭' + "address": "https://injective-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" } ], - grpc: [ + "grpc": [ { - address: 'grpc-injective-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-injective-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'injective-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "injective-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'injective-grpc.polkachu.com:14390', - provider: 'Polkachu' + "address": "injective-grpc.polkachu.com:14390", + "provider": "Polkachu" }, { - address: 'injective-mainnet-grpc.autostake.com:443', - provider: 'AutoStake.com' + "address": "injective-mainnet-grpc.autostake.com:443", + "provider": "AutoStake.com" }, { - address: 'grpc-injective.cosmos-spaces.cloud:9900', - provider: 'Cosmos Spaces' + "address": "grpc-injective.cosmos-spaces.cloud:9900", + "provider": "Cosmos Spaces" }, { - address: 'grpc.injective.posthuman.digital:80', - provider: 'POSTHUMAN ꝏ DVS' + "address": "grpc.injective.posthuman.digital:80", + "provider": "POSTHUMAN ꝏ DVS" }, { - address: 'grpc-injective.architectnodes.com:1443', - provider: 'Architect Nodes' + "address": "grpc-injective.architectnodes.com:1443", + "provider": "Architect Nodes" }, { - address: 'grpc-injective-01.stakeflow.io:2102', - provider: 'Stakeflow' + "address": "grpc-injective-01.stakeflow.io:2102", + "provider": "Stakeflow" }, { - address: 'injective-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "injective-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'injective-grpc.w3coins.io:14390', - provider: 'w3coins' + "address": "injective-grpc.w3coins.io:14390", + "provider": "w3coins" }, { - address: 'grpc-injective.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "grpc-injective.whispernode.com:443", + "provider": "WhisperNode 🤐" } ] }, - 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}', - account_page: - 'https://atomscan.com/injective/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/injective", + "tx_page": "https://atomscan.com/injective/transactions/${txHash}", + "account_page": "https://atomscan.com/injective/accounts/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/injective', - tx_page: 'https://www.mintscan.io/injective/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/injective/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/injective", + "tx_page": "https://www.mintscan.io/injective/transactions/${txHash}", + "account_page": "https://www.mintscan.io/injective/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/injective', - account_page: - 'https://stakeflow.io/injective/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/injective", + "account_page": "https://stakeflow.io/injective/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" } ] }, { - $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, - fees: { - fee_tokens: [ - { - denom: 'uiris', - low_gas_price: 0.2, - average_gas_price: 0.3, - high_gas_price: 0.4 - } - ] - }, - staking: { - staking_tokens: [ + "$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, + "fees": { + "fee_tokens": [ { - denom: 'uiris' + "denom": "uiris", + "low_gas_price": 0.2, + "average_gas_price": 0.3, + "high_gas_price": 0.4 } ] }, - codebase: { - git_repo: 'https://github.com/irisnet/irishub', - recommended_version: 'v2.0.3', - compatible_versions: ['v2.0.3'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/irisnet/mainnet/master/config/genesis.json' - }, - versions: [ - { - name: 'v1.3.0', - next_version_name: 'v1.4.1', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'] - }, - { - name: 'v1.4.1', - next_version_name: 'v2.0.0', - recommended_version: 'v1.4.1', - compatible_versions: ['v1.4.1'] - }, + "staking": { + "staking_tokens": [ { - name: 'v2.0.0', - next_version_name: 'v2.1.0', - recommended_version: 'v2.0.3', - compatible_versions: ['v2.0.3'] + "denom": "uiris" } ] }, - 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' - }, - peers: { - seeds: [ - { - id: '6a6de770deaa4b8c061dffd82e9c7f4d40c2165d', - address: 'seed-1.mainnet.irisnet.org:26656' - }, - { - id: 'a17d7923293203c64ba75723db4d5f28e642f469', - address: 'seed-2.mainnet.irisnet.org:26656' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: '445b38a181d147c243185d94567412e5c5f1a22c', - address: 'seed-irisnet-01.stakeflow.io:1906', - provider: 'Stakeflow' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'iris.rpc.kjnodes.com:16659', - provider: 'kjnodes' - } - ], - persistent_peers: [ - { - id: '83b3f989f3ce089afdf733f8aa06e792d7e00c08', - address: '3.34.6.30:26656', - provider: 'cosmostation' - }, - { - id: '445b38a181d147c243185d94567412e5c5f1a22c', - address: 'peer-irisnet-01.stakeflow.io:1906', - provider: 'Stakeflow' - }, - { - id: '3ddf22082bda8607289bd94b649e0e2595f1fffd', - address: 'iris-mainnet.peers.l0vd.com:19656', - provider: 'L0vd.com ❤️' - }, - { - id: 'a19022cc07010836ed2a9c77dd56968965edb454', - address: 'mainnet-iris.konsortech.xyz:30656', - provider: 'KonsorTech' - } - ] + "codebase": {}, + "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" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc-irisnet-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-irisnet-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc-irisnet-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-irisnet-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://irisnet-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://irisnet-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://iris-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://iris-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://iris-rpc.highstakes.ch:26657/', - provider: 'High Stakes 🇨🇭' + "address": "https://iris-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://iris-mainnet.rpc.l0vd.com:443', - provider: 'L0vd.com ❤️' + "address": "https://iris-mainnet.rpc.l0vd.com:443", + "provider": "L0vd.com ❤️" }, { - address: 'https://mainnet-iris-rpc.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-iris-rpc.konsortech.xyz", + "provider": "KonsorTech" } ], - rest: [ + "rest": [ { - address: 'https://api-irisnet-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-irisnet-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://api-irisnet-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-irisnet-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://irisnet-api.w3coins.io', - provider: 'w3coins' + "address": "https://irisnet-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://iris-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://iris-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://iris-api.highstakes.ch:1317/', - provider: 'High Stakes 🇨🇭' + "address": "https://iris-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://iris-mainnet.api.l0vd.com:443', - provider: 'L0vd.com ❤️' + "address": "https://iris-mainnet.api.l0vd.com:443", + "provider": "L0vd.com ❤️" }, { - address: 'https://mainnet-iris-api.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-iris-api.konsortech.xyz", + "provider": "KonsorTech" } ], - grpc: [ + "grpc": [ { - address: 'grpc-irisnet-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-irisnet-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'grpc-irisnet-01.stakeflow.io:1902', - provider: 'Stakeflow' + "address": "grpc-irisnet-01.stakeflow.io:1902", + "provider": "Stakeflow" }, { - address: 'irisnet-grpc.w3coins.io:22690', - provider: 'w3coins' + "address": "irisnet-grpc.w3coins.io:22690", + "provider": "w3coins" }, { - address: 'iris-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "iris-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'iris.grpc.kjnodes.com:443', - provider: 'kjnodes' + "address": "iris.grpc.kjnodes.com:443", + "provider": "kjnodes" }, { - address: 'https://grpc-irisnet.nodeist.net', - provider: 'Nodeist' + "address": "https://grpc-irisnet.nodeist.net", + "provider": "Nodeist" }, { - address: 'iris-mainnet.grpc.l0vd.com:80', - provider: 'L0vd.com ❤️' + "address": "iris-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com ❤️" }, { - address: 'mainnet-iris.konsortech.xyz:30090', - provider: 'KonsorTech' + "address": "mainnet-iris.konsortech.xyz:30090", + "provider": "KonsorTech" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://iris-evm.publicnode.com', - provider: 'Allnodes.com ⚡️ Nodes & Staking' + "address": "https://iris-evm.publicnode.com", + "provider": "Allnodes.com ⚡️ Nodes & Staking" }, { - address: 'https://mainnet-iris-evm.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-iris-evm.konsortech.xyz", + "provider": "KonsorTech" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/irisnet', - tx_page: 'https://app.ezstaking.io/irisnet/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/irisnet/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/irisnet", + "tx_page": "https://app.ezstaking.io/irisnet/txs/${txHash}", + "account_page": "https://app.ezstaking.io/irisnet/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/iris', - tx_page: 'https://www.mintscan.io/iris/transactions/${txHash}', - account_page: 'https://www.mintscan.io/iris/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/iris", + "tx_page": "https://www.mintscan.io/iris/transactions/${txHash}", + "account_page": "https://www.mintscan.io/iris/accounts/${accountAddress}" }, { - 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}', - account_page: - 'https://atomscan.com/iris-network/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/iris-network", + "tx_page": "https://atomscan.com/iris-network/transactions/${txHash}", + "account_page": "https://atomscan.com/iris-network/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/irisnet', - account_page: 'https://stakeflow.io/irisnet/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/irisnet", + "account_page": "https://stakeflow.io/irisnet/accounts/${accountAddress}" }, { - kind: 'Nodeist Explorer', - url: 'https://exp.nodeist.net/iris', - tx_page: 'https://exp.nodeist.net/iris/tx/${txHash}' + "kind": "Nodeist Explorer", + "url": "https://exp.nodeist.net/iris", + "tx_page": "https://exp.nodeist.net/iris/tx/${txHash}" }, { - kind: 'L0vd.com ❤️', - url: 'https://explorers.l0vd.com/iris-mainnet', - tx_page: 'https://explorers.l0vd.com/iris-mainnet/tx/${txHash}' + "kind": "L0vd.com ❤️", + "url": "https://explorers.l0vd.com/iris-mainnet", + "tx_page": "https://explorers.l0vd.com/iris-mainnet/tx/${txHash}" }, { - kind: 'KonsorTech', - url: 'https://explorer.konsortech.xyz/iris', - tx_page: 'https://explorer.konsortech.xyz/iris/tx/${txHash}' + "kind": "KonsorTech", + "url": "https://explorer.konsortech.xyz/iris", + "tx_page": "https://explorer.konsortech.xyz/iris/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'jackal', - chain_id: 'jackal-1', - website: 'https://jackalprotocol.com', - pretty_name: 'Jackal', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'jkl', - daemon_name: 'canined', - node_home: '$HOME/.canine', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ujkl', - fixed_min_gas_price: 0, - low_gas_price: 0.002, - average_gas_price: 0.002, - high_gas_price: 0.02 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ujkl' - } - ] - }, - codebase: { - git_repo: 'https://github.com/JackalLabs/canine-chain', - recommended_version: 'v3.1.1', - compatible_versions: ['v3.1.1'], - binaries: { - 'linux/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v3.1.1/canined-Linux', - 'darwin/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v3.1.1/canined-macOS' - }, - genesis: { - genesis_url: - 'https://cdn.discordapp.com/attachments/1002389406650466405/1034968352591986859/updated_genesis2.json' - }, - cosmwasm_enabled: true, - versions: [ - { - name: 'bouncybulldog', - recommended_version: 'v1.2.1', - compatible_versions: ['v1.2.1'], - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v1.2.1/canined-Linux', - 'darwin/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v1.2.1/canined-macOS' - }, - next_version_name: 'recovery' - }, - { - name: 'recovery', - tag: 'V2.0.1', - proposal: 4, - height: 2631260, - recommended_version: 'v2.0.1', - compatible_versions: ['v2.0.0', 'v2.0.1'], - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v2.0.2/canined-Linux', - 'darwin/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v2.0.2/canined-macOS' - }, - next_version_name: 'v210' - }, - { - name: 'v210', - tag: 'V2.1.0', - proposal: 8, - height: 3503000, - recommended_version: 'v2.1.0', - compatible_versions: ['v2.1.0'], - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v2.1.0/canined-Linux', - 'darwin/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v2.1.0/canined-macOS' - }, - next_version_name: 'v3' - }, - { - name: 'v3', - tag: 'V3.0.5', - proposal: 9, - height: 4074200, - recommended_version: 'v3.0.5', - compatible_versions: ['v3.0.5'], - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v3.0.5/canined-Linux', - 'darwin/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v3.0.5/canined-macOS' - }, - next_version_name: 'v3.1.1' - }, + "$schema": "../chain.schema.json", + "chain_name": "jackal", + "chain_id": "jackal-1", + "website": "https://jackalprotocol.com", + "pretty_name": "Jackal", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "jkl", + "daemon_name": "canined", + "node_home": "$HOME/.canine", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v3.1.1', - tag: 'V3.1.1', - proposal: 11, - height: 6095000, - recommended_version: 'v3.1.1', - compatible_versions: ['v3.1.1'], - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v3.1.1/canined-Linux', - 'darwin/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v3.1.1/canined-macOS' - }, - next_version_name: '' + "denom": "ujkl", + "fixed_min_gas_price": 0, + "low_gas_price": 0.002, + "average_gas_price": 0.002, + "high_gas_price": 0.02 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' - }, - peers: { - seeds: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:17556', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'jackal-mainnet-seed.autostake.com:26906', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:17556', - provider: 'Polkachu' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'jackal.rpc.kjnodes.com:13759', - provider: 'kjnodes' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:17556', - provider: 'WhisperNode 🤐' - } - ], - persistent_peers: [ - { - id: '0ab9ec918cd36a28be1fcf538f7f76ede2b81659', - address: '89.58.38.59:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'jackal-mainnet-peer.autostake.com:26906', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '26b6255375a592c3b0664bd474a6975f468c3785', - address: 'jkl.peer.stavr.tech:11126', - provider: '🔥STAVR🔥' - }, + "staking": { + "staking_tokens": [ { - id: '713d202326eedaed41d467b26051aba62727febd', - address: '5.9.69.241:26656', - provider: '[NODERS]TEAM' - }, - { - id: '2af06d39d68345d41cd16182e3472d96c5a0150b', - address: '136.244.29.116:27656' + "denom": "ujkl" } ] }, - apis: { - wss: [ + "codebase": { + "cosmwasm_enabled": true + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg" + }, + "apis": { + "wss": [ { - address: 'wss://jackal-rpc.agoranodes.com', - provider: 'AgoraNodes' + "address": "wss://jackal-rpc.agoranodes.com", + "provider": "AgoraNodes" } ], - rpc: [ + "rpc": [ { - address: 'https://rpc.jackalprotocol.com', - provider: 'Jackal Labs' + "address": "https://rpc.jackalprotocol.com", + "provider": "Jackal Labs" }, { - address: 'https://jackal-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://jackal-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'http://jkl.rpc.m.stavr.tech:11127', - provider: '🔥STAVR🔥' + "address": "http://jkl.rpc.m.stavr.tech:11127", + "provider": "🔥STAVR🔥" }, { - address: 'https://jackal.rpc.bccnodes.com', - provider: 'BccNodes' + "address": "https://jackal.rpc.bccnodes.com", + "provider": "BccNodes" }, { - address: 'https://rpc.jackal.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.jackal.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://rpc-jackal.nodeist.net', - provider: 'Nodeist' + "address": "https://rpc-jackal.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://jackal-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://jackal-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://m-jackal.rpc.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-jackal.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://rpc-jackal.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-jackal.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://jackal-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://jackal-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'http://jackal.rpc.nodersteam.com:31657', - provider: '[NODERS]TEAM' + "address": "http://jackal.rpc.nodersteam.com:31657", + "provider": "[NODERS]TEAM" }, { - address: 'https://jackal.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://jackal.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://jackal.rpc.silknodes.io', - provider: 'Silk Nodes' + "address": "https://jackal.rpc.silknodes.io", + "provider": "Silk Nodes" }, { - address: 'https://jackal.rpc.skynodejs.net', - provider: 'skynodejs' + "address": "https://jackal.rpc.skynodejs.net", + "provider": "skynodejs" } ], - rest: [ + "rest": [ { - address: 'https://api.jackalprotocol.com', - provider: 'Jackal Labs' + "address": "https://api.jackalprotocol.com", + "provider": "Jackal Labs" }, { - address: 'https://jackal-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://jackal-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://jkl.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://jkl.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api.jackal.nodestake.top', - provider: 'NodeStake' + "address": "https://api.jackal.nodestake.top", + "provider": "NodeStake" }, { - address: 'http://jackal.api.nodersteam.com:2917', - provider: '[NODERS]TEAM' + "address": "http://jackal.api.nodersteam.com:2917", + "provider": "[NODERS]TEAM" }, { - address: 'https://api-jackal.nodeist.net', - provider: 'Nodeist' + "address": "https://api-jackal.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://jackal-api.polkachu.com', - provider: 'Polkachu' + "address": "https://jackal-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://m-jackal.api.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-jackal.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://jackal-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://jackal-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://lcd-jackal.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-jackal.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://jackal.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://jackal.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://jackal.api.silknodes.io', - provider: 'Silk Nodes' + "address": "https://jackal.api.silknodes.io", + "provider": "Silk Nodes" }, { - address: 'https://jackal.api.skynodejs.net', - provider: 'skynodejs' + "address": "https://jackal.api.skynodejs.net", + "provider": "skynodejs" } ], - grpc: [ + "grpc": [ { - address: 'grpc.jackalprotocol.com:443', - provider: 'Jackal Labs' + "address": "grpc.jackalprotocol.com:443", + "provider": "Jackal Labs" }, { - address: 'jackal.grpc.bccnodes.com:9490', - provider: 'BccNodes' + "address": "jackal.grpc.bccnodes.com:9490", + "provider": "BccNodes" }, { - address: 'jackal.grpc.nodersteam.com:9990', - provider: '[NODERS]TEAM' + "address": "jackal.grpc.nodersteam.com:9990", + "provider": "[NODERS]TEAM" }, { - address: 'jackal-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "jackal-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'grpc.jackal.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.jackal.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'jackal-grpc.polkachu.com:17590', - provider: 'Polkachu' + "address": "jackal-grpc.polkachu.com:17590", + "provider": "Polkachu" }, { - address: 'http://jkl.grpc.m.stavr.tech:5013', - provider: '🔥STAVR🔥' + "address": "http://jkl.grpc.m.stavr.tech:5013", + "provider": "🔥STAVR🔥" }, { - address: 'jackal-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "jackal-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'jackal.grpc.kjnodes.com:13790', - provider: 'kjnodes' + "address": "jackal.grpc.kjnodes.com:13790", + "provider": "kjnodes" }, { - address: 'https://jackal.grpc.skynodejs.net', - provider: 'skynodejs' + "address": "https://jackal.grpc.skynodejs.net", + "provider": "skynodejs" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://ping.pub/jackal', - tx_page: 'https://ping.pub/jackal/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/jackal", + "tx_page": "https://ping.pub/jackal/tx/${txHash}" }, { - kind: 'NodeStake', - url: 'https://explorer.nodestake.top/jackal', - tx_page: 'https://explorer.nodestake.top/jackal/tx/${txHash}' + "kind": "NodeStake", + "url": "https://explorer.nodestake.top/jackal", + "tx_page": "https://explorer.nodestake.top/jackal/tx/${txHash}" }, { - kind: 'BccNodes', - url: 'https://explorer.bccnodes.com/jackal', - tx_page: 'https://explorer.bccnodes.com/jackal/tx/${txHash}' + "kind": "BccNodes", + "url": "https://explorer.bccnodes.com/jackal", + "tx_page": "https://explorer.bccnodes.com/jackal/tx/${txHash}" }, { - kind: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀', - url: 'https://exp.utsa.tech/jackal', - tx_page: 'https://exp.utsa.tech/jackal/tx/${txHash}' + "kind": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀", + "url": "https://exp.utsa.tech/jackal", + "tx_page": "https://exp.utsa.tech/jackal/tx/${txHash}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/jackal', - tx_page: 'https://explorer.stavr.tech/jackal/tx/${txHash}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/jackal", + "tx_page": "https://explorer.stavr.tech/jackal/tx/${txHash}" }, { - kind: 'Nodeist Explorer', - url: 'https://exp.nodeist.net/jackal', - tx_page: 'https://exp.nodeist.net/jackal/tx/${txHash}' + "kind": "Nodeist Explorer", + "url": "https://exp.nodeist.net/jackal", + "tx_page": "https://exp.nodeist.net/jackal/tx/${txHash}" }, { - kind: 'Big Dipper', - url: 'https://bigdipper.live/jackal', - tx_page: 'https://bigdipper.live/jackal/transactions/${txHash}' + "kind": "Big Dipper", + "url": "https://bigdipper.live/jackal", + "tx_page": "https://bigdipper.live/jackal/transactions/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'juno', - status: 'live', - network_type: 'mainnet', - website: 'https://www.junonetwork.io/', - pretty_name: 'Juno', - chain_id: 'juno-1', - bech32_prefix: 'juno', - daemon_name: 'junod', - node_home: '$HOME/.juno', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ujuno', - fixed_min_gas_price: 0.075, - low_gas_price: 0.075, - average_gas_price: 0.1, - high_gas_price: 0.125 - }, - { - denom: - 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', - fixed_min_gas_price: 0.003, - low_gas_price: 0.003, - average_gas_price: 0.0035, - high_gas_price: 0.004 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ujuno' - } - ] - }, - codebase: { - git_repo: 'https://github.com/CosmosContracts/juno', - recommended_version: 'v18.1.0', - compatible_versions: ['v18.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/CosmosContracts/juno/releases/download/v18.1.0/junod' - }, - cosmos_sdk_version: '0.47.5', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.45.0', - cosmwasm_enabled: true, - ibc_go_version: 'v7.3.1', - genesis: { - genesis_url: 'https://download.dimi.sh/juno-phoenix2-genesis.tar.gz' - }, - versions: [ - { - name: 'v13', - proposal: 271, - height: 7374801, - recommended_version: 'v13.0.0', - compatible_versions: ['v13.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/CosmosContracts/juno/releases/download/v13.0.0/junod' - }, - cosmos_sdk_version: '0.45.14', - consensus: { - type: 'tendermint', - version: 'informalsystems/tendermint v0.34.26' - }, - cosmwasm_version: '0.30.0', - cosmwasm_enabled: true, - ibc_go_version: 'v4.3.0', - next_version_name: 'v14' - }, - { - name: 'v14', - proposal: 282, - height: 7875721, - recommended_version: 'v14.1.0', - compatible_versions: ['v14.0.0', 'v14.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/CosmosContracts/juno/releases/download/v14.1.0/junod' - }, - cosmos_sdk_version: '0.45.15', - consensus: { - type: 'cometbft', - version: 'mev-cometbft v0.34.27-mev.18' - }, - cosmwasm_version: '0.31.0', - cosmwasm_enabled: true, - ibc_go_version: 'v4.3.0', - next_version_name: 'v15' - }, - { - name: 'v15', - proposal: 295, - height: 8577241, - recommended_version: 'v15.0.0', - compatible_versions: ['v15.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/CosmosContracts/juno/releases/download/v15.0.0/junod' - }, - cosmos_sdk_version: '0.45.16', - consensus: { - type: 'cometbft', - version: 'mev-cometbft v0.34.27-mev.18' - }, - cosmwasm_version: '0.31.0', - cosmwasm_enabled: true, - ibc_go_version: 'v4.3.1', - next_version_name: 'v16' - }, - { - name: 'v16', - proposal: 311, - height: 9481382, - recommended_version: 'v16.0.2', - compatible_versions: ['v16.0.0', 'v16.0.2'], - binaries: { - 'linux/amd64': - 'https://github.com/CosmosContracts/juno/releases/download/v16.0.2/junod' - }, - cosmos_sdk_version: '0.47.3', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.40.2', - cosmwasm_enabled: true, - ibc_go_version: 'v7.2.0', - next_version_name: 'v17' - }, - { - name: 'v17', - proposal: 317, - height: 10078449, - recommended_version: 'v17.1.1', - compatible_versions: ['v17.0.0', 'v17.1.1'], - binaries: { - 'linux/amd64': - 'https://github.com/CosmosContracts/juno/releases/download/v17.1.1/junod' - }, - cosmos_sdk_version: '0.47.5', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.41.0', - cosmwasm_enabled: true, - ibc_go_version: 'v7.3.0', - next_version_name: 'v18' - }, - { - name: 'v18', - proposal: 325, - height: 12265007, - recommended_version: 'v18.1.0', - compatible_versions: ['v18.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/CosmosContracts/juno/releases/download/v18.1.0/junod' - }, - cosmos_sdk_version: '0.47.5', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.45.0', - cosmwasm_enabled: true, - ibc_go_version: 'v7.3.1', - next_version_name: '' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' - }, - description: - 'Juno is a completely community owned and operated smart contract platform.', - peers: { - seeds: [ - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:12656', - provider: 'RHINO' - }, - { - id: '90b09362d9ce3845096c4938eea0dba682b0ad2c', - address: 'juno-seed-new.blockpane.com:26656' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:12656', - provider: 'Polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:12656', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ea67180befe4d9ca71142d21ada8ff58cc08f71c', - address: 'seeds.goldenratiostaking.net:1627', - provider: 'Golden Ratio Staking' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'juno-mainnet-seed.autostake.com:27136', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:12656', - provider: 'WhisperNode 🤐' - }, + "$schema": "../chain.schema.json", + "chain_name": "juno", + "status": "live", + "network_type": "mainnet", + "website": "https://www.junonetwork.io/", + "pretty_name": "Juno", + "chain_id": "juno-1", + "bech32_prefix": "juno", + "daemon_name": "junod", + "node_home": "$HOME/.juno", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '509f6dbae3133a9df177edea051b31e1210b117e', - address: 'seed-juno-01.stakeflow.io:2307', - provider: 'Stakeflow' + "denom": "ujuno", + "fixed_min_gas_price": 0.075, + "low_gas_price": 0.075, + "average_gas_price": 0.1, + "high_gas_price": 0.125 }, { - id: '77c33f62d34c20a0e795240f4548ab741ea558d9', - address: '138.201.21.121:24956', - provider: 'Validatrium' + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "fixed_min_gas_price": 0.003, + "low_gas_price": 0.003, + "average_gas_price": 0.0035, + "high_gas_price": 0.004 } - ], - persistent_peers: [ - { - id: '7f593757c0cde8972ce929381d8ac8e446837811', - address: '178.18.255.244:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'juno-mainnet-peer.autostake.com:27136', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '3ee2034cf0180e4d50f7b3ed952472add3316faf', - address: 'juno.peer.stavr.tech:1066', - provider: '🔥STAVR🔥' - }, - { - id: '509f6dbae3133a9df177edea051b31e1210b117e', - address: 'peer-juno-01.stakeflow.io:2307', - provider: 'Stakeflow' - }, - { - id: '397281b9fa745482127093f08ac05724c2b8d6f8', - address: '65.108.195.213:33656', - provider: 'StakeTown' - }, + ] + }, + "staking": { + "staking_tokens": [ { - id: '77c33f62d34c20a0e795240f4548ab741ea558d9', - address: '138.201.21.121:24956', - provider: 'Validatrium' + "denom": "ujuno" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.47.5", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.45.0" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + }, + "description": "Juno is a completely community owned and operated smart contract platform.", + "apis": { + "rpc": [ { - address: 'https://rpc-juno.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-juno.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://rpc-juno.goldenratiostaking.net', - provider: 'Golden Ratio Staking' + "address": "https://rpc-juno.goldenratiostaking.net", + "provider": "Golden Ratio Staking" }, { - address: 'https://rpc-juno.itastakers.com', - provider: 'itastakers' + "address": "https://rpc-juno.itastakers.com", + "provider": "itastakers" }, { - address: 'http://juno.rpc.m.stavr.tech:1067', - provider: '🔥STAVR🔥' + "address": "http://juno.rpc.m.stavr.tech:1067", + "provider": "🔥STAVR🔥" }, { - 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://juno-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://juno-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-juno.pupmos.network', - provider: 'PUPMØS' + "address": "https://rpc-juno.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://rpc-juno.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-juno.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://rpc-juno-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-juno-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc.juno.chaintools.tech/', - provider: 'ChainTools' + "address": "https://rpc.juno.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://juno-rpc.kleomedes.network', - provider: 'Kleomedes' + "address": "https://juno-rpc.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://juno-rpc.icycro.org', - provider: 'IcyCRO 🧊' + "address": "https://juno-rpc.icycro.org", + "provider": "IcyCRO 🧊" }, { - address: 'https://rpc.juno.bh.rocks', - provider: 'BlockHunters 🎯' + "address": "https://rpc.juno.bh.rocks", + "provider": "BlockHunters 🎯" }, { - address: 'https://juno.kingnodes.com', - provider: 'kingnodes 👑' + "address": "https://juno.kingnodes.com", + "provider": "kingnodes 👑" }, { - address: 'https://juno-rpc.reece.sh', - provider: 'Reecepbcups' + "address": "https://juno-rpc.reece.sh", + "provider": "Reecepbcups" }, { - address: 'https://juno-rpc.stakeandrelax.net', - provider: 'Stake&Relax Validator 🦥' + "address": "https://juno-rpc.stakeandrelax.net", + "provider": "Stake&Relax Validator 🦥" }, { - address: 'https://rpc-juno.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rpc-juno.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://rpc-juno-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-juno-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://rpc-juno.validavia.me', - provider: 'Validavia' + "address": "https://rpc-juno.validavia.me", + "provider": "Validavia" }, { - address: 'https://juno-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://juno-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://juno-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://juno-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://juno-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://juno-rpc.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://rpc-juno.mainnet.validatrium.club:443', - provider: 'Validatrium' + "address": "https://rpc-juno.mainnet.validatrium.club:443", + "provider": "Validatrium" }, { - address: 'https://juno-rpc.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://juno-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://rpc.juno.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.juno.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ + "rest": [ { - 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://juno-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://juno-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://juno.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://juno.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api-juno.pupmos.network', - provider: 'PUPMØS' + "address": "https://api-juno.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://api-juno-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-juno-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://api.juno.chaintools.tech/', - provider: 'ChainTools' + "address": "https://api.juno.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://juno-api.polkachu.com', - provider: 'Polkachu' + "address": "https://juno-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://api-juno.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-juno.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://juno-api.kleomedes.network', - provider: 'Kleomedes' + "address": "https://juno-api.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://api.juno.bh.rocks', - provider: 'BlockHunters 🎯' + "address": "https://api.juno.bh.rocks", + "provider": "BlockHunters 🎯" }, { - address: 'https://juno.kingnodes.com', - provider: 'kingnodes 👑' + "address": "https://juno.kingnodes.com", + "provider": "kingnodes 👑" }, { - address: 'https://juno-api.reece.sh', - provider: 'Reecepbcups' + "address": "https://juno-api.reece.sh", + "provider": "Reecepbcups" }, { - address: 'https://juno-api.stakeandrelax.net', - provider: 'Stake&Relax Validator 🦥' + "address": "https://juno-api.stakeandrelax.net", + "provider": "Stake&Relax Validator 🦥" }, { - address: 'https://rest-juno.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rest-juno.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://rest-juno.goldenratiostaking.net', - provider: 'Golden Ratio Staking' + "address": "https://rest-juno.goldenratiostaking.net", + "provider": "Golden Ratio Staking" }, { - address: 'https://api-juno-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-juno-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://lcd-juno.validavia.me', - provider: 'Validavia' + "address": "https://lcd-juno.validavia.me", + "provider": "Validavia" }, { - address: 'https://juno-api.w3coins.io', - provider: 'w3coins' + "address": "https://juno-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://juno-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://juno-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://juno-api.stake-town.com', - provider: 'StakeTown' + "address": "https://juno-api.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://lcd-juno.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-juno.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://juno-api.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://juno-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://lcd.juno.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.juno.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'grpc-juno-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-juno-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'juno-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "juno-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'juno-grpc.polkachu.com:12690', - provider: 'Polkachu' + "address": "juno-grpc.polkachu.com:12690", + "provider": "Polkachu" }, { - address: 'http://juno.grpc.m.stavr.tech:504', - provider: '🔥STAVR🔥' + "address": "http://juno.grpc.m.stavr.tech:504", + "provider": "🔥STAVR🔥" }, { - address: 'grpc-juno.kingnodes.com:443', - provider: 'kingnodes 👑' + "address": "grpc-juno.kingnodes.com:443", + "provider": "kingnodes 👑" }, { - address: 'grpc-juno.cosmos-spaces.cloud:4830', - provider: 'Cosmos Spaces' + "address": "grpc-juno.cosmos-spaces.cloud:4830", + "provider": "Cosmos Spaces" }, { - address: 'http://juno-grpc.stakeandrelax.net:12690', - provider: 'Stake&Relax Validator 🦥' + "address": "http://juno-grpc.stakeandrelax.net:12690", + "provider": "Stake&Relax Validator 🦥" }, { - address: 'grpc-juno.architectnodes.com:1443', - provider: 'Architect Nodes' + "address": "grpc-juno.architectnodes.com:1443", + "provider": "Architect Nodes" }, { - address: 'juno-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "juno-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'http://167.235.211.168:9091', - provider: 'CommunityStaking' + "address": "http://167.235.211.168:9091", + "provider": "CommunityStaking" }, { - address: 'grpc-juno-01.stakeflow.io:2302', - provider: 'Stakeflow' + "address": "grpc-juno-01.stakeflow.io:2302", + "provider": "Stakeflow" }, { - address: 'juno-grpc.w3coins.io:12690', - provider: 'w3coins' + "address": "juno-grpc.w3coins.io:12690", + "provider": "w3coins" }, { - address: 'juno-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "juno-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'juno-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "juno-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: '138.201.21.121:24990', - provider: 'Validatrium' + "address": "138.201.21.121:24990", + "provider": "Validatrium" }, { - address: 'juno-grpc.stakeandrelax.net:12690', - provider: 'Stake&Relax 🦥' + "address": "juno-grpc.stakeandrelax.net:12690", + "provider": "Stake&Relax 🦥" }, { - address: 'https://grpc.juno.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.juno.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/juno', - tx_page: 'https://app.ezstaking.io/juno/txs/${txHash}', - account_page: 'https://app.ezstaking.io/juno/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/juno", + "tx_page": "https://app.ezstaking.io/juno/txs/${txHash}", + "account_page": "https://app.ezstaking.io/juno/account/${accountAddress}" }, { - 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/transactions/${txHash}', - account_page: 'https://www.mintscan.io/juno/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/juno", + "tx_page": "https://www.mintscan.io/juno/transactions/${txHash}", + "account_page": "https://www.mintscan.io/juno/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/juno', - tx_page: 'https://atomscan.com/juno/transactions/${txHash}', - account_page: 'https://atomscan.com/juno/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/juno", + "tx_page": "https://atomscan.com/juno/transactions/${txHash}", + "account_page": "https://atomscan.com/juno/accounts/${accountAddress}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/juno', - tx_page: 'https://explorer.stavr.tech/juno/transactions/${txHash}', - account_page: - 'https://explorer.stavr.tech/juno/accounts/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/juno", + "tx_page": "https://explorer.stavr.tech/juno/transactions/${txHash}", + "account_page": "https://explorer.stavr.tech/juno/accounts/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/juno', - tx_page: 'https://explorer.tcnetwork.io/juno/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/juno", + "tx_page": "https://explorer.tcnetwork.io/juno/transaction/${txHash}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/juno', - account_page: 'https://stakeflow.io/juno/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/juno", + "account_page": "https://stakeflow.io/juno/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'kava', - status: 'live', - network_type: 'mainnet', - website: 'https://www.kava.io/', - pretty_name: 'Kava', - chain_id: 'kava_2222-10', - bech32_prefix: 'kava', - daemon_name: 'kava', - node_home: '$HOME/.kava', - slip44: 459, - alternative_slip44s: [118], - fees: { - fee_tokens: [ - { - denom: 'ukava', - low_gas_price: 0.05, - average_gas_price: 0.1, - high_gas_price: 0.25 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "kava", + "status": "live", + "network_type": "mainnet", + "website": "https://www.kava.io/", + "pretty_name": "Kava", + "chain_id": "kava_2222-10", + "bech32_prefix": "kava", + "daemon_name": "kava", + "node_home": "$HOME/.kava", + "slip44": 459, + "alternative_slip44s": [ + 118 + ], + "fees": { + "fee_tokens": [ { - denom: 'ukava' + "denom": "ukava", + "low_gas_price": 0.05, + "average_gas_price": 0.1, + "high_gas_price": 0.25 } ] }, - codebase: { - git_repo: 'https://github.com/kava-Labs/kava/', - recommended_version: 'v0.21.0', - compatible_versions: ['v0.21.0'], - genesis: { - genesis_url: - 'https://kava-genesis-files.s3.us-east-1.amazonaws.com/kava_2222-10/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.21.0', - recommended_version: 'v0.21.0', - compatible_versions: ['v0.21.0'] + "denom": "ukava" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg" }, - description: - 'Kava is a decentralized blockchain that combines the speed and interoperability of Cosmos with the developer power of Ethereum.', - peers: { - seeds: [ + "description": "Kava is a decentralized blockchain that combines the speed and interoperability of Cosmos with the developer power of Ethereum.", + "apis": { + "rpc": [ { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:13956', - provider: 'Polkachu' + "address": "https://rpc.data.kava.io", + "provider": "kava" }, { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'kava-mainnet-seed.autostake.com:26656', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://kava-rpc.polkachu.com", + "provider": "Polkachu" }, { - id: '7ab4b78fbe5ee9e3777b21464a3162bd4cc17f57', - address: 'seed-kava-01.stakeflow.io:1206', - provider: 'Stakeflow' + "address": "https://rpc-kava-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ + "address": "https://kava-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" + }, { - id: '8b5c4a890c8ae7efbbe3360af71be1c3c3a9e12e', - address: '121.78.241.68:46656' + "address": "https://kava-rpc.ibs.team", + "provider": "Inter Blockchain Services" }, { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'kava-mainnet-peer.autostake.com:26656', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://rpc-kava-01.stakeflow.io", + "provider": "Stakeflow" }, { - id: '7ab4b78fbe5ee9e3777b21464a3162bd4cc17f57', - address: 'peer-kava-01.stakeflow.io:1206', - provider: 'Stakeflow' + "address": "https://kava-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } - ] - }, - apis: { - rpc: [ + ], + "rest": [ { - address: 'https://rpc.data.kava.io', - provider: 'kava' + "address": "https://api.data.kava.io/", + "provider": "kava" }, { - address: 'https://kava-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://api-kava-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc-kava-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://kava-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://kava-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://kava-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://kava-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://kava-api.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://rpc-kava-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-kava-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://kava-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://kava-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - rest: [ + "grpc": [ { - address: 'https://api.data.kava.io/', - provider: 'kava' + "address": "grpc.data.kava.io:443", + "provider": "kava" }, { - address: 'https://api-kava-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "grpc-kava-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'https://kava-api.polkachu.com', - provider: 'Polkachu' + "address": "kava-grpc.polkachu.com:13990", + "provider": "Polkachu" }, { - address: 'https://kava-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "kava-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://kava-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "grpc-kava-01.stakeflow.io:1202", + "provider": "Stakeflow" }, { - address: 'https://api-kava-01.stakeflow.io', - provider: 'Stakeflow' - }, - { - address: 'https://kava-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "kava-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ - { - address: 'grpc.data.kava.io:443', - provider: 'kava' - }, + "evm-http-jsonrpc": [ { - address: 'grpc-kava-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "https://evm.kava.io/", + "provider": "kava" }, { - address: 'kava-grpc.polkachu.com:13990', - provider: 'Polkachu' + "address": "https://kava-evm.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'kava-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - address: 'grpc-kava-01.stakeflow.io:1202', - provider: 'Stakeflow' - }, - { - address: 'kava-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - 'evm-http-jsonrpc': [ - { - address: 'https://evm.kava.io/', - provider: 'kava' - }, - { - address: 'https://kava-evm.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - address: 'https://kava.api.onfinality.io/public', - provider: 'OnFinality' + "address": "https://kava.api.onfinality.io/public", + "provider": "OnFinality" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/kava', - tx_page: 'https://www.mintscan.io/kava/transactions/${txHash}', - account_page: 'https://www.mintscan.io/kava/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/kava", + "tx_page": "https://www.mintscan.io/kava/transactions/${txHash}", + "account_page": "https://www.mintscan.io/kava/accounts/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/kava/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/kava", + "tx_page": "https://atomscan.com/kava/transactions/${txHash}", + "account_page": "https://atomscan.com/kava/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/kava', - account_page: 'https://stakeflow.io/kava/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/kava", + "account_page": "https://stakeflow.io/kava/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'kichain', - status: 'live', - network_type: 'mainnet', - website: 'https://foundation.ki/', - pretty_name: 'Ki', - chain_id: 'kichain-2', - bech32_prefix: 'ki', - daemon_name: 'kid', - node_home: '$HOME/.kid', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uxki', - fixed_min_gas_price: 0.025, - low_gas_price: 0.025, - average_gas_price: 0.03, - high_gas_price: 0.05 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "kichain", + "status": "live", + "network_type": "mainnet", + "website": "https://foundation.ki/", + "pretty_name": "Ki", + "chain_id": "kichain-2", + "bech32_prefix": "ki", + "daemon_name": "kid", + "node_home": "$HOME/.kid", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uxki' + "denom": "uxki", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.03, + "high_gas_price": 0.05 } ] }, - codebase: { - git_repo: 'https://github.com/KiFoundation/ki-tools', - recommended_version: '5.0.1', - compatible_versions: ['5.0.0', '5.0.1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/KiFoundation/ki-networks/v0.1/Mainnet/kichain-2/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: '5.0.0', - recommended_version: '5.0.1', - compatible_versions: ['5.0.0', '5.0.1'] + "denom": "uxki" } ] }, - 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' - }, - peers: { - seeds: [ - { - id: '24cbccfa8813accd0ebdb09e7cdb54cff2e8fcd9', - address: '51.89.166.197:26656', - provider: 'kifoundation' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:13556', - provider: 'Polkachu' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'kichain-mainnet-seed.autostake.com:27396', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:13556', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: '27941ba20ad57cb665c7870d073a938e35e7d634', - address: 'seed-ki.ibs.team:16663', - provider: 'Inter Blockchain Services' - } - ], - persistent_peers: [ - { - id: '41b321292cbe50c5c30017cc71c404481be0e20b', - address: '3.38.12.5:26656', - provider: 'cosmostation' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'kichain-mainnet-peer.autostake.com:27396', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '623645c5ad5fb81197f68c48e815e40917f2d6ed', - address: '5.9.61.184:26656', - provider: '[NODERS]TEAM' - } - ] + "codebase": {}, + "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" }, - 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-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-kichain-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://kichain-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://kichain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rpc.kichain.chaintools.tech/', - provider: 'ChainTools' + "address": "https://rpc.kichain.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://kichain-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://kichain-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'http://ki-chain.statesync.nodersteam.com:14657', - provider: '[NODERS]TEAM' + "address": "http://ki-chain.statesync.nodersteam.com:14657", + "provider": "[NODERS]TEAM" }, { - address: 'https://ki-rpc.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://ki-rpc.ibs.team/", + "provider": "Inter Blockchain Services" } ], - rest: [ + "rest": [ { - address: 'https://api-mainnet.blockchain.ki', - provider: 'kifoundation' + "address": "https://api-mainnet.blockchain.ki", + "provider": "kifoundation" }, { - address: 'https://api-kichain-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-kichain-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://api.kichain.chaintools.tech/', - provider: 'ChainTools' + "address": "https://api.kichain.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://kichain-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://kichain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'http://ki-chain.api.nodersteam.com:14017', - provider: '[NODERS]TEAM' + "address": "http://ki-chain.api.nodersteam.com:14017", + "provider": "[NODERS]TEAM" }, { - address: 'https://kichain-api.polkachu.com', - provider: 'Polkachu' + "address": "https://kichain-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://kichain-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://kichain-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://ki-api.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://ki-api.ibs.team/", + "provider": "Inter Blockchain Services" } ], - grpc: [ + "grpc": [ { - address: 'grpc-kichain-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-kichain-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'kichain-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "kichain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'ki-chain.grpc.nodersteam.com:9410', - provider: '[NODERS]TEAM' + "address": "ki-chain.grpc.nodersteam.com:9410", + "provider": "[NODERS]TEAM" }, { - address: 'kichain-grpc.polkachu.com:13590', - provider: 'Polkachu' + "address": "kichain-grpc.polkachu.com:13590", + "provider": "Polkachu" }, { - address: 'kichain-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "kichain-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/kichain', - tx_page: 'https://app.ezstaking.io/kichain/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/kichain/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/kichain", + "tx_page": "https://app.ezstaking.io/kichain/txs/${txHash}", + "account_page": "https://app.ezstaking.io/kichain/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/ki-chain', - tx_page: 'https://www.mintscan.io/ki-chain/txs/${txHash}', - account_page: - 'https://www.mintscan.io/ki-chain/account/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/ki-chain", + "tx_page": "https://www.mintscan.io/ki-chain/txs/${txHash}", + "account_page": "https://www.mintscan.io/ki-chain/account/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/ki-chain/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/ki-chain", + "tx_page": "https://atomscan.com/ki-chain/transactions/${txHash}", + "account_page": "https://atomscan.com/ki-chain/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'konstellation', - status: 'live', - network_type: 'mainnet', - website: 'https://konstellation.tech/', - pretty_name: 'Konstellation', - chain_id: 'darchub', - bech32_prefix: 'darc', - daemon_name: 'knstld', - node_home: '$HOME/.knstld', - slip44: 118, - codebase: { - git_repo: 'https://github.com/knstl/konstellation', - recommended_version: 'v0.6.2', - compatible_versions: ['v0.6.2'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/Konstellation/konstellation/master/config/genesis.json' - }, - versions: [ - { - name: 'v0.6.2', - recommended_version: 'v0.6.2', - compatible_versions: ['v0.6.2'] - } - ] + "$schema": "../chain.schema.json", + "chain_name": "konstellation", + "status": "live", + "network_type": "mainnet", + "website": "https://konstellation.tech/", + "pretty_name": "Konstellation", + "chain_id": "darchub", + "bech32_prefix": "darc", + "daemon_name": "knstld", + "node_home": "$HOME/.knstld", + "slip44": 118, + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/Konstellation-dark.png" }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/Konstellation-dark.png' - }, - fees: { - fee_tokens: [ - { - denom: 'udarc', - fixed_min_gas_price: 0, - low_gas_price: 0.0001, - average_gas_price: 0.001, - high_gas_price: 0.01 - } - ] - }, - staking: { - staking_tokens: [ + "fees": { + "fee_tokens": [ { - denom: 'udarc' + "denom": "udarc", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0001, + "average_gas_price": 0.001, + "high_gas_price": 0.01 } ] }, - peers: { - seeds: [ - { - id: '1bd4b89e05e5d7ea5d2dba89c799c2e624cb35d7', - address: 'node1.konstellation.tech:26656' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:13356', - provider: 'Polkachu' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'konstellation-mainnet-seed.autostake.com:26826', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'df949a46ae6529ae1e09b034b49716468d5cc7e9', - address: 'seeds.stakerhouse.com:10856', - provider: 'StakerHouse' - } - ], - persistent_peers: [ - { - id: '1bd4b89e05e5d7ea5d2dba89c799c2e624cb35d7', - address: 'node1.konstellation.tech:26656' - }, + "staking": { + "staking_tokens": [ { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'konstellation-mainnet-peer.autostake.com:26826', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '5a10c5f0a2d981037a0a3e5ecc825901ae0d416c', - address: '65.109.0.135:26656', - provider: '[NODERS]TEAM' + "denom": "udarc" } ] }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://konstellation-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://konstellation-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc-konstellation-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-konstellation-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://konstellation-rpc.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://konstellation-rpc.stakerhouse.com", + "provider": "StakerHouse" } ], - rest: [ + "rest": [ { - address: 'https://api-konstellation-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-konstellation-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://konstellation-api.polkachu.com', - provider: 'Polkachu' + "address": "https://konstellation-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://konstellation-rest.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://konstellation-rest.stakerhouse.com", + "provider": "StakerHouse" } ], - grpc: [ + "grpc": [ { - address: 'grpc-konstellation-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-konstellation-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'konstellation-grpc.polkachu.com:13390', - provider: 'Polkachu' + "address": "konstellation-grpc.polkachu.com:13390", + "provider": "Polkachu" }, { - address: 'konstellation-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "konstellation-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'konstellation-grpc.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "konstellation-grpc.stakerhouse.com:443", + "provider": "StakerHouse" } ] }, - 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}" }, { - kind: 'cosmotracker', - url: 'https://cosmotracker.com/konstellation', - tx_page: 'https://cosmotracker.com/konstellation/tx/${txHash}' + "kind": "cosmotracker", + "url": "https://cosmotracker.com/konstellation", + "tx_page": "https://cosmotracker.com/konstellation/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/Konstellation-dark.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/Konstellation-dark.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'kujira', - chain_id: 'kaiyo-1', - pretty_name: 'Kujira', - status: 'live', - network_type: 'mainnet', - website: 'https://kujira.app/', - bech32_prefix: 'kujira', - daemon_name: 'kujirad', - node_home: '$HOME/.kujira', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ukuji', - fixed_min_gas_price: 0.0034, - low_gas_price: 0.0034, - average_gas_price: 0.0051, - high_gas_price: 0.00681 - }, - { - denom: - 'factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk', - fixed_min_gas_price: 0.01186, - low_gas_price: 0.01186, - average_gas_price: 0.01779, - high_gas_price: 0.02372 - }, - { - denom: - 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F', - fixed_min_gas_price: 0.0119, - low_gas_price: 0.0119, - average_gas_price: 0.01785, - high_gas_price: 0.02379 - }, - { - denom: - 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', - fixed_min_gas_price: 0.00129, - low_gas_price: 0.00129, - average_gas_price: 0.00193, - high_gas_price: 0.00258 - }, - { - denom: - 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23', - fixed_min_gas_price: 0.01795, - low_gas_price: 0.01795, - average_gas_price: 0.02692, - high_gas_price: 0.0359 + "$schema": "../chain.schema.json", + "chain_name": "kujira", + "chain_id": "kaiyo-1", + "pretty_name": "Kujira", + "status": "live", + "network_type": "mainnet", + "website": "https://kujira.app/", + "bech32_prefix": "kujira", + "daemon_name": "kujirad", + "node_home": "$HOME/.kujira", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ukuji", + "fixed_min_gas_price": 0.0034, + "low_gas_price": 0.0034, + "average_gas_price": 0.0051, + "high_gas_price": 0.00681 }, { - denom: - 'ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07', - fixed_min_gas_price: 0.65943, - low_gas_price: 0.65943, - average_gas_price: 0.98915, - high_gas_price: 1.31887 - }, - { - denom: - 'ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10', - fixed_min_gas_price: 160416396197, - low_gas_price: 160416396197, - average_gas_price: 240624594296, - high_gas_price: 320832792394 - }, - { - denom: - 'ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5', - fixed_min_gas_price: 0.02689, - low_gas_price: 0.02689, - average_gas_price: 0.04034, - high_gas_price: 0.05379 - }, - { - denom: - 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986', - fixed_min_gas_price: 0.01495, - low_gas_price: 0.01495, - average_gas_price: 0.02243, - high_gas_price: 0.02991 - }, - { - denom: - 'ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5', - fixed_min_gas_price: 0.03139, - low_gas_price: 0.03139, - average_gas_price: 0.04709, - high_gas_price: 0.06278 - }, - { - denom: - 'ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602', - fixed_min_gas_price: 0.90403, - low_gas_price: 0.90403, - average_gas_price: 1.35605, - high_gas_price: 1.80806 - }, - { - denom: - 'ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2', - fixed_min_gas_price: 559196837, - low_gas_price: 559196837, - average_gas_price: 838795256, - high_gas_price: 1118393675 - }, - { - denom: - 'ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7', - fixed_min_gas_price: 5772801, - low_gas_price: 5772801, - average_gas_price: 8659201, - high_gas_price: 11545602 - }, - { - denom: 'factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta', - fixed_min_gas_price: 0.01807, - low_gas_price: 0.01807, - average_gas_price: 0.02711, - high_gas_price: 0.03615 - }, - { - denom: - 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', - fixed_min_gas_price: 0.01194, - low_gas_price: 0.01194, - average_gas_price: 0.01792, - high_gas_price: 0.02389 - }, - { - denom: - 'ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3', - fixed_min_gas_price: 0.00019, - low_gas_price: 0.00019, - average_gas_price: 0.00029, - high_gas_price: 0.00039 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ukuji' - } - ] - }, - codebase: { - git_repo: 'https://github.com/Team-Kujira/core', - recommended_version: 'v0.9.3-1', - compatible_versions: ['v0.9.3-1'], - cosmos_sdk_version: 'v0.47.5', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmwasm_version: 'v0.45.0', - cosmwasm_enabled: true, - ics_enabled: ['ics20-1'], - genesis: { - genesis_url: - 'https://github.com/Team-Kujira/networks/raw/master/mainnet/kaiyo-1.json' - }, - versions: [ + "denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "fixed_min_gas_price": 0.01186, + "low_gas_price": 0.01186, + "average_gas_price": 0.01779, + "high_gas_price": 0.02372 + }, { - name: 'v0.8.4', - tag: 'v0.8.4', - height: 9226200, - proposal: 302, - recommended_version: 'v0.8.4-mainnet', - compatible_versions: ['v0.8.4', 'v0.8.4-mainnet'], - cosmos_sdk_version: '0.46.11', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - ics_enabled: ['ics20-1'], - next_version_name: 'v0.8.7' + "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "fixed_min_gas_price": 0.0119, + "low_gas_price": 0.0119, + "average_gas_price": 0.01785, + "high_gas_price": 0.02379 }, { - name: 'v0.8.7', - proposal: -1, - recommended_version: 'v0.8.7', - compatible_versions: ['v0.8.7'], - next_version_name: 'v0.9.0' + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "fixed_min_gas_price": 0.00129, + "low_gas_price": 0.00129, + "average_gas_price": 0.00193, + "high_gas_price": 0.00258 }, { - name: 'v0.9.0', - proposal: 483, - height: 14783000, - recommended_version: 'v0.9.0', - compatible_versions: ['v0.9.0'], - cosmos_sdk_version: 'v0.47.5', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - next_version_name: 'v0.9.1' + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "fixed_min_gas_price": 0.01795, + "low_gas_price": 0.01795, + "average_gas_price": 0.02692, + "high_gas_price": 0.0359 }, { - name: 'v0.9.1', - proposal: 488, - height: 15205000, - recommended_version: 'v0.9.1-1', - compatible_versions: ['v0.9.1-1'], - cosmos_sdk_version: 'v0.47.5', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - next_version_name: 'v0.9.3' + "denom": "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", + "fixed_min_gas_price": 0.65943, + "low_gas_price": 0.65943, + "average_gas_price": 0.98915, + "high_gas_price": 1.31887 }, { - name: 'v0.9.3', - proposal: 534, - height: 16610000, - recommended_version: 'v0.9.3-1', - compatible_versions: ['v0.9.3-1'], - cosmos_sdk_version: 'v0.47.5', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmwasm_version: 'v0.45.0', - cosmwasm_enabled: true, - next_version_name: '' - } - ] - }, - description: - 'A decentralized ecosystem for protocols, builders and web3 users seeking sustainable FinTech.', - peers: { - seeds: [ + "denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", + "fixed_min_gas_price": 160416396197, + "low_gas_price": 160416396197, + "average_gas_price": 240624594296, + "high_gas_price": 320832792394 + }, { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:11856', - provider: 'Polkachu' + "denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", + "fixed_min_gas_price": 0.02689, + "low_gas_price": 0.02689, + "average_gas_price": 0.04034, + "high_gas_price": 0.05379 }, { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:11856', - provider: 'Lavender.Five Nodes 🐝' + "denom": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", + "fixed_min_gas_price": 0.01495, + "low_gas_price": 0.01495, + "average_gas_price": 0.02243, + "high_gas_price": 0.02991 }, { - id: '322abfd7c0bcdf8a3d98ccb46ae2572bae0e8301', - address: 'seed-kujira.starsquid.io:15602', - provider: 'Starsquid' + "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "fixed_min_gas_price": 0.03139, + "low_gas_price": 0.03139, + "average_gas_price": 0.04709, + "high_gas_price": 0.06278 }, { - id: '824fa337b806bd48ce9505d74ba3e5adea80da93', - address: 'seeds.goldenratiostaking.net:1628', - provider: 'Golden Ratio Staking' + "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", + "fixed_min_gas_price": 0.90403, + "low_gas_price": 0.90403, + "average_gas_price": 1.35605, + "high_gas_price": 1.80806 }, { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'kujira-mainnet-seed.autostake.com:26796', - provider: 'AutoStake ⚡️ 0% fee' + "denom": "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", + "fixed_min_gas_price": 559196837, + "low_gas_price": 559196837, + "average_gas_price": 838795256, + "high_gas_price": 1118393675 }, { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'kujira.rpc.kjnodes.com:11359', - provider: 'kjnodes' + "denom": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", + "fixed_min_gas_price": 5772801, + "low_gas_price": 5772801, + "average_gas_price": 8659201, + "high_gas_price": 11545602 }, { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' + "denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "fixed_min_gas_price": 0.01807, + "low_gas_price": 0.01807, + "average_gas_price": 0.02711, + "high_gas_price": 0.03615 }, { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:11856', - provider: 'WhisperNode 🤐' + "denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", + "fixed_min_gas_price": 0.01194, + "low_gas_price": 0.01194, + "average_gas_price": 0.01792, + "high_gas_price": 0.02389 }, { - id: '654ba97f74254965a80c0fac0f277f6f6e5506b6', - address: 'seed-node.mms.team:29656', - provider: 'MMS' + "denom": "ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3", + "fixed_min_gas_price": 0.00019, + "low_gas_price": 0.00019, + "average_gas_price": 0.00029, + "high_gas_price": 0.00039 } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'kujira-mainnet-peer.autostake.com:26796', - provider: 'AutoStake ⚡️ 0% fee' - }, + ] + }, + "staking": { + "staking_tokens": [ { - id: 'c1a740841a6dc0b56730e975b1a4aa2d8c73b204', - address: 'peer-kujira.mms.team:29656', - provider: 'MMS' + "denom": "ukuji" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.47.5", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.45.0" + }, + "description": "A decentralized ecosystem for protocols, builders and web3 users seeking sustainable FinTech.", + "apis": { + "rpc": [ { - address: 'https://rpc-kujira.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-kujira.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://rpc.kaiyo.kujira.setten.io', - provider: 'setten.io' + "address": "https://rpc.kaiyo.kujira.setten.io", + "provider": "setten.io" }, { - address: 'https://kujira-rpc.polkachu.com', - provider: 'polkachu' + "address": "https://kujira-rpc.polkachu.com", + "provider": "polkachu" }, { - address: 'https://rpc-kujira.ecostake.com', - provider: 'ecostake' + "address": "https://rpc-kujira.ecostake.com", + "provider": "ecostake" }, { - address: 'https://kujira-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://kujira-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc.kujira.chaintools.tech/', - provider: 'ChainTools' + "address": "https://rpc.kujira.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://rpc-kujira-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-kujira-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://kujira-rpc.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://kujira-rpc.ibs.team/", + "provider": "Inter Blockchain Services" }, { - address: 'https://rpc-kujira.starsquid.io', - provider: 'Starsquid' + "address": "https://rpc-kujira.starsquid.io", + "provider": "Starsquid" }, { - address: 'https://kujira.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://kujira.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://kuji-rpc.kleomedes.network', - provider: 'Kleomedes' + "address": "https://kuji-rpc.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://rpc-kujira.goldenratiostaking.net', - provider: 'Golden Ratio Staking' + "address": "https://rpc-kujira.goldenratiostaking.net", + "provider": "Golden Ratio Staking" }, { - address: 'https://kujira-mainnet-rpc.autostake.com:443', - provider: 'AutoStake ⚡️ 0% fee' + "address": "https://kujira-mainnet-rpc.autostake.com:443", + "provider": "AutoStake ⚡️ 0% fee" }, { - address: 'https://rpc.kujira.rektdao.club', - provider: 'rektDAO' + "address": "https://rpc.kujira.rektdao.club", + "provider": "rektDAO" }, { - address: 'https://kujira-rpc.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://kujira-rpc.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://kujira-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://kujira-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://rpc-kujira.mms.team', - provider: 'MMS' + "address": "https://rpc-kujira.mms.team", + "provider": "MMS" }, { - address: 'https://kujira-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://kujira-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://kujira.interstellar-lounge.org', - provider: 'Interstellar Lounge 🍸' + "address": "https://kujira.interstellar-lounge.org", + "provider": "Interstellar Lounge 🍸" } ], - rest: [ + "rest": [ { - address: 'https://lcd-kujira.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-kujira.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://lcd.kaiyo.kujira.setten.io', - provider: 'setten.io' + "address": "https://lcd.kaiyo.kujira.setten.io", + "provider": "setten.io" }, { - address: 'https://kujira-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://kujira-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://kujira-api.polkachu.com/', - provider: 'polkachu' + "address": "https://kujira-api.polkachu.com/", + "provider": "polkachu" }, { - address: 'https://rest-kujira.ecostake.com', - provider: 'ecostake' + "address": "https://rest-kujira.ecostake.com", + "provider": "ecostake" }, { - address: 'https://api-kujira-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-kujira-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://kujira-lcd.wildsage.io/', - provider: 'WildSage Labs' + "address": "https://kujira-lcd.wildsage.io/", + "provider": "WildSage Labs" }, { - address: 'https://kujira-api.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://kujira-api.ibs.team/", + "provider": "Inter Blockchain Services" }, { - address: 'https://api-kujira.starsquid.io', - provider: 'Starsquid' + "address": "https://api-kujira.starsquid.io", + "provider": "Starsquid" }, { - address: 'https://kujira.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://kujira.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://kuji-api.kleomedes.network', - provider: 'Kleomedes' + "address": "https://kuji-api.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://kujira-mainnet-lcd.autostake.com:443', - provider: 'AutoStake ⚡️ 0% fee' + "address": "https://kujira-mainnet-lcd.autostake.com:443", + "provider": "AutoStake ⚡️ 0% fee" }, { - address: 'https://api.kujira.rektdao.club', - provider: 'rektDAO' + "address": "https://api.kujira.rektdao.club", + "provider": "rektDAO" }, { - address: 'https://kujira-api.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://kujira-api.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://kujira-api.w3coins.io', - provider: 'w3coins' + "address": "https://kujira-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://api-kujira.mms.team', - provider: 'MMS' + "address": "https://api-kujira.mms.team", + "provider": "MMS" }, { - address: 'https://kujira-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://kujira-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://kujira-rest.interstellar-lounge.org', - provider: 'Interstellar Lounge 🍸' + "address": "https://kujira-rest.interstellar-lounge.org", + "provider": "Interstellar Lounge 🍸" } ], - grpc: [ + "grpc": [ { - address: 'kujira.grpcui.chaintools.host:443', - provider: 'ChainTools' + "address": "kujira.grpcui.chaintools.host:443", + "provider": "ChainTools" }, { - address: 'grpc-kujira-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-kujira-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'kujira-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "kujira-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'kujira-grpc.polkachu.com:11890', - provider: 'Polkachu' + "address": "kujira-grpc.polkachu.com:11890", + "provider": "Polkachu" }, { - address: 'kujira-mainnet-grpc.autostake.com:443', - provider: 'AutoStake ⚡️ 0% fee' + "address": "kujira-mainnet-grpc.autostake.com:443", + "provider": "AutoStake ⚡️ 0% fee" }, { - address: 'kujira.grpc.kjnodes.com:11390', - provider: 'kjnodes' + "address": "kujira.grpc.kjnodes.com:11390", + "provider": "kjnodes" }, { - address: 'kujira-grpc.w3coins.io:11890', - provider: 'w3coins' + "address": "kujira-grpc.w3coins.io:11890", + "provider": "w3coins" }, { - address: 'grpc-kujira.mms.team:443', - provider: 'MMS' + "address": "grpc-kujira.mms.team:443", + "provider": "MMS" }, { - address: 'kujira-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "kujira-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'grpc-kujira.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "grpc-kujira.whispernode.com:443", + "provider": "WhisperNode 🤐" } ] }, - explorers: [ + "explorers": [ { - kind: 'kujira', - url: 'https://finder.kujira.app', - tx_page: 'https://finder.kujira.app/kaiyo-1/tx/${txHash}' + "kind": "kujira", + "url": "https://finder.kujira.app", + "tx_page": "https://finder.kujira.app/kaiyo-1/tx/${txHash}" }, { - kind: 'explorers.guru', - url: 'https://kujira.explorers.guru', - tx_page: 'https://kujira.explorers.guru/transaction/${txHash}' + "kind": "explorers.guru", + "url": "https://kujira.explorers.guru", + "tx_page": "https://kujira.explorers.guru/transaction/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/kujira', - tx_page: 'https://atomscan.com/kujira/transactions/${txHash}', - account_page: 'https://atomscan.com/kujira/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/kujira", + "tx_page": "https://atomscan.com/kujira/transactions/${txHash}", + "account_page": "https://atomscan.com/kujira/accounts/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kujira-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kujira-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kujira-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kujira-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'kyve', - chain_id: 'kyve-1', - pretty_name: 'KYVE', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'kyve', - daemon_name: 'kyved', - node_home: '$HOME/.kyve', - website: 'https://www.kyve.network/', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ukyve', - fixed_min_gas_price: 0.02, - low_gas_price: 0.02, - average_gas_price: 0.03, - high_gas_price: 0.06 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ukyve' - } - ] - }, - codebase: { - git_repo: 'https://github.com/KYVENetwork/chain', - recommended_version: 'v1.4.0', - compatible_versions: ['v1.4.0'], - cosmos_sdk_version: 'v0.47.6-kyve-rc0', - ibc_go_version: 'v7.3.0', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - binaries: { - 'linux/amd64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_darwin_arm64.tar.gz' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/KYVENetwork/networks/main/kyve-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - next_version_name: 'v1.1.0' - }, - { - name: 'v1.1.0', - height: 826000, - proposal: 3, - recommended_version: 'v1.1.0', - compatible_versions: ['v1.1.0'], - next_version_name: 'v1.2.0' - }, - { - name: 'v1.2.0', - height: 1135000, - proposal: 4, - recommended_version: 'v1.2.2', - compatible_versions: ['v1.2.1', '1.2.2'], - next_version_name: 'v1.3.0' - }, - { - name: 'v1.3.0', - proposal: 8, - height: 2061100, - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'], - binaries: { - 'linux/amd64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.3.0/kyved_mainnet_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.3.0/kyved_mainnet_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.3.0/kyved_mainnet_darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.3.0/kyved_mainnet_darwin_arm64.tar.gz' - }, - next_version_name: 'v1.4.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "kyve", + "chain_id": "kyve-1", + "pretty_name": "KYVE", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "kyve", + "daemon_name": "kyved", + "node_home": "$HOME/.kyve", + "website": "https://www.kyve.network/", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v1.4.0', - proposal: 21, - height: 3908000, - recommended_version: 'v1.4.0', - compatible_versions: ['v1.4.0'], - cosmos_sdk_version: 'v0.47.6-kyve-rc0', - ibc_go_version: 'v7.3.0', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - binaries: { - 'linux/amd64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/KYVENetwork/chain/releases/download/v1.4.0/kyved_mainnet_darwin_arm64.tar.gz' - }, - next_version_name: '' + "denom": "ukyve", + "fixed_min_gas_price": 0.02, + "low_gas_price": 0.02, + "average_gas_price": 0.03, + "high_gas_price": 0.06 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.svg' - }, - description: - 'Revolutionizing data reliability in the Web3 space, KYVE Network provides fast and easy tooling for data validation, immutability, and retrieval, ensuring trustless data for seamless scalability and eliminating data risks and roadblocks.', - peers: { - seeds: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:11056', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'cec848e7d4c5a7ae305b27cda133d213435c110f', - address: 'seed-kyve.ibs.team:16664', - provider: 'Inter Blockchain Services' - }, - { - id: '63aef665906f1ac532f6266bb2067510ca35a9a2', - address: 'seed-node.mms.team:41656', - provider: 'MMS' - } - ], - persistent_peers: [ - { - id: 'fae8cd5f04406e64484a7a8b6719eacbb861c094', - address: '44.241.103.199:26656', - provider: 'kyve' - }, - { - id: '146d27829fd240e0e4672700514e9835cb6fdd98', - address: '34.212.201.1:26656', - provider: 'kyve' - }, - { - id: '23f2668adb6d7387c8bc7fdc8a9d10430a092df7', - address: 'kyve.peer.stavr.tech:12356', - provider: '🔥STAVR🔥' - }, - { - id: '25da6253fc8740893277630461eb34c2e4daf545', - address: '3.76.244.30:26656', - provider: 'kyve' - }, - { - id: 'b950b6b08f7a6d5c3e068fcd263802b336ffe047', - address: '18.198.182.214:26656', - provider: 'kyve' - }, - { - id: 'ae3f75549c0fe53bae94909fb7477eb308dfe989', - address: '88.99.104.180:46656', - provider: 'Stake-Take' - }, + "staking": { + "staking_tokens": [ { - id: '00917221debc335189292cce406cd20a8a44e603', - address: 'peer-kyve.mms.team:27656', - provider: 'MMS' + "denom": "ukyve" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.47.6-kyve-rc0" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.svg" + }, + "description": "Revolutionizing data reliability in the Web3 space, KYVE Network provides fast and easy tooling for data validation, immutability, and retrieval, ensuring trustless data for seamless scalability and eliminating data risks and roadblocks.", + "apis": { + "rpc": [ { - address: 'https://rpc-eu-1.kyve.network', - provider: 'kyve' + "address": "https://rpc-eu-1.kyve.network", + "provider": "kyve" }, { - address: 'https://rpc-kyve.ecostake.com', - provider: 'ecostake' + "address": "https://rpc-kyve.ecostake.com", + "provider": "ecostake" }, { - address: 'https://kyve-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://kyve-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'http://kyve.rpc.m.stavr.tech:12357', - provider: '🔥STAVR🔥' + "address": "http://kyve.rpc.m.stavr.tech:12357", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc-kyve.imperator.co', - provider: 'Imperator.co' + "address": "https://rpc-kyve.imperator.co", + "provider": "Imperator.co" }, { - address: 'https://kyve-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://kyve-rpc.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://rpc-kyve.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-kyve.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://rpc.kyve.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.kyve.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://kyve.rpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://kyve.rpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://rpc-kyve.mms.team', - provider: 'MMS' + "address": "https://rpc-kyve.mms.team", + "provider": "MMS" } ], - rest: [ + "rest": [ { - address: 'https://api-eu-1.kyve.network', - provider: 'kyve' + "address": "https://api-eu-1.kyve.network", + "provider": "kyve" }, { - address: 'https://kyve-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://kyve-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rest-kyve.ecostake.com', - provider: 'ecostake' + "address": "https://rest-kyve.ecostake.com", + "provider": "ecostake" }, { - address: 'https://lcd-kyve.imperator.co', - provider: 'Imperator.co' + "address": "https://lcd-kyve.imperator.co", + "provider": "Imperator.co" }, { - address: 'https://kyve.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://kyve.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://kyve-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://kyve-api.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://api.kyve.nodestake.top', - provider: 'NodeStake' + "address": "https://api.kyve.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://api-kyve.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-kyve.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://kyve.api.liveraven.net', - provider: 'LiveRaveN' + "address": "https://kyve.api.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://api-kyve.mms.team', - provider: 'MMS' + "address": "https://api-kyve.mms.team", + "provider": "MMS" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.kyve.nodestake.top', - provider: 'NodeStake' + "address": "https://grpc.kyve.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://kyve-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://kyve-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'grpc-kyve.cosmos-spaces.cloud:2590', - provider: 'Cosmos Spaces' + "address": "grpc-kyve.cosmos-spaces.cloud:2590", + "provider": "Cosmos Spaces" }, { - address: 'https://grpc-kyve.nodeist.net', - provider: 'Nodeist' + "address": "https://grpc-kyve.nodeist.net", + "provider": "Nodeist" }, { - address: 'http://kyve.grpc.stavr.tech:7106', - provider: '🔥STAVR🔥' + "address": "http://kyve.grpc.stavr.tech:7106", + "provider": "🔥STAVR🔥" }, { - address: 'https://kyve.grpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://kyve.grpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'grpc-kyve.mms.team:443', - provider: 'MMS' + "address": "grpc-kyve.mms.team:443", + "provider": "MMS" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/kyve', - tx_page: 'https://www.mintscan.io/kyve/txs/${txHash}', - account_page: 'https://www.mintscan.io/kyve/account/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/kyve", + "tx_page": "https://www.mintscan.io/kyve/txs/${txHash}", + "account_page": "https://www.mintscan.io/kyve/account/${accountAddress}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/kyve', - tx_page: 'https://explorer.nodestake.top/kyve/txs/${txHash}', - account_page: - 'https://explorer.nodestake.top/kyve/account/${accountAddress}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/kyve", + "tx_page": "https://explorer.nodestake.top/kyve/txs/${txHash}", + "account_page": "https://explorer.nodestake.top/kyve/account/${accountAddress}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Kyve', - tx_page: 'https://explorer.stavr.tech/Kyve/txs/${txHash}', - account_page: - 'https://explorer.stavr.tech/Kyve/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Kyve", + "tx_page": "https://explorer.stavr.tech/Kyve/txs/${txHash}", + "account_page": "https://explorer.stavr.tech/Kyve/account/${accountAddress}" }, { - kind: 'Stake-Take', - url: 'https://explorer.stake-take.com/kyve', - tx_page: 'https://explorer.stake-take.com/kyve/txs/${txHash}', - account_page: - 'https://explorer.stake-take.com/kyve/account/${accountAddress}' + "kind": "Stake-Take", + "url": "https://explorer.stake-take.com/kyve", + "tx_page": "https://explorer.stake-take.com/kyve/txs/${txHash}", + "account_page": "https://explorer.stake-take.com/kyve/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'lambda', - status: 'live', - network_type: 'mainnet', - pretty_name: 'Lambda', - chain_id: 'lambda_92000-1', - bech32_prefix: 'lamb', - node_home: '$HOME/.lambdavm', - daemon_name: 'lambdavm', - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'ulamb', - low_gas_price: 10000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "lambda", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Lambda", + "chain_id": "lambda_92000-1", + "bech32_prefix": "lamb", + "node_home": "$HOME/.lambdavm", + "daemon_name": "lambdavm", + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'ulamb' + "denom": "ulamb", + "low_gas_price": 10000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - codebase: { - git_repo: 'https://github.com/LambdaIM/lambdavm', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/LambdaIM/mainnet/main/lambda_92000-1/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'] + "denom": "ulamb" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg" }, - peers: { - seeds: [ + "apis": { + "rpc": [ { - id: '4573d28b7bf5cfb0a1b79e796efb388a1db8d046', - address: 'lambda.peer.stavr.tech:31326', - provider: '🔥STAVR🔥' - } - ], - persistent_peers: [] - }, - apis: { - rpc: [ - { - address: 'https://rpc.lambda.im', - provider: 'Lambda' + "address": "https://rpc.lambda.im", + "provider": "Lambda" }, { - address: 'http://lambda.rpc.m.stavr.tech:31327', - provider: '🔥STAVR🔥' + "address": "http://lambda.rpc.m.stavr.tech:31327", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc.lambda.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.lambda.nodestake.top", + "provider": "NodeStake" } ], - rest: [ + "rest": [ { - address: 'https://rest.lambda.im', - provider: 'Lambda' + "address": "https://rest.lambda.im", + "provider": "Lambda" }, { - address: 'https://lambda.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://lambda.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api.lambda.nodestake.top', - provider: 'NodeStake' + "address": "https://api.lambda.nodestake.top", + "provider": "NodeStake" } ], - grpc: [ + "grpc": [ { - address: 'http://lambda.grpc.m.stavr.tech:2287', - provider: '🔥STAVR🔥' + "address": "http://lambda.grpc.m.stavr.tech:2287", + "provider": "🔥STAVR🔥" }, { - address: 'grpc.lambda.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.lambda.nodestake.top:443", + "provider": "NodeStake" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://jsonrpc-lambda.d-stake.xyz', - provider: 'D-stake' + "address": "https://jsonrpc-lambda.d-stake.xyz", + "provider": "D-stake" } ] }, - explorers: [ + "explorers": [ { - kind: 'blockscout', - url: 'https://explorer.lambda.im/', - tx_page: 'https://explorer.lambda.im/tx/${txHash}' + "kind": "blockscout", + "url": "https://explorer.lambda.im/", + "tx_page": "https://explorer.lambda.im/tx/${txHash}" }, { - kind: 'NodeStake', - url: 'https://explorer.nodestake.top/lambda', - tx_page: 'https://explorer.nodestake.top/lambda/txs/${txHash}' + "kind": "NodeStake", + "url": "https://explorer.nodestake.top/lambda", + "tx_page": "https://explorer.nodestake.top/lambda/txs/${txHash}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/lambda', - tx_page: 'https://explorer.stavr.tech/lambda/txs/${txHash}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/lambda", + "tx_page": "https://explorer.stavr.tech/lambda/txs/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/lambda', - tx_page: 'https://atomscan.com/lambda/transactions/${txHash}', - account_page: 'https://atomscan.com/lambda/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/lambda", + "tx_page": "https://atomscan.com/lambda/transactions/${txHash}", + "account_page": "https://atomscan.com/lambda/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'likecoin', - status: 'live', - website: 'https://like.co/', - network_type: 'mainnet', - pretty_name: 'LikeCoin', - chain_id: 'likecoin-mainnet-2', - bech32_prefix: 'like', - daemon_name: 'liked', - node_home: '$HOME/.liked', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'nanolike', - fixed_min_gas_price: 1000, - low_gas_price: 1000, - average_gas_price: 10000, - high_gas_price: 1000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'nanolike' - } - ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/likecoin/likecoin-chain', - recommended_version: 'v4.1.1', - compatible_versions: ['v4.1.1'], - binaries: { - 'linux/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Windows_x86_64.zip' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_enabled: false, - ibc_go_version: '6.2.1', - ics_enabled: ['ics20-1'], - genesis: { - name: 'fotan-1.0', - genesis_url: - 'https://raw.githubusercontent.com/likecoin/mainnet/982c14399089950a59d3ebbedcbbc7ead6040457/genesis.json' - }, - versions: [ - { - name: 'fotan-1.0', - tag: 'v1.2.0', - height: 0, - recommended_version: 'v1.2.0', - compatible_versions: ['v1.2.0', 'fotan-1.2'], - cosmos_sdk_version: '0.42', - consensus: { - type: 'tendermint', - version: '0.34' - }, - binaries: { - 'linux/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v1.2.0/likecoin-chain_1.2.0_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v1.2.0/likecoin-chain_1.2.0_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v1.2.0/likecoin-chain_1.2.0_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v1.2.0/likecoin-chain_1.2.0_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v1.2.0/likecoin-chain_1.2.0_Windows_x86_64.zip' - }, - next_version_name: 'v2.0.0' - }, - { - name: 'v2.0.0', - tag: 'v2.0.2', - height: 3692800, - recommended_version: 'v2.0.2', - compatible_versions: ['v2.0.0', 'v2.0.1', 'v2.0.2'], - cosmos_sdk_version: '0.44', - ibc_go_version: '2.1.0', - consensus: { - type: 'tendermint', - version: '0.34' - }, - binaries: { - 'linux/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v2.0.2/likecoin-chain_2.0.2_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v2.0.2/likecoin-chain_2.0.2_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v2.0.2/likecoin-chain_2.0.2_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v2.0.2/likecoin-chain_2.0.2_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v2.0.2/likecoin-chain_2.0.2_Windows_x86_64.zip' - }, - next_version_name: 'v3.0.0' - }, - { - name: 'v3.0.0', - tag: 'v3.1.0', - height: 4810000, - recommended_version: 'v3.1.0', - compatible_versions: ['v3.1.0'], - cosmos_sdk_version: '0.45', - ibc_go_version: '2.3.0', - consensus: { - type: 'tendermint', - version: '0.34' - }, - binaries: { - 'linux/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v3.1.0/likecoin-chain_3.1.0_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v3.1.0/likecoin-chain_3.1.0_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v3.1.0/likecoin-chain_3.1.0_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v3.1.0/likecoin-chain_3.1.0_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v3.1.0/likecoin-chain_3.1.0_Windows_x86_64.zip' - }, - next_version_name: 'v4.0.0' - }, - { - name: 'v4.0.0', - tag: 'v4.0.1', - height: 9419200, - recommended_version: 'v4.0.1', - compatible_versions: ['v4.0.0', 'v4.0.1', 'v4.0.2'], - cosmos_sdk_version: '0.46', - ibc_go_version: '5.3.1', - consensus: { - type: 'tendermint', - version: '0.34' - }, - binaries: { - 'linux/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.0.1/likecoin-chain_4.0.1_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.0.1/likecoin-chain_4.0.1_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.0.1/likecoin-chain_4.0.1_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.0.1/likecoin-chain_4.0.1_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.0.1/likecoin-chain_4.0.1_Windows_x86_64.zip' - }, - next_version_name: 'v4.1.1' - }, - { - name: 'v4.1.1', - tag: 'v4.1.1', - height: 12102100, - recommended_version: 'v4.1.1', - compatible_versions: ['v4.1.1'], - cosmos_sdk_version: '0.46', - ibc_go_version: '6.2.1', - consensus: { - type: 'tendermint', - version: '0.34' - }, - binaries: { - 'linux/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Windows_x86_64.zip' - }, - next_version_name: '' + "$schema": "../chain.schema.json", + "chain_name": "likecoin", + "status": "live", + "website": "https://like.co/", + "network_type": "mainnet", + "pretty_name": "LikeCoin", + "chain_id": "likecoin-mainnet-2", + "bech32_prefix": "like", + "daemon_name": "liked", + "node_home": "$HOME/.liked", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "nanolike", + "fixed_min_gas_price": 1000, + "low_gas_price": 1000, + "average_gas_price": 10000, + "high_gas_price": 1000000 } ] }, - peers: { - seeds: [ - { - id: '913bd0f4bea4ef512ffba39ab90eae84c1420862', - address: '34.82.131.35:26656', - provider: 'like.co' - }, + "staking": { + "staking_tokens": [ { - id: 'e44a2165ac573f84151671b092aa4936ac305e2a', - address: 'nnkken.dev:26656', - provider: 'nnkken' - }, - { - id: 'd354a96014507ea480d04f8fe009dd5a4f7fe7fb', - address: 'likecoin-seed.oldcat.io.oldcat.io:26656', - provider: 'Oldcat' + "denom": "nanolike" } ], - persistent_peers: [ - { - id: 'f087d600cf3d34d3bac04a9723a53180619e8445', - address: '35.247.83.138:26656', - provider: 'like.co' - }, - { - id: '20afcd5637b2278efc78c54fd523bd331d1820f2', - address: '78.47.110.110:26656', - provider: 'moonbeam' - }, - { - id: '5940f55e0e7e2f1a2c9507bf62fbfd7c6d2f3874', - address: 'likechain.oursky.com:26656', - provider: 'Oursky' - } - ] + "lock_duration": { + "time": "1814400s" + } }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46", + "cosmwasm_enabled": false + }, + "apis": { + "rpc": [ { - address: 'https://mainnet-node.like.co/rpc/', - provider: 'like.co' + "address": "https://mainnet-node.like.co/rpc/", + "provider": "like.co" }, { - address: 'https://likecoin-node.oldcat.io:443/rpc/', - provider: 'Oldcat' + "address": "https://likecoin-node.oldcat.io:443/rpc/", + "provider": "Oldcat" }, { - address: 'https://rpc-likecoin-mainnet.pikaser.net', - provider: 'PikaSer' + "address": "https://rpc-likecoin-mainnet.pikaser.net", + "provider": "PikaSer" }, { - address: 'http://51.159.223.25:28657', - provider: 'Citizen Web3' + "address": "http://51.159.223.25:28657", + "provider": "Citizen Web3" } ], - rest: [ + "rest": [ { - address: 'https://mainnet-node.like.co', - provider: 'like.co' + "address": "https://mainnet-node.like.co", + "provider": "like.co" }, { - address: 'https://likecoin-node.oldcat.io:443/api/', - provider: 'Oldcat' + "address": "https://likecoin-node.oldcat.io:443/api/", + "provider": "Oldcat" }, { - address: 'https://rest-likecoin-mainnet.pikaser.net', - provider: 'PikaSer' + "address": "https://rest-likecoin-mainnet.pikaser.net", + "provider": "PikaSer" } ], - grpc: [ + "grpc": [ { - address: 'mainnet-node-grpc.like.co:80', - provider: 'like.co' + "address": "mainnet-node-grpc.like.co:80", + "provider": "like.co" }, { - address: 'https://likecoin-node.oldcat.io:443/grpc/', - provider: 'Oldcat' + "address": "https://likecoin-node.oldcat.io:443/grpc/", + "provider": "Oldcat" }, { - address: 'grpc-likecoin-mainnet.pikaser.net:443', - provider: 'PikaSer' + "address": "grpc-likecoin-mainnet.pikaser.net:443", + "provider": "PikaSer" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/likecoin', - tx_page: 'https://www.mintscan.io/likecoin/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/likecoin/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/likecoin", + "tx_page": "https://www.mintscan.io/likecoin/transactions/${txHash}", + "account_page": "https://www.mintscan.io/likecoin/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/likecoin', - tx_page: 'https://bigdipper.live/likecoin/transactions/${txHash}', - account_page: - 'https://bigdipper.live/likecoin/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/likecoin", + "tx_page": "https://bigdipper.live/likecoin/transactions/${txHash}", + "account_page": "https://bigdipper.live/likecoin/accounts/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/likecoin/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/likecoin", + "tx_page": "https://atomscan.com/likecoin/transactions/${txHash}", + "account_page": "https://atomscan.com/likecoin/accounts/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg' - }, - keywords: ['depub', 'publishing', 'like', 'book', 'writing', 'nft'], - images: [ + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg" + }, + "keywords": [ + "depub", + "publishing", + "like", + "book", + "writing", + "nft" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg" } ] }, { - $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', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ + "$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", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'aLYT' + "denom": "aLYT" } ] }, - 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: 'logos-grpc.provable.dev:443', - provider: 'laurel.provable' + "address": "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" }, - codebase: { - genesis: { - genesis_url: '' - } - }, - images: [ + "codebase": {}, + "images": [ { - 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' + "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: 'loyal', - status: 'live', - network_type: 'mainnet', - website: 'https://www.joinloyal.com/', - pretty_name: 'Loyal', - chain_id: 'loyal-main-02', - bech32_prefix: 'loyal', - daemon_name: 'loyald', - node_home: '$HOME/.loyal', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ulyl', - fixed_min_gas_price: 0 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "loyal", + "status": "live", + "network_type": "mainnet", + "website": "https://www.joinloyal.com/", + "pretty_name": "Loyal", + "chain_id": "loyal-main-02", + "bech32_prefix": "loyal", + "daemon_name": "loyald", + "node_home": "$HOME/.loyal", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ulyl' + "denom": "ulyl", + "fixed_min_gas_price": 0 } ] }, - codebase: { - git_repo: 'https://github.com/LoyalLabs/loyal', - recommended_version: 'v0.25.3', - compatible_versions: ['v0.25.3'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/LoyalLabs/net/main/mainnet/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.25.3', - recommended_version: 'v0.25.3', - compatible_versions: ['v0.25.3'] + "denom": "ulyl" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.svg' - }, - peers: { - seeds: [ - { - id: '7490c272d1c9db40b7b9b61b0df3bb4365cb63a6', - address: 'loyal-seed.netdots.net:27656' - }, - { - id: 'f8f5d04e17c998478c29ba6ab74b2e995a2b6dcd', - address: 'tenderseed.ccvalidators.com:29002' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:17856', - provider: 'Polkachu' - } - ], - persistent_peers: [ - { - id: '7490c272d1c9db40b7b9b61b0df3bb4365cb63a6', - address: '54.80.32.192:26656' - }, - { - id: '607dbee191f06d9479d7ae8f9fc5de75ca840d6f', - address: '185.215.167.227:31656' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc-main.joinloyal.io/' + "address": "https://rpc-main.joinloyal.io/" }, { - address: 'https://loyal-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://loyal-rpc.polkachu.com", + "provider": "Polkachu" } ], - rest: [ + "rest": [ { - address: 'https://lcd-main.joinloyal.io/' + "address": "https://lcd-main.joinloyal.io/" }, { - address: 'https://loyal-api.polkachu.com', - provider: 'Polkachu' + "address": "https://loyal-api.polkachu.com", + "provider": "Polkachu" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.loyal.nodestake.top', - provider: 'NodeStake' + "address": "https://grpc.loyal.nodestake.top", + "provider": "NodeStake" } ] }, - explorers: [ + "explorers": [ { - kind: 'Loyal explorer', - url: 'https://pingpub.joinloyal.io/loyal', - tx_page: 'https://pingpub.joinloyal.io/loyal/tx/${txHash}' + "kind": "Loyal explorer", + "url": "https://pingpub.joinloyal.io/loyal", + "tx_page": "https://pingpub.joinloyal.io/loyal/tx/${txHash}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/loyal', - tx_page: 'https://explorer.tcnetwork.io/loyal/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/loyal", + "tx_page": "https://explorer.tcnetwork.io/loyal/transaction/${txHash}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/loyal', - tx_page: 'https://explorer.nodestake.top/loyal/tx/${txHash}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/loyal", + "tx_page": "https://explorer.nodestake.top/loyal/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/loyal/images/lyl.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'lumenx', - status: 'killed', - network_type: 'mainnet', - pretty_name: 'LumenX', - chain_id: 'LumenX', - bech32_prefix: 'lumen', - daemon_name: 'lumenxd', - node_home: '$HOME/.lumenx', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ulumen', - fixed_min_gas_price: 0.0025, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.03 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "lumenx", + "status": "killed", + "network_type": "mainnet", + "pretty_name": "LumenX", + "chain_id": "LumenX", + "bech32_prefix": "lumen", + "daemon_name": "lumenxd", + "node_home": "$HOME/.lumenx", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ulumen' + "denom": "ulumen", + "fixed_min_gas_price": 0.0025, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } ] }, - codebase: { - git_repo: 'https://github.com/cryptonetD/lumenx', - recommended_version: 'v1.4.0', - compatible_versions: ['v1.4.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/cryptonetD/lumenx/main/config/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.4.0', - tag: 'v1.4.0', - recommended_version: 'v1.4.0', - compatible_versions: ['v1.4.0'] + "denom": "ulumen" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' - }, - peers: { - seeds: [], - persistent_peers: [ - { - id: '43c4eb952a35df720f2cb4b86a73b43f682d6cb1', - address: '37.187.149.93:26696' - }, - { - id: '81913c271aad8b26c10e3175a8f1ecf813921bab', - address: '144.24.149.118:26656' - }, - { - id: '9a49635f0ecb7ba93fc9eba952cbe58767557010', - address: '185.215.180.70:26656' - }, - { - id: '64c01c609297f010790a67fbb9e339a9072aa890', - address: '144.24.134.26:26656' - }, - { - id: '2c341d570e537683d23102e64e7b73f4bbaef829', - address: 'rpc.lumenx.chaintools.tech:26766' - }, - { - id: 'e3989262b8dff3596f3b1d5e44372e9326362552', - address: '192.99.4.66:26666' - }, - { - id: 'e29d17459030df3ade1c7232a570abf942d5dc3c', - address: '65.109.28.226:11656' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc-lumenx.cryptonet.pl/', - provider: 'CryptoNet' + "address": "https://rpc-lumenx.cryptonet.pl/", + "provider": "CryptoNet" }, { - address: 'https://lumenx-rpc.kynraze.com/', - provider: 'Kynraze' + "address": "https://lumenx-rpc.kynraze.com/", + "provider": "Kynraze" } ], - rest: [ + "rest": [ { - address: 'https://api-lumenx.cryptonet.pl/', - provider: 'CryptoNet' + "address": "https://api-lumenx.cryptonet.pl/", + "provider": "CryptoNet" }, { - address: 'https://api-lumenx.nodine.id/', - provider: 'Nodine.ID' + "address": "https://api-lumenx.nodine.id/", + "provider": "Nodine.ID" }, { - address: 'https://lcd.lumenx.hexnodes.co/', - provider: 'Hexnodes' + "address": "https://lcd.lumenx.hexnodes.co/", + "provider": "Hexnodes" } ], - grpc: [ + "grpc": [ { - address: 'https://lumenx-grpc.kynraze.com', - provider: 'Kynraze' + "address": "https://lumenx-grpc.kynraze.com", + "provider": "Kynraze" }, { - address: 'https://grpc-lumenx.nodine.id', - provider: 'Nodine.ID' + "address": "https://grpc-lumenx.nodine.id", + "provider": "Nodine.ID" }, { - address: 'https://grpc.lumenx.hexnodes.co', - provider: 'Hexnodes' + "address": "https://grpc.lumenx.hexnodes.co", + "provider": "Hexnodes" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://explorer.chaintools.tech/lumenx', - tx_page: 'https://explorer.chaintools.tech/lumenx/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explorer.chaintools.tech/lumenx", + "tx_page": "https://explorer.chaintools.tech/lumenx/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://explorer.cryptonet.pl/lumenx', - tx_page: 'https://explorer.cryptonet.pl/lumenx/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explorer.cryptonet.pl/lumenx", + "tx_page": "https://explorer.cryptonet.pl/lumenx/tx/${txHash}" }, { - kind: 'Kynraze', - url: 'https://explorer.kynraze.com/lumenx', - tx_page: 'https://explorer.kynraze.com/lumenx/tx/${txHash}' + "kind": "Kynraze", + "url": "https://explorer.kynraze.com/lumenx", + "tx_page": "https://explorer.kynraze.com/lumenx/tx/${txHash}" }, { - kind: 'ComunityNode', - url: 'https://explorer.comunitynode.my.id/lumenx', - tx_page: 'https://explorer.comunitynode.my.id/lumenx/tx/${txHash}' + "kind": "ComunityNode", + "url": "https://explorer.comunitynode.my.id/lumenx", + "tx_page": "https://explorer.comunitynode.my.id/lumenx/tx/${txHash}" }, { - kind: 'Nodine.ID', - url: 'https://explorer.co.id/lumenx', - tx_page: 'https://explorer.co.id/lumenx/tx/${txHash}' + "kind": "Nodine.ID", + "url": "https://explorer.co.id/lumenx", + "tx_page": "https://explorer.co.id/lumenx/tx/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/lumenx', - tx_page: 'https://atomscan.com/lumenx/transactions/${txHash}', - account_page: 'https://atomscan.com/lumenx/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/lumenx", + "tx_page": "https://atomscan.com/lumenx/transactions/${txHash}", + "account_page": "https://atomscan.com/lumenx/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'lumnetwork', - status: 'live', - network_type: 'mainnet', - website: 'https://lum.network/', - pretty_name: 'Lum Network', - chain_id: 'lum-network-1', - bech32_prefix: 'lum', - daemon_name: 'lumd', - node_home: '$HOME/.lumd', - key_algos: ['secp256k1'], - slip44: 880, - fees: { - fee_tokens: [ - { - denom: 'ulum', - fixed_min_gas_price: 0.001, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ulum' - } - ] - }, - codebase: { - git_repo: 'https://github.com/lum-network/chain', - recommended_version: 'v1.6.3', - compatible_versions: ['v1.6.3'], - cosmos_sdk_version: 'v0.47.5', - ibc_go_version: 'v7.2.0', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - binaries: { - 'linux/amd64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_ubuntu-latest_amd64.zip', - 'linux/arm64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_ubuntu-latest_arm64.zip', - 'darwin/amd64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_macos-latest_amd64.zip', - 'darwin/arm64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_macos-latest_arm64.zip', - 'windows/amd64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_windows-latest_amd64.zip', - 'windows/arm64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_windows-latest_arm64.zip' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/lum-network/mainnet/master/genesis.json' - }, - versions: [ - { - name: 'v1.3.1', - recommended_version: 'v1.3.1', - compatible_versions: ['v1.3.1'], - next_version_name: 'v1.4.0' - }, - { - name: 'v1.4.0', - height: 7652000, - proposal: 61, - recommended_version: 'v1.4.0', - compatible_versions: ['v1.4.0'], - next_version_name: 'v1.4.1' - }, - { - name: 'v1.4.1', - height: 7740000, - proposal: 64, - recommended_version: 'v1.4.2', - compatible_versions: ['v1.4.1', 'v1.4.2'], - next_version_name: 'v1.4.5' - }, - { - name: 'v1.4.5', - height: 7950600, - proposal: 71, - recommended_version: 'v1.4.5', - compatible_versions: ['v1.4.5'], - next_version_name: 'v1.5.0' - }, - { - name: 'v1.5.0', - height: 8424000, - proposal: 79, - recommended_version: 'v1.5.0-2', - compatible_versions: ['v1.5.0-2'], - next_version_name: 'v1.5.1' - }, - { - name: 'v1.5.1', - height: 8527300, - proposal: 82, - recommended_version: 'v1.5.1', - compatible_versions: ['v1.5.1'], - next_version_name: 'v1.5.2' - }, - { - name: 'v1.5.2', - proposal: 87, - height: 8688700, - recommended_version: 'v1.5.2', - compatible_versions: ['v1.5.2'], - next_version_name: 'v1.6.1' - }, - { - name: 'v1.6.1', - proposal: 88, - height: 9520750, - recommended_version: 'v1.6.1', - compatible_versions: ['v1.6.1'], - next_version_name: 'v1.6.2' - }, - { - name: 'v1.6.2', - proposal: 90, - height: 10027000, - recommended_version: 'v1.6.2-1', - compatible_versions: ['v1.6.2-1'], - next_version_name: 'v1.6.3' - }, + "$schema": "../chain.schema.json", + "chain_name": "lumnetwork", + "status": "live", + "network_type": "mainnet", + "website": "https://lum.network/", + "pretty_name": "Lum Network", + "chain_id": "lum-network-1", + "bech32_prefix": "lum", + "daemon_name": "lumd", + "node_home": "$HOME/.lumd", + "key_algos": [ + "secp256k1" + ], + "slip44": 880, + "fees": { + "fee_tokens": [ { - name: 'v1.6.3', - proposal: 92, - height: 10444000, - recommended_version: 'v1.6.3', - compatible_versions: ['v1.6.3'], - cosmos_sdk_version: 'v0.47.5', - ibc_go_version: 'v7.2.0', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - binaries: { - 'linux/amd64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_ubuntu-latest_amd64.zip', - 'linux/arm64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_ubuntu-latest_arm64.zip', - 'darwin/amd64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_macos-latest_amd64.zip', - 'darwin/arm64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_macos-latest_arm64.zip', - 'windows/amd64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_windows-latest_amd64.zip', - 'windows/arm64': - 'https://github.com/lum-network/chain/releases/download/v1.6.3/lumd_windows-latest_arm64.zip' - }, - next_version_name: '' + "denom": "ulum", + "fixed_min_gas_price": 0.001, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - 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' - }, - peers: { - seeds: [ - { - id: '19ad16527c98b782ee35df56b65a3a251bd99971', - address: 'peer-1.mainnet.lum.network:26656', - provider: 'lum foundation' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'lum-mainnet-seed.autostake.com:27416', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:16756', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'df949a46ae6529ae1e09b034b49716468d5cc7e9', - address: 'seeds.stakerhouse.com:10756', - provider: 'StakerHouse' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: 'b47626b9d78ed7ed3c413304387026f907c70cbe', - address: 'peer-0.mainnet.lum.network:26656', - provider: 'lum foundation' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'lum-mainnet-peer.autostake.com:27416', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'fbaeeff89ec94a4f6c4a2a61e24af7d06b3be0c8', - address: '46.166.140.180:26656', - provider: 'simply staking' - }, + "staking": { + "staking_tokens": [ { - id: '433c60a5bc0a693484b7af26208922b84773117e', - address: '34.209.132.0:26656', - provider: 'cosmostation' + "denom": "ulum" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.47.5" + }, + "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" + }, + "apis": { + "rpc": [ { - address: 'https://node0.mainnet.lum.network/rpc', - provider: 'Lum Foundation' + "address": "https://node0.mainnet.lum.network/rpc", + "provider": "Lum Foundation" }, { - address: 'https://lumnetwork-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://lumnetwork-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://lum-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://lum-rpc.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://lum-rpc.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://lum-rpc.stakerhouse.com", + "provider": "StakerHouse" } ], - rest: [ + "rest": [ { - address: 'https://node0.mainnet.lum.network/rest', - provider: 'Lum Foundation' + "address": "https://node0.mainnet.lum.network/rest", + "provider": "Lum Foundation" }, { - address: 'https://lumnetwork-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://lumnetwork-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://lum-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://lum-api.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://lum-rest.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://lum-rest.stakerhouse.com", + "provider": "StakerHouse" } ], - grpc: [ + "grpc": [ { - address: 'lumnetwork-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "lumnetwork-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'lum-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "lum-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'lum-grpc.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "lum-grpc.stakerhouse.com:443", + "provider": "StakerHouse" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/lumnetwork', - tx_page: 'https://app.ezstaking.io/lumnetwork/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/lumnetwork/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/lumnetwork", + "tx_page": "https://app.ezstaking.io/lumnetwork/txs/${txHash}", + "account_page": "https://app.ezstaking.io/lumnetwork/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/lum', - tx_page: 'https://www.mintscan.io/lum/transactions/${txHash}', - account_page: 'https://www.mintscan.io/lum/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/lum", + "tx_page": "https://www.mintscan.io/lum/transactions/${txHash}", + "account_page": "https://www.mintscan.io/lum/accounts/${accountAddress}" }, { - 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}', - account_page: - 'https://atomscan.com/lum-network/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/lum-network", + "tx_page": "https://atomscan.com/lum-network/transactions/${txHash}", + "account_page": "https://atomscan.com/lum-network/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'mars', - status: 'live', - network_type: 'mainnet', - website: 'https://www.marsprotocol.io/', - pretty_name: 'Mars Hub', - chain_id: 'mars-1', - bech32_prefix: 'mars', - daemon_name: 'marsd', - node_home: '$HOME/.mars', - key_algos: ['secp256k1'], - slip44: 118, - alternative_slip44s: [330], - fees: { - fee_tokens: [ - { - denom: 'umars', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0, - high_gas_price: 0.01 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "mars", + "status": "live", + "network_type": "mainnet", + "website": "https://www.marsprotocol.io/", + "pretty_name": "Mars Hub", + "chain_id": "mars-1", + "bech32_prefix": "mars", + "daemon_name": "marsd", + "node_home": "$HOME/.mars", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "alternative_slip44s": [ + 330 + ], + "fees": { + "fee_tokens": [ { - denom: 'umars' + "denom": "umars", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0.01 } ] }, - codebase: { - git_repo: 'https://github.com/mars-protocol/hub', - recommended_version: 'v1.0.2', - compatible_versions: ['v1.0.0', 'v1.0.2'], - cosmos_sdk_version: '0.46.7', - consensus: { - type: 'tendermint', - version: '0.34.24' - }, - cosmwasm_version: '0.30.0', - cosmwasm_enabled: true, - ibc_go_version: '6.1.0', - ics_enabled: ['ics20-1'], - genesis: { - genesis_url: - 'https://github.com/mars-protocol/networks/raw/main/mars-1/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1', - tag: 'v1.0.0', - height: 0, - recommended_version: 'v1.0.2', - compatible_versions: ['v1.0.0', 'v1.0.2'], - cosmos_sdk_version: '0.46.7', - consensus: { - type: 'tendermint', - version: '0.34.24' - }, - cosmwasm_version: '0.30.0', - cosmwasm_enabled: true, - ibc_go_version: '6.1.0', - ics_enabled: ['ics20-1'] + "denom": "umars" } ] }, - description: - 'Lend, borrow and earn with an autonomous credit protocol in the Cosmos universe. Open to all, closed to none.', - peers: { - seeds: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:18556', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'mars-mainnet-seed.autostake.com:27056', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:18556', - provider: 'Polkachu' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'mars.rpc.kjnodes.com:14559', - provider: 'kjnodes' - } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'mars-mainnet-peer.autostake.com:27056', - provider: 'AutoStake 🛡️ Slash Protected' - } - ] + "codebase": { + "cosmos_sdk_version": "0.46.7", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30.0" }, - apis: { - rpc: [ + "description": "Lend, borrow and earn with an autonomous credit protocol in the Cosmos universe. Open to all, closed to none.", + "apis": { + "rpc": [ { - address: 'https://rpc.marsprotocol.io:443', - provider: 'Delphi Labs' + "address": "https://rpc.marsprotocol.io:443", + "provider": "Delphi Labs" }, { - address: 'https://mars-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://mars-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://mars-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://mars-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://mars-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://mars-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc.expedition-mars.com', - provider: 'Expedition Mars' + "address": "https://rpc.expedition-mars.com", + "provider": "Expedition Mars" }, { - address: 'https://mars-rpc.genznodes.dev:443', - provider: 'genznodes' + "address": "https://mars-rpc.genznodes.dev:443", + "provider": "genznodes" }, { - address: 'https://mars-rpc.stakeandrelax.net', - provider: 'Stake&Relax Validator 🦥' + "address": "https://mars-rpc.stakeandrelax.net", + "provider": "Stake&Relax Validator 🦥" }, { - address: 'https://mars-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://mars-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://mars-rpc.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://mars-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" } ], - rest: [ + "rest": [ { - address: 'https://rest.marsprotocol.io:443', - provider: 'Delphi Labs' + "address": "https://rest.marsprotocol.io:443", + "provider": "Delphi Labs" }, { - address: 'https://mars-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://mars-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://mars-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://mars-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://mars-api.polkachu.com', - provider: 'Polkachu' + "address": "https://mars-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://lcd.expedition-mars.com:443', - provider: 'Expedition Mars' + "address": "https://lcd.expedition-mars.com:443", + "provider": "Expedition Mars" }, { - address: 'https://mars-api.genznodes.dev:443', - provider: 'genznodes' + "address": "https://mars-api.genznodes.dev:443", + "provider": "genznodes" }, { - address: 'https://mars-api.stakeandrelax.net', - provider: 'Stake&Relax Validator 🦥' + "address": "https://mars-api.stakeandrelax.net", + "provider": "Stake&Relax Validator 🦥" }, { - address: 'https://mars-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://mars-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://mars-api.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://mars-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" } ], - grpc: [ + "grpc": [ { - address: 'grpc.marsprotocol.io:443', - provider: 'Delphi Labs' + "address": "grpc.marsprotocol.io:443", + "provider": "Delphi Labs" }, { - address: 'mars-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "mars-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'mars-grpc.polkachu.com:18590', - provider: 'Polkachu' + "address": "mars-grpc.polkachu.com:18590", + "provider": "Polkachu" }, { - address: 'mars-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "mars-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'mars-grpc.genznodes.dev:26090', - provider: 'genznodes' + "address": "mars-grpc.genznodes.dev:26090", + "provider": "genznodes" }, { - address: 'mars.grpc.kjnodes.com:14590', - provider: 'kjnodes' + "address": "mars.grpc.kjnodes.com:14590", + "provider": "kjnodes" }, { - address: 'grpc.mars.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.mars.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'mars-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "mars-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'mars-grpc.stakeandrelax.net:18590', - provider: 'Stake&Relax 🦥' + "address": "mars-grpc.stakeandrelax.net:18590", + "provider": "Stake&Relax 🦥" } ] }, - explorers: [ + "explorers": [ { - kind: 'BigDipper', - url: 'https://explorer.marsprotocol.io', - tx_page: 'https://explorer.marsprotocol.io/transactions/${txHash}', - account_page: - 'https://explorer.marsprotocol.io/accounts/${accountAddress}' + "kind": "BigDipper", + "url": "https://explorer.marsprotocol.io", + "tx_page": "https://explorer.marsprotocol.io/transactions/${txHash}", + "account_page": "https://explorer.marsprotocol.io/accounts/${accountAddress}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/mars', - tx_page: 'https://explorer.nodestake.top/mars/transactions/${txHash}', - account_page: - 'https://explorer.nodestake.top/mars/account/${accountAddress}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/mars", + "tx_page": "https://explorer.nodestake.top/mars/transactions/${txHash}", + "account_page": "https://explorer.nodestake.top/mars/account/${accountAddress}" }, { - kind: 'Nodes.Guru', - url: 'https://mars.explorers.guru/', - tx_page: 'https://mars.explorers.guru/transaction/${txHash}', - account_page: 'https://mars.explorers.guru/account/${accountAddress}' + "kind": "Nodes.Guru", + "url": "https://mars.explorers.guru/", + "tx_page": "https://mars.explorers.guru/transaction/${txHash}", + "account_page": "https://mars.explorers.guru/account/${accountAddress}" }, { - kind: 'MintScan', - url: 'https://www.mintscan.io/mars-protocol', - tx_page: 'https://www.mintscan.io/mars-protocol/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/mars-protocol/accounts/${accountAddress}' + "kind": "MintScan", + "url": "https://www.mintscan.io/mars-protocol", + "tx_page": "https://www.mintscan.io/mars-protocol/transactions/${txHash}", + "account_page": "https://www.mintscan.io/mars-protocol/accounts/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/mars', - tx_page: 'https://ping.pub/mars/tx/${txHash}', - account_page: 'https://ping.pub/mars/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://ping.pub/mars", + "tx_page": "https://ping.pub/mars/tx/${txHash}", + "account_page": "https://ping.pub/mars/account/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-protocol.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-protocol.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-protocol.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-protocol.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-protocol.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-protocol.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-protocol.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-protocol.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'mayachain', - status: 'live', - network_type: 'mainnet', - website: 'https://mayaprotocol.com/', - pretty_name: 'Maya Protocol', - chain_id: 'mayachain-mainnet-v1', - bech32_prefix: 'maya', - daemon_name: 'mayanode', - node_home: '$HOME/.mayanode', - slip44: 931, - codebase: { - git_repo: 'https://gitlab.com/mayachain/mayanode', - recommended_version: 'V1.103.3', - compatible_versions: ['V1.103.3'], - genesis: { - genesis_url: 'https://tendermint.mayachain.info/genesis' - }, - versions: [ + "$schema": "../chain.schema.json", + "chain_name": "mayachain", + "status": "live", + "network_type": "mainnet", + "website": "https://mayaprotocol.com/", + "pretty_name": "Maya Protocol", + "chain_id": "mayachain-mainnet-v1", + "bech32_prefix": "maya", + "daemon_name": "mayanode", + "node_home": "$HOME/.mayanode", + "slip44": 931, + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://tendermint.mayachain.info", + "provider": "tendermint" + } + ], + "rest": [ { - name: 'V1.103.3', - recommended_version: 'V1.103.3', - compatible_versions: ['V1.103.3'] + "address": "https://mayanode.mayachain.info", + "provider": "mayanode" } ] }, - peers: { - seeds: [ - { - id: 'bd3cdc522a8db64935e6ab5509c3fe3bebc036a8', - address: '13.52.55.197:27146' - }, - { - id: '55e511e9d3fe84cfad597b0adab98bb2e3c6efc7', - address: '18.194.46.101:27146' - }, - { - id: 'ae1713e45cb5c579fc07b7f0ff24adad1ea93aa1', - address: '18.221.183.211:27146' - }, - { - id: '3a2c07509c1ac64de4d6d832dca7cdbfca398fc2', - address: '15.156.45.237:27146' - }, + "explorers": [ + { + "kind": "Maya Protocol explorer", + "url": "https://www.explorer.mayachain.info", + "tx_page": "https://www.explorer.mayachain.info/#/txs/${txHash}" + } + ] + }, + { + "$schema": "../chain.schema.json", + "chain_name": "medasdigital", + "status": "live", + "network_type": "mainnet", + "website": "https://medas-digital.io/", + "pretty_name": "Medas Digital Network", + "chain_id": "medasdigital-1", + "bech32_prefix": "medas", + "daemon_name": "medasdigitald", + "node_home": "$HOME/.medasdigital", + "slip44": 118, + "key_algos": [ + "secp256k1" + ], + "fees": { + "fee_tokens": [ { - id: 'b149d5ad54c7b56a3b43548e3814713f20519946', - address: '18.217.85.10:27146' - }, + "denom": "umedas", + "low_gas_price": 0.1, + "average_gas_price": 0.25, + "high_gas_price": 0.4 + } + ] + }, + "staking": { + "staking_tokens": [ { - id: 'c0f2a2a7e50b56fc92f5723dd3baf883c12048db', - address: '3.132.55.140:27146' + "denom": "umedas" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg" + }, + "apis": { + "rpc": [ { - address: 'https://tendermint.mayachain.info', - provider: 'tendermint' + "address": "https://rpc.medas-digital.io:26657/", + "provider": "Neptun Validator" } ], - rest: [ + "rest": [ { - address: 'https://mayanode.mayachain.info', - provider: 'mayanode' + "address": "https://lcd.medas-digital.io:1317/", + "provider": "Neptun Validator" + } + ], + "grpc": [ + { + "address": "grpc.medas-digital.io:9090", + "provider": "Neptun Validator" } ] }, - explorers: [ + "explorers": [ + { + "kind": "BigDipper", + "url": "https://explorer.medas-digital.io:3100/medasdigital", + "tx_page": "https://explorer.medas-digital.io:3100/medasdigital/transactions/${txHash}", + "account_page": "explorer.medas-digital.io:3100/medasdigital/accounts/${accountAddress}" + }, + { + "kind": "atomscan", + "url": "https://atomscan.com/frontier/medasdigital", + "tx_page": "https://atomscan.com/frontier/medasdigital/transactions/${txHash}", + "account_page": "https://atomscan.com/frontier/medasdigital/accounts/${accountAddress}" + } + ], + "images": [ { - kind: 'Maya Protocol explorer', - url: 'https://www.explorer.mayachain.info', - tx_page: 'https://www.explorer.mayachain.info/#/txs/${txHash}' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'medasdigital', - status: 'live', - network_type: 'mainnet', - website: 'https://medas-digital.io/', - pretty_name: 'Medas Digital Network', - chain_id: 'medasdigital-1', - bech32_prefix: 'medas', - daemon_name: 'medasdigitald', - node_home: '$HOME/.medasdigital', - slip44: 118, - key_algos: ['secp256k1'], - 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", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'umedas', - low_gas_price: 0.1, - average_gas_price: 0.25, - high_gas_price: 0.4 + "denom": "umeme", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.035, + "high_gas_price": 0.045 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'umedas' + "denom": "umeme" } ] }, - codebase: { - git_repo: 'https://github.com/oxygene76/medasdigital/', - recommended_version: 'v0.97', - compatible_versions: ['v0.94'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/oxygene76/medasdigital/main/networks/mainnet/genesis.json' - }, - versions: [ + "codebase": {}, + "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" + }, + "apis": { + "rpc": [ { - name: 'v0.94', - recommended_version: 'v0.94', - compatible_versions: ['v0.94'] - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' - }, - peers: { - persistent_peers: [ - { - id: 'afa88136727d46b4c15fe6e041f53fdb25cc37c0', - address: '212.6.177.10:26656', - provider: 'Neptun Validator' - }, - { - id: 'a50887a49a5c908631a036013d38cc825b10f8fe', - address: '212.6.177.11:26656', - provider: 'Uranus Validator' - }, - { - id: 'e89a2ed10488de6d8134ff67101aa1a883a0c6bd', - address: '212.6.177.12:26656', - provider: 'Saturn Validator' - }, - { - id: '95d55f5d4a61d18508441f3357fadf221abe43ca', - address: '64.251.18.192:26656', - provider: 'Mars Validator' - }, - { - id: '15376dbf45a1cf907958e2a684c436a62cc0825d', - address: '67.207.180.166:26656', - provider: 'Jupiter Validator' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://rpc.medas-digital.io:26657/', - provider: 'Neptun Validator' - } - ], - rest: [ - { - address: 'https://lcd.medas-digital.io:1317/', - provider: 'Neptun Validator' - } - ], - grpc: [ - { - address: 'grpc.medas-digital.io:9090', - provider: 'Neptun Validator' - } - ] - }, - explorers: [ - { - kind: 'BigDipper', - url: 'https://explorer.medas-digital.io:3100/medasdigital', - tx_page: - 'https://explorer.medas-digital.io:3100/medasdigital/transactions/${txHash}', - account_page: - 'explorer.medas-digital.io:3100/medasdigital/accounts/${accountAddress}' - }, - { - kind: 'atomscan', - url: 'https://atomscan.com/frontier/medasdigital', - tx_page: - 'https://atomscan.com/frontier/medasdigital/transactions/${txHash}', - account_page: - 'https://atomscan.com/frontier/medasdigital/accounts/${accountAddress}' - } - ], - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' - } - ] - }, - { - $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', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'umeme', - fixed_min_gas_price: 0.025, - low_gas_price: 0.025, - average_gas_price: 0.035, - high_gas_price: 0.045 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'umeme' - } - ] - }, - codebase: { - git_repo: 'https://github.com/memecosmos/meme/', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - genesis: { - genesis_url: - 'https://github.com/memecosmos/mainnet/raw/main/meme-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'] - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' - }, - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:14756', - provider: 'Polkachu' - } - ], - persistent_peers: [ - { - id: '90570d614d01c617953645faa4b955616fbb8d64', - address: '205.209.120.105:26656', - provider: 'MEME Foundation' - }, - { - id: 'f3ee4c635b8b6165c25abef548c164c53014b90e', - address: '165.140.242.34: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: '40e748da7a72c039f8ba47b2c6bd90cc0e203587', - address: '49.12.246.204:23656', - provider: '[NODERS]TEAM' - }, - { - id: 'fce4cbc9f8a9528fcd06948247025c3316991214', - address: '116.203.35.46:26656', - provider: 'Stake-Take' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://rpc-meme-1.meme.sx/', - provider: 'MEME Foundation' + "address": "https://rpc-meme-1.meme.sx/", + "provider": "MEME Foundation" }, { - 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" }, { - address: 'https://meme.rpc.m.anode.team', - provider: 'ANODE TEAM' + "address": "https://meme.rpc.m.anode.team", + "provider": "ANODE TEAM" } ], - rest: [ + "rest": [ { - address: 'https://api-meme-1.meme.sx/', - provider: 'MEME Foundation' + "address": "https://api-meme-1.meme.sx/", + "provider": "MEME Foundation" }, { - 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" }, { - address: 'https://meme.api.m.anode.team', - provider: 'ANODE TEAM' + "address": "https://meme.api.m.anode.team", + "provider": "ANODE TEAM" } ], - grpc: [ + "grpc": [ { - address: 'meme-grpc.polkachu.com:14790', - provider: 'Polkachu' + "address": "meme-grpc.polkachu.com:14790", + "provider": "Polkachu" } ] }, - 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', - url: 'https://atomscan.com/meme', - tx_page: 'https://atomscan.com/meme/transactions/${txHash}', - account_page: 'https://atomscan.com/meme/accounts/${accountAddress}' + "kind": "atomscan", + "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}', - account_page: 'https://atomscan.com/meme/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/meme", + "tx_page": "https://atomscan.com/meme/transactions/${txHash}", + "account_page": "https://atomscan.com/meme/accounts/${accountAddress}" }, { - kind: 'Brochain', - url: 'https://explorer.brocha.in/meme', - tx_page: 'https://explorer.brocha.in/meme/tx/${txHash}' + "kind": "Brochain", + "url": "https://explorer.brocha.in/meme", + "tx_page": "https://explorer.brocha.in/meme/tx/${txHash}" }, { - kind: 'Stake-Take', - url: 'https://explorer.stake-take.com/meme', - tx_page: 'https://explorer.stake-take.com/meme/tx/${txHash}', - account_page: - 'https://explorer.stake-take.com/meme/account/${accountAddress}' + "kind": "Stake-Take", + "url": "https://explorer.stake-take.com/meme", + "tx_page": "https://explorer.stake-take.com/meme/tx/${txHash}", + "account_page": "https://explorer.stake-take.com/meme/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + "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: '../chain.schema.json', - chain_name: 'microtick', - status: 'killed', - network_type: 'mainnet', - pretty_name: 'Microtick', - chain_id: 'microtick-1', - bech32_prefix: 'micro', - daemon_name: 'mtm', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'utick', - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ + "$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", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'utick' + "denom": "utick", + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - codebase: { - git_repo: 'https://github.com/microtick/mtzone', - recommended_version: 'mtm-v2.0.4', - compatible_versions: ['mtm-v2.0.4'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/microtick/stargate-genesis/master/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'mtm-v2.0.4', - recommended_version: 'mtm-v2.0.4', - compatible_versions: ['mtm-v2.0.4'] + "denom": "utick" } ] }, - 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' + "codebase": {}, + "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" }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://ping.pub/microtick', - tx_page: 'https://ping.pub/microtick/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/microtick", + "tx_page": "https://ping.pub/microtick/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'migaloo', - status: 'live', - network_type: 'mainnet', - website: 'https://www.whitewhale.money/', - pretty_name: 'Migaloo', - chain_id: 'migaloo-1', - bech32_prefix: 'migaloo', - daemon_name: 'migalood', - node_home: '$HOME/.migalood', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uwhale', - fixed_min_gas_price: 1, - low_gas_price: 1, - average_gas_price: 2, - high_gas_price: 3 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uwhale' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.svg' - }, - codebase: { - git_repo: 'https://github.com/White-Whale-Defi-Platform/migaloo-chain', - recommended_version: 'v3.0.4', - compatible_versions: ['v3.0.4'], - cosmos_sdk_version: '0.46.15', - ibc_go_version: '6.2.0', - consensus: { - type: 'cometbft', - version: '0.34.29' - }, - cosmwasm_version: 'v0.30.1-0.20230320091624-f5072b9b04a6', - cosmwasm_enabled: true, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/White-Whale-Defi-Platform/migaloo-chain/release/v2.0.x/networks/mainnet/genesis.json' - }, - versions: [ - { - name: 'v2.0.0', - recommended_version: 'v2.0.5', - compatible_versions: ['v2.0.0', 'v2.0.4', 'v2.0.5'], - cosmos_sdk_version: '0.46.11', - ibc_go_version: '6.1.0', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - cosmwasm_version: 'v0.30.1-0.20230320091624-f5072b9b04a6', - cosmwasm_enabled: true, - next_version_name: 'v2.2.5' - }, - { - name: 'v2.2.5', - proposal: 10, - height: 2342302, - recommended_version: 'v2.2.7-hotfix', - compatible_versions: ['v2.2.7-hotfix'], - cosmos_sdk_version: 'v0.46.13', - ibc_go_version: '6.2.0', - consensus: { - type: 'cometbft', - version: '0.34.29' - }, - cosmwasm_version: 'v0.30.1-0.20230320091624-f5072b9b04a6', - cosmwasm_enabled: true, - next_version_name: 'v3.0.0' - }, - { - name: 'v3.0.0', - proposal: 13, - height: 3574316, - recommended_version: 'v3.0.1-hotfix', - compatible_versions: ['v3.0.1-hotfix'], - cosmos_sdk_version: '0.46.15', - ibc_go_version: '6.2.0', - consensus: { - type: 'cometbft', - version: '0.34.29' - }, - cosmwasm_version: 'v0.30.1-0.20230320091624-f5072b9b04a6', - cosmwasm_enabled: true, - next_version_name: 'v3.0.2' - }, + "$schema": "../chain.schema.json", + "chain_name": "migaloo", + "status": "live", + "network_type": "mainnet", + "website": "https://www.whitewhale.money/", + "pretty_name": "Migaloo", + "chain_id": "migaloo-1", + "bech32_prefix": "migaloo", + "daemon_name": "migalood", + "node_home": "$HOME/.migalood", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v3.0.2', - proposal: 19, - height: 4128108, - recommended_version: 'v3.0.4', - compatible_versions: ['v3.0.4'], - cosmos_sdk_version: '0.46.15', - ibc_go_version: '6.2.0', - consensus: { - type: 'cometbft', - version: '0.34.29' - }, - cosmwasm_version: 'v0.30.1-0.20230320091624-f5072b9b04a6', - cosmwasm_enabled: true, - next_version_name: '' + "denom": "uwhale", + "fixed_min_gas_price": 1, + "low_gas_price": 1, + "average_gas_price": 2, + "high_gas_price": 3 } ] }, - peers: { - seeds: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:12856', - provider: 'Lavender.Five Nodes 🐝' - }, + "staking": { + "staking_tokens": [ { - id: 'c936ae78abca1169362e068e3e94c87a0ace96c7', - address: 'seeds.cros-nest.com:27656', - provider: 'Cros-Nest' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'whitewhale-mainnet-seed.autostake.com:27096', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:20756', - provider: 'Polkachu' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'migaloo.rpc.kjnodes.com:14959', - provider: 'kjnodes' - } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'whitewhale-mainnet-peer.autostake.com:27096', - provider: 'AutoStake 🛡️ Slash Protected' + "denom": "uwhale" } ] }, - apis: { - rpc: [ + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.svg" + }, + "codebase": { + "cosmos_sdk_version": "0.46.15", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.30.1-0.20230320091624-f5072b9b04a6" + }, + "apis": { + "rpc": [ { - address: 'https://migaloo-rpc.polkachu.com:443', - provider: 'Polkachu' + "address": "https://migaloo-rpc.polkachu.com:443", + "provider": "Polkachu" }, { - address: 'https://migaloo-rpc.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://migaloo-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-migaloo.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-migaloo.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://migaloo-rpc.kleomedes.network:443', - provider: 'Kleomedes' + "address": "https://migaloo-rpc.kleomedes.network:443", + "provider": "Kleomedes" }, { - address: 'https://rpc.whitewhale.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.whitewhale.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://migaloo.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://migaloo.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://migaloo-rpc.cosmosrescue.com', - provider: 'cosmosrescue' + "address": "https://migaloo-rpc.cosmosrescue.com", + "provider": "cosmosrescue" } ], - rest: [ + "rest": [ { - address: 'https://migaloo-api.polkachu.com:443', - provider: 'Polkachu' + "address": "https://migaloo-api.polkachu.com:443", + "provider": "Polkachu" }, { - address: 'https://migaloo-api.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://migaloo-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-migaloo.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-migaloo.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://migaloo-api.kleomedes.network:443', - provider: 'Kleomedes' + "address": "https://migaloo-api.kleomedes.network:443", + "provider": "Kleomedes" }, { - address: 'https://api.whitewhale.nodestake.top', - provider: 'NodeStake' + "address": "https://api.whitewhale.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://migaloo.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://migaloo.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://migaloo-api.cosmosrescue.com', - provider: 'cosmosrescue' + "address": "https://migaloo-api.cosmosrescue.com", + "provider": "cosmosrescue" } ], - grpc: [ + "grpc": [ { - address: 'migaloo-grpc.polkachu.com:20790', - provider: 'Polkachu' + "address": "migaloo-grpc.polkachu.com:20790", + "provider": "Polkachu" }, { - address: 'migaloo-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "migaloo-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'whitewhale-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "whitewhale-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-migaloo.cosmos-spaces.cloud:4810', - provider: 'Cosmos Spaces' + "address": "grpc-migaloo.cosmos-spaces.cloud:4810", + "provider": "Cosmos Spaces" }, { - address: 'https://grpc.whitewhale.nodestake.top', - provider: 'NodeStake' + "address": "https://grpc.whitewhale.nodestake.top", + "provider": "NodeStake" }, { - address: 'migaloo.grpc.kjnodes.com:14990', - provider: 'kjnodes' + "address": "migaloo.grpc.kjnodes.com:14990", + "provider": "kjnodes" }, { - address: 'migaloo-grpc.cosmosrescue.com:9090', - provider: 'cosmosrescue' + "address": "migaloo-grpc.cosmosrescue.com:9090", + "provider": "cosmosrescue" } ] }, - explorers: [ + "explorers": [ { - kind: 'Migaloo Explorers Guru', - url: 'https://migaloo.explorers.guru', - tx_page: 'https://migaloo.explorers.guru/transaction/${txHash}', - account_page: 'https://migaloo.explorers.guru/account/${accountAddress}' + "kind": "Migaloo Explorers Guru", + "url": "https://migaloo.explorers.guru", + "tx_page": "https://migaloo.explorers.guru/transaction/${txHash}", + "account_page": "https://migaloo.explorers.guru/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/migaloo', - tx_page: 'https://ping.pub/migaloo/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/migaloo", + "tx_page": "https://ping.pub/migaloo/tx/${txHash}" }, { - kind: 'Silk Nodes', - url: 'https://explorer.silknodes.io/migaloo', - tx_page: 'https://explorer.silknodes.io/migaloo/tx/${txHash}', - account_page: - 'https://explorer.silknodes.io/migaloo/account/${accountAddress}' + "kind": "Silk Nodes", + "url": "https://explorer.silknodes.io/migaloo", + "tx_page": "https://explorer.silknodes.io/migaloo/tx/${txHash}", + "account_page": "https://explorer.silknodes.io/migaloo/account/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/migaloo', - tx_page: 'https://atomscan.com/migaloo/transactions/${txHash}', - account_page: 'https://atomscan.com/migaloo/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/migaloo", + "tx_page": "https://atomscan.com/migaloo/transactions/${txHash}", + "account_page": "https://atomscan.com/migaloo/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'mises', - status: 'live', - network_type: 'mainnet', - website: 'https://mises.site', - pretty_name: 'Mises', - chain_id: 'mainnet', - bech32_prefix: 'mises', - node_home: '$HOME/.misestm', - daemon_name: 'misestmd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'umis', - fixed_min_gas_price: 0 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "mises", + "status": "live", + "network_type": "mainnet", + "website": "https://mises.site", + "pretty_name": "Mises", + "chain_id": "mainnet", + "bech32_prefix": "mises", + "node_home": "$HOME/.misestm", + "daemon_name": "misestmd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'umis' + "denom": "umis", + "fixed_min_gas_price": 0 } ] }, - codebase: { - git_repo: 'https://github.com/mises-id/mises-tm', - recommended_version: 'v1.0.4', - compatible_versions: ['v1.0.4'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/mises-id/mainnet/master/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.0.4', - recommended_version: 'v1.0.4', - compatible_versions: ['v1.0.4'] + "denom": "umis" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png' - }, - peers: { - seeds: [ - { - id: '40a8318fa18fa9d900f4b0d967df7b1020689fa0', - address: 'e1.mises.site:26656', - provider: 'Mises-2' - }, - { - id: '0d25c5db4cbdc4171c8272278040db774011c268', - address: 'e2.mises.site:26656', - provider: 'Mises-3' - }, - { - id: '1adcfe9b030125b9caa72f3eae3b1274cbaca2cd', - address: 'w1.mises.site:26656', - provider: 'Mises-4' - }, - { - id: '1a96557a74cb8448249b9d15c3cc38cd3aff553d', - address: 'w2.mises.site:26656', - provider: 'Mises-5' - } - ], - persistent_peers: [] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.gw.mises.site:443', - provider: 'Mises-1' + "address": "https://rpc.gw.mises.site:443", + "provider": "Mises-1" }, { - address: 'https://e2.mises.site:443', - provider: 'Mises-3' + "address": "https://e2.mises.site:443", + "provider": "Mises-3" }, { - address: 'https://w2.mises.site:443', - provider: 'Mises-5' + "address": "https://w2.mises.site:443", + "provider": "Mises-5" } ], - rest: [], - grpc: [] + "rest": [], + "grpc": [] }, - explorers: [ + "explorers": [ { - kind: 'Mises-GW Explorer', - url: 'https://gw.mises.site', - tx_page: 'https://gw.mises.site/tx/${txHash}' + "kind": "Mises-GW Explorer", + "url": "https://gw.mises.site", + "tx_page": "https://gw.mises.site/tx/${txHash}" }, { - kind: 'Jambulmerah ping.pub based', - url: 'https://explorer.jambulmerah.dev/mises', - tx_page: 'https://explorer.jambulmerah.dev/mises/tx/${txHash}' + "kind": "Jambulmerah ping.pub based", + "url": "https://explorer.jambulmerah.dev/mises", + "tx_page": "https://explorer.jambulmerah.dev/mises/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mises/images/mises.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'mun', - website: 'https://mun.money', - status: 'live', - network_type: 'mainnet', - pretty_name: 'Mun', - chain_id: 'mun-1', - bech32_prefix: 'mun', - daemon_name: 'mund', - node_home: '$HOME/.mun', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'umun', - fixed_min_gas_price: 0.025 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "mun", + "website": "https://mun.money", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Mun", + "chain_id": "mun-1", + "bech32_prefix": "mun", + "daemon_name": "mund", + "node_home": "$HOME/.mun", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'umun' + "denom": "umun", + "fixed_min_gas_price": 0.025 } ] }, - codebase: { - git_repo: 'https://github.com/munblockchain/mun-node', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - genesis: { - genesis_url: 'https://mainnet1rpc.mun.money/genesis' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'] + "denom": "umun" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.svg' - }, - peers: { - seeds: [ - { - id: '036c564e3de76ffad3e013bea52c16eb1de5a400', - address: '31.14.40.112:26656', - provider: 'Mun' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: 'd28d8c1d31fa97fe668c90700797709f3a0f1b6c', - address: 'rpc.mun.indonode.net:55656', - provider: 'Indonode' - }, - { - id: '7d630b6e517598b4dc84a07c15fe328709a2705b', - address: 'mainnet-mun.konsortech.xyz:28656', - provider: 'KonsorTech' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://mainnet1rpc.mun.money', - provider: 'Mun' + "address": "https://mainnet1rpc.mun.money", + "provider": "Mun" }, { - address: 'https://mainnet-mun-rpc.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-mun-rpc.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://rpc.mun.tcnetwork.io', - provider: 'TC Network' + "address": "https://rpc.mun.tcnetwork.io", + "provider": "TC Network" } ], - rest: [ + "rest": [ { - address: 'https://mainnet1.mun.money', - provider: 'Mun' + "address": "https://mainnet1.mun.money", + "provider": "Mun" }, { - address: 'https://mainnet-mun-api.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-mun-api.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://rest.mun.tcnetwork.io', - provider: 'TC Network' + "address": "https://rest.mun.tcnetwork.io", + "provider": "TC Network" } ], - grpc: [] + "grpc": [] }, - explorers: [ + "explorers": [ { - url: 'https://explorer.mun.money/mun', - tx_page: 'https://explorer.mun.money/mun/${txHash}' + "url": "https://explorer.mun.money/mun", + "tx_page": "https://explorer.mun.money/mun/${txHash}" }, { - url: 'https://explorer.indonode.net/mun/staking', - tx_page: 'https://explorer.indonode.net/mun/${txHash}' + "url": "https://explorer.indonode.net/mun/staking", + "tx_page": "https://explorer.indonode.net/mun/${txHash}" }, { - url: 'https://explorer.konsortech.xyz/mun/staking', - tx_page: 'https://explorer.konsortech.xyz/mun/${txHash}' + "url": "https://explorer.konsortech.xyz/mun/staking", + "tx_page": "https://explorer.konsortech.xyz/mun/${txHash}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/mun', - tx_page: 'https://ping.pub/mun/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/mun", + "tx_page": "https://ping.pub/mun/${txHash}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/mun', - tx_page: 'https://explorer.tcnetwork.io/mun/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/mun", + "tx_page": "https://explorer.tcnetwork.io/mun/transaction/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.svg" } ] }, { - $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', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ + "$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", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'aMYT' + "denom": "aMYT" } ] }, - 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: 'mythos-grpc.provable.dev:443', - provider: 'laurel.provable' + "address": "mythos-grpc.provable.dev:443", + "provider": "laurel.provable" } ], - 'evm-http-jsonrpc': [] - }, - 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' + "evm-http-jsonrpc": [] }, - codebase: { - genesis: { - genesis_url: '' - } + "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" }, - images: [ + "codebase": {}, + "images": [ { - 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' + "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: 'neutron', - status: 'live', - network_type: 'mainnet', - pretty_name: 'Neutron', - chain_id: 'neutron-1', - bech32_prefix: 'neutron', - website: 'https://neutron.org/', - daemon_name: 'neutrond', - node_home: '$HOME/.neutrond', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'untrn', - low_gas_price: 0.075, - average_gas_price: 0.075, - high_gas_price: 0.1125 - }, - { - denom: - 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', - low_gas_price: 0.007, - average_gas_price: 0.007, - high_gas_price: 0.0105 - }, - { - denom: - 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349', - low_gas_price: 0.08, - average_gas_price: 0.08, - high_gas_price: 0.12 - }, - { - denom: - 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH', - low_gas_price: 30125586.037, - average_gas_price: 30125586.037, - high_gas_price: 45188379.0555 - }, - { - denom: - 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130', - low_gas_price: 25641025641.026, - average_gas_price: 25641025641.026, - high_gas_price: 38461538461.5 - }, - { - denom: - 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7', - low_gas_price: 0.006, - average_gas_price: 0.006, - high_gas_price: 0.009 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'untrn' - } - ] - }, - codebase: { - git_repo: 'https://github.com/neutron-org/neutron', - recommended_version: 'v2.0.1', - compatible_versions: ['v2.0.1'], - binaries: { - 'linux/amd64': - 'https://github.com/neutron-org/neutron/releases/download/v2.0.1/neutrond-linux-amd64' - }, - cosmos_sdk_version: 'v0.47.6', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmwasm_version: 'v0.45.0', - cosmwasm_enabled: true, - ibc_go_version: 'v7.3.1', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/neutron-org/mainnet-assets/main/neutron-1-genesis.json' - }, - versions: [ + "$schema": "../chain.schema.json", + "chain_name": "neutron", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Neutron", + "chain_id": "neutron-1", + "bech32_prefix": "neutron", + "website": "https://neutron.org/", + "daemon_name": "neutrond", + "node_home": "$HOME/.neutrond", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v1.0.1', - recommended_version: 'v1.0.4', - compatible_versions: ['v1.0.3', 'v1.0.4'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0', - next_version_name: 'v2.0.0' + "denom": "untrn", + "low_gas_price": 0.075, + "average_gas_price": 0.075, + "high_gas_price": 0.1125 }, { - name: 'v2.0.0', - proposal: 25, - height: 5416000, - recommended_version: 'v2.0.1', - compatible_versions: ['v2.0.1'], - binaries: { - 'linux/amd64': - 'https://github.com/neutron-org/neutron/releases/download/v2.0.0/neutrond-linux-amd64' - }, - cosmos_sdk_version: 'v0.47.6', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmwasm_version: 'v0.45.0', - cosmwasm_enabled: true, - ibc_go_version: 'v7.3.1', - next_version_name: '' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.svg' - }, - description: - 'The most secure CosmWasm platform in Cosmos, Neutron lets smart-contracts leverage bleeding-edge Interchain technology with minimal overhead.', - peers: { - seeds: [ - { - id: '74f3a4a0423e72334f4439b438b29934e5f0dbbd', - address: 'p2p-xyphion.neutron-1.neutron.org:26656', - provider: 'Neutron' + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "low_gas_price": 0.007, + "average_gas_price": 0.007, + "high_gas_price": 0.0105 }, { - id: '65beeffac5c0f29e6c3749687f03b2040d265895', - address: 'p2p-talzor.neutron-1.neutron.org:26656', - provider: 'Neutron' + "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "low_gas_price": 0.08, + "average_gas_price": 0.08, + "high_gas_price": 0.12 }, { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:19156', - provider: 'Lavender.Five Nodes 🐝' + "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "low_gas_price": 30125586.037, + "average_gas_price": 30125586.037, + "high_gas_price": 45188379.0555 }, { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:19156', - provider: 'WhisperNode 🤐' + "denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "low_gas_price": 25641025641.026, + "average_gas_price": 25641025641.026, + "high_gas_price": 38461538461.5 }, { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' + "denom": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "low_gas_price": 0.006, + "average_gas_price": 0.006, + "high_gas_price": 0.009 } - ], - persistent_peers: [ + ] + }, + "staking": { + "staking_tokens": [ { - id: 'e5d2743d9a3de514e4f7b9461bf3f0c1500c58d9', - address: 'neutron.peer.stakewith.us:39956', - provider: 'StakeWithUs' + "denom": "untrn" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.47.6", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.45.0" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.svg" + }, + "description": "The most secure CosmWasm platform in Cosmos, Neutron lets smart-contracts leverage bleeding-edge Interchain technology with minimal overhead.", + "apis": { + "rpc": [ { - address: 'https://rpc-lb.neutron.org', - provider: 'Neutron' + "address": "https://rpc-lb.neutron.org", + "provider": "Neutron" }, { - address: 'https://rpc.novel.remedy.tm.p2p.org', - provider: 'P2P' + "address": "https://rpc.novel.remedy.tm.p2p.org", + "provider": "P2P" }, { - address: 'https://neutron-rpc.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://neutron-rpc.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-neutron.whispernode.com', - provider: 'WhisperNode 🤐' + "address": "https://rpc-neutron.whispernode.com", + "provider": "WhisperNode 🤐" }, { - address: 'https://rpc-neutron.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-neutron.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'http://rpc.neutron.nodestake.top', - provider: 'NodeStake' + "address": "http://rpc.neutron.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://neutron-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://neutron-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://community.nuxian-node.ch:6797/neutron/trpc', - provider: 'PRO Delegators' + "address": "https://community.nuxian-node.ch:6797/neutron/trpc", + "provider": "PRO Delegators" }, { - address: 'https://rpc-neutron.in3s.com:443', - provider: 'in3s.com' + "address": "https://rpc-neutron.in3s.com:443", + "provider": "in3s.com" }, { - address: 'https://rpc.neutron.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.neutron.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ + "rest": [ { - address: 'https://rest-lb.neutron.org', - provider: 'Neutron' + "address": "https://rest-lb.neutron.org", + "provider": "Neutron" }, { - address: 'https://api.novel.remedy.tm.p2p.org', - provider: 'P2P' + "address": "https://api.novel.remedy.tm.p2p.org", + "provider": "P2P" }, { - address: 'https://neutron-api.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://neutron-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://lcd-neutron.whispernode.com', - provider: 'WhisperNode 🤐' + "address": "https://lcd-neutron.whispernode.com", + "provider": "WhisperNode 🤐" }, { - address: 'https://api-neutron.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-neutron.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'http://api.neutron.nodestake.top', - provider: 'NodeStake' + "address": "http://api.neutron.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://neutron-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://neutron-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://community.nuxian-node.ch:6797/neutron/crpc', - provider: 'PRO Delegators' + "address": "https://community.nuxian-node.ch:6797/neutron/crpc", + "provider": "PRO Delegators" }, { - address: 'https://lcd.neutron.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.neutron.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'grpc-kralum.neutron-1.neutron.org:80', - provider: 'Neutron' + "address": "grpc-kralum.neutron-1.neutron.org:80", + "provider": "Neutron" }, { - address: 'https://grpc.novel.remedy.tm.p2p.org', - provider: 'P2P' + "address": "https://grpc.novel.remedy.tm.p2p.org", + "provider": "P2P" }, { - address: 'https://grpc-web.novel.remedy.tm.p2p.org', - provider: 'P2P' + "address": "https://grpc-web.novel.remedy.tm.p2p.org", + "provider": "P2P" }, { - address: 'neutron-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "neutron-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'grpc-neutron.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "grpc-neutron.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'grpc-neutron.cosmos-spaces.cloud:3090', - provider: 'Cosmos Spaces' + "address": "grpc-neutron.cosmos-spaces.cloud:3090", + "provider": "Cosmos Spaces" }, { - address: 'grpc.neutron.nodestake.top:9090', - provider: 'NodeStake' + "address": "grpc.neutron.nodestake.top:9090", + "provider": "NodeStake" }, { - address: 'neutron-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "neutron-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://grpc.neutron.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.neutron.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'Mintscan', - url: 'https://www.mintscan.io/neutron', - tx_page: 'https://www.mintscan.io/neutron/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/neutron/accounts/${accountAddress}' + "kind": "Mintscan", + "url": "https://www.mintscan.io/neutron", + "tx_page": "https://www.mintscan.io/neutron/transactions/${txHash}", + "account_page": "https://www.mintscan.io/neutron/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'nibiru', - status: 'live', - network_type: 'mainnet', - website: 'https://nibiru.fi/', - pretty_name: 'Nibiru', - chain_id: 'cataclysm-1', - bech32_prefix: 'nibi', - daemon_name: 'nibid', - node_home: '$HOME/.nibid', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'unibi', - fixed_min_gas_price: 0.025, - low_gas_price: 0.025, - average_gas_price: 0.05, - high_gas_price: 0.1 - } + "$schema": "../chain.schema.json", + "chain_name": "nibiru", + "status": "live", + "network_type": "mainnet", + "website": "https://nibiru.fi/", + "pretty_name": "Nibiru", + "chain_id": "cataclysm-1", + "bech32_prefix": "nibi", + "daemon_name": "nibid", + "node_home": "$HOME/.nibid", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "unibi", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.05, + "high_gas_price": 0.1 + } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'unibi' + "denom": "unibi" } ], - lock_duration: { - time: '1814400s' + "lock_duration": { + "time": "1814400s" } }, - codebase: { - git_repo: 'https://github.com/NibiruChain/nibiru', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_darwin_arm64.tar.gz' - }, - cosmos_sdk_version: 'v0.45.5', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmwasm_version: 'v0.44.0', - cosmwasm_enabled: true, - ibc_go_version: 'v7.3.1', - genesis: { - genesis_url: - 'https://github.com/NibiruChain/Networks/blob/main/Mainnet/cataclysm-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - tag: 'v1.0.0', - height: 1, - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmos_sdk_version: 'v0.45.5', - cosmwasm_version: 'v0.44.0', - cosmwasm_enabled: true, - ibc_go_version: 'v7.3.1', - cosmwasm_path: '$HOME/.nibid/data/wasm', - binaries: { - 'linux/amd64': - 'https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/NibiruChain/nibiru/releases/download/v1.0.0/nibid_1.0.0_linux_arm64.tar.gz' - }, - next_version_name: '' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + "codebase": { + "cosmos_sdk_version": "v0.45.5", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.44.0" }, - description: 'A Web3 hub ushering in the next era of money', - peers: { - seeds: [ - { - id: 'b7262df35a7e1d1fb4027464efe9d9d6218ca4c7', - address: '35.233.111.89:26656', - provider: 'Nibiru Foundation' - }, - { - id: 'ebf72163ad536ca73a037fa5d564d511be59c2f4', - address: '34.34.137.54:26656', - provider: 'Nibiru Foundation' - } - ], - persistent_peers: [ - { - id: '05106550b6e738d8ce50cb857520124bbcce318f', - address: '35.189.236.126:26656', - provider: 'Nibiru Foundation' - }, - { - id: 'e7af24b15365bff9537e2776c2a5fdf01b933dc5', - address: '34.76.178.49:26656', - provider: 'Nibiru Foundation' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" }, - apis: { - rpc: [ + "description": "A Web3 hub ushering in the next era of money", + "apis": { + "rpc": [ { - address: 'https://rpc.nibiru.fi', - provider: 'Nibiru Foundation' + "address": "https://rpc.nibiru.fi", + "provider": "Nibiru Foundation" } ], - rest: [ + "rest": [ { - address: 'https://lcd.nibiru.fi', - provider: 'Nibiru Foundation' + "address": "https://lcd.nibiru.fi", + "provider": "Nibiru Foundation" } ], - grpc: [ + "grpc": [ { - address: 'grpc.nibiru.fi:443', - provider: 'Nibiru Foundation' + "address": "grpc.nibiru.fi:443", + "provider": "Nibiru Foundation" } ] }, - explorers: [ + "explorers": [ { - kind: 'Nodes Guru', - url: 'https://nibiru.explorers.guru/', - tx_page: 'https://nibiru.explorers.guru/transaction/${txHash}', - account_page: 'https://nibiru.explorers.guru/account/${accountAddress}' + "kind": "Nodes Guru", + "url": "https://nibiru.explorers.guru/", + "tx_page": "https://nibiru.explorers.guru/transaction/${txHash}", + "account_page": "https://nibiru.explorers.guru/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'noble', - chain_id: 'noble-1', - website: 'https://nobleassets.xyz/', - pretty_name: 'Noble', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'noble', - daemon_name: 'nobled', - node_home: '$HOME/.noble', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uusdc', - fixed_min_gas_price: 0.1, - low_gas_price: 0.1, - average_gas_price: 0.1, - high_gas_price: 0.2 - }, - { - denom: - 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0', - fixed_min_gas_price: 0.01, - low_gas_price: 0.01, - average_gas_price: 0.01, - high_gas_price: 0.02 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ustake' - } - ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/strangelove-ventures/noble', - recommended_version: 'v4.0.1', - compatible_versions: ['v4.0.1'], - cosmos_sdk_version: 'v0.45.16', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - cosmwasm_enabled: false, - ibc_go_version: 'v4.5.1', - ics_enabled: ['ics20-1'], - genesis: { - name: 'v1.0.0', - genesis_url: - 'https://raw.githubusercontent.com/strangelove-ventures/noble-networks/main/mainnet/noble-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.0', - tag: 'v1.0.0', - height: 0, - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - cosmos_sdk_version: 'v0.45', - consensus: { - type: 'tendermint', - version: 'v0.34' - }, - cosmwasm_enabled: false, - ibc_go_version: 'v3.4.0', - ics_enabled: ['ics20-1'], - next_version_name: 'neon' - }, - { - name: 'neon', - tag: 'v2.0.0', - height: 119000, - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - cosmos_sdk_version: 'v0.45', - consensus: { - type: 'tendermint', - version: 'v0.34' - }, - cosmwasm_enabled: false, - ibc_go_version: 'v3.4.0', - ics_enabled: ['ics20-1'], - next_version_name: 'radon' - }, - { - name: 'radon', - tag: 'v3.0.0', - height: 1296000, - recommended_version: 'v3.0.0', - compatible_versions: ['v3.0.0'], - cosmos_sdk_version: 'v0.45.15', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - cosmwasm_enabled: false, - ibc_go_version: 'v3.4.0', - ics_enabled: ['ics20-1'], - next_version_name: 'v3.1.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "noble", + "chain_id": "noble-1", + "website": "https://nobleassets.xyz/", + "pretty_name": "Noble", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "noble", + "daemon_name": "nobled", + "node_home": "$HOME/.noble", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v3.1.0', - tag: 'v3.1.0', - height: 2672000, - recommended_version: 'v3.1.0', - compatible_versions: ['v3.1.0'], - cosmos_sdk_version: 'v0.45.15', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - cosmwasm_enabled: false, - ibc_go_version: 'v3.4.0', - ics_enabled: ['ics20-1'], - next_version_name: 'argon' + "denom": "uusdc", + "fixed_min_gas_price": 0.1, + "low_gas_price": 0.1, + "average_gas_price": 0.1, + "high_gas_price": 0.2 }, { - name: 'argon', - tag: 'v4.0.1', - height: 3408600, - recommended_version: 'v4.0.1', - compatible_versions: ['v4.0.1'], - cosmos_sdk_version: 'v0.45.16', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - cosmwasm_enabled: false, - ibc_go_version: 'v4.5.1', - ics_enabled: ['ics20-1'], - next_version_name: '' + "denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.01, + "high_gas_price": 0.02 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/Noble-Logo.svg' - }, - description: - 'The most reliable, secure, and frictionless way to natively issue a digital asset in Cosmos.', - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:21590', - provider: 'Lavender.Five Nodes 🐝' + "denom": "ustake" } - ] + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "cosmos_sdk_version": "v0.45.16", + "cosmwasm_enabled": false }, - apis: { - rpc: [ + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/Noble-Logo.svg" + }, + "description": "The most reliable, secure, and frictionless way to natively issue a digital asset in Cosmos.", + "apis": { + "rpc": [ { - address: 'https://noble-rpc.polkachu.com', - provider: 'polkachu' + "address": "https://noble-rpc.polkachu.com", + "provider": "polkachu" }, { - address: 'https://noble-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://noble-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ], - rest: [ + "rest": [ { - address: 'https://noble-api.polkachu.com', - provider: 'polkachu' + "address": "https://noble-api.polkachu.com", + "provider": "polkachu" }, { - address: 'https://noble-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://noble-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ], - grpc: [ + "grpc": [ { - address: 'noble-grpc.polkachu.com:21590', - provider: 'polkachu' + "address": "noble-grpc.polkachu.com:21590", + "provider": "polkachu" }, { - address: 'https://noble-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://noble-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/noble', - tx_page: 'https://www.mintscan.io/noble/txs/${txHash}', - account_page: 'https://www.mintscan.io/noble/account/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/noble", + "tx_page": "https://www.mintscan.io/noble/txs/${txHash}", + "account_page": "https://www.mintscan.io/noble/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://explore.strange.love/noble-1', - tx_page: 'https://explore.strange.love/noble-1/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explore.strange.love/noble-1", + "tx_page": "https://explore.strange.love/noble-1/tx/${txHash}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/noble', - account_page: 'https://stakeflow.io/noble/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/noble", + "account_page": "https://stakeflow.io/noble/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/Noble-Logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/Noble-Logo.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'nois', - status: 'live', - network_type: 'mainnet', - website: 'https://nois.network', - pretty_name: 'Nois', - chain_id: 'nois-1', - bech32_prefix: 'nois', - daemon_name: 'noisd', - node_home: '$HOME/.noisd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "nois", + "status": "live", + "network_type": "mainnet", + "website": "https://nois.network", + "pretty_name": "Nois", + "chain_id": "nois-1", + "bech32_prefix": "nois", + "daemon_name": "noisd", + "node_home": "$HOME/.noisd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'unois', - fixed_min_gas_price: 0.05, - low_gas_price: 0.05, - average_gas_price: 0.05, - high_gas_price: 0.1 + "denom": "unois", + "fixed_min_gas_price": 0.05, + "low_gas_price": 0.05, + "average_gas_price": 0.05, + "high_gas_price": 0.1 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'unois' + "denom": "unois" } ], - lock_duration: { - time: '1814400s' + "lock_duration": { + "time": "1814400s" } }, - codebase: { - git_repo: 'https://github.com/noislabs/noisd', - recommended_version: 'v1.0.4', - compatible_versions: ['v1.0.0', 'v1.0.4'], - cosmos_sdk_version: 'v0.45.15', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - cosmwasm_version: 'v0.31.0', - cosmwasm_enabled: true, - genesis: { - name: 'v1', - genesis_url: - 'https://raw.githubusercontent.com/noislabs/networks/nois1.final.1/nois-1/genesis.json' - }, - versions: [ - { - name: 'v1', - tag: 'v1.0.4', - height: 0, - recommended_version: 'v1.0.4', - compatible_versions: ['v1.0.0', 'v1.0.4'], - cosmos_sdk_version: 'v0.45.15', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - cosmwasm_version: 'v0.31.0', - cosmwasm_enabled: true - } - ] + "codebase": { + "cosmos_sdk_version": "v0.45.15", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.31.0" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', - theme: { - primary_color_hex: '#0C0914' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "theme": { + "primary_color_hex": "#0C0914" } }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png' - }, - peers: { - seeds: [ - { - id: 'b3e3bd436ee34c39055a4c9946a02feec232988c', - address: 'seeds.cros-nest.com:56656', - provider: 'Cros-Nest' - }, - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:17356', - provider: 'RHINO' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:17356', - provider: 'Polkachu' - }, - { - id: '72cd4222818d25da5206092c3efc2c0dd0ec34fe', - address: '161.97.96.91:36656', - provider: 'AM Solutions' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:17356', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'c8db99691545545402a1c45fa897f3cb1a05aea6', - address: 'nois-mainnet-seed.itrocket.net:36656', - provider: 'itrocket' - }, - { - id: '1de5c83c5a5eb223c814401f0506b44b742741da', - address: 'nois.peer.stavr.tech:40136', - provider: '🔥STAVR🔥' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'nois.rpc.kjnodes.com:15159', - provider: 'kjnodes' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://nois-rpc.nysa.network', - provider: 'nysa.network' + "address": "https://nois-rpc.nysa.network", + "provider": "nysa.network" }, { - address: 'https://nois.rpc.bccnodes.com', - provider: 'BccNodes' + "address": "https://nois.rpc.bccnodes.com", + "provider": "BccNodes" }, { - address: 'https://nois-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://nois-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-nois.mib.tech/', - provider: 'MadeInBlock' + "address": "https://rpc-nois.mib.tech/", + "provider": "MadeInBlock" }, { - address: 'https://m-nois.rpc.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-nois.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'http://nois.rpc.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "http://nois.rpc.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc-nois.ezstaking.dev', - provider: 'EZStaking' + "address": "https://rpc-nois.ezstaking.dev", + "provider": "EZStaking" }, { - address: 'https://nois-mainnet-rpc.itrocket.net', - provider: 'itrocket' + "address": "https://nois-mainnet-rpc.itrocket.net", + "provider": "itrocket" }, { - address: 'https://rpc.nois.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.nois.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://rpc-nois.d-stake.xyz', - provider: 'D-Stake' + "address": "https://rpc-nois.d-stake.xyz", + "provider": "D-Stake" }, { - address: 'https://rpc-nois.sr20de.xyz', - provider: 'SR20DE' + "address": "https://rpc-nois.sr20de.xyz", + "provider": "SR20DE" }, { - address: 'https://nois-mainnet-rpc.autostake.com', - provider: 'AutoStake' + "address": "https://nois-mainnet-rpc.autostake.com", + "provider": "AutoStake" }, { - address: 'https://nois-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://nois-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://nois.kingnodes.com', - provider: 'Kingnodes' + "address": "https://nois.kingnodes.com", + "provider": "Kingnodes" }, { - address: 'https://nois.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://nois.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://rpc.nois.silentvalidator.com', - provider: 'silent' + "address": "https://rpc.nois.silentvalidator.com", + "provider": "silent" }, { - address: 'https://nois-rpc.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://nois-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" } ], - grpc: [ + "grpc": [ { - address: 'https://nois-grpc.nysa.network', - provider: 'nysa.network' + "address": "https://nois-grpc.nysa.network", + "provider": "nysa.network" }, { - address: 'nois.grpc.bccnodes.com:443', - provider: 'BccNodes' + "address": "nois.grpc.bccnodes.com:443", + "provider": "BccNodes" }, { - address: 'https://nois-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://nois-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://grpc.noismain.mcbnode.online', - provider: 'mcbnode' + "address": "https://grpc.noismain.mcbnode.online", + "provider": "mcbnode" }, { - address: 'http://nois.grpc.m.stavr.tech:191', - provider: '🔥STAVR🔥' + "address": "http://nois.grpc.m.stavr.tech:191", + "provider": "🔥STAVR🔥" }, { - address: 'nois-mainnet-grpc.itrocket.net:36090', - provider: 'itrocket' + "address": "nois-mainnet-grpc.itrocket.net:36090", + "provider": "itrocket" }, { - address: 'nois-mainnet-grpc.itrocket.net:36090', - provider: 'itrocket' + "address": "nois-mainnet-grpc.itrocket.net:36090", + "provider": "itrocket" }, { - address: 'https://grpc.nois.nodestake.top', - provider: 'NodeStake' + "address": "https://grpc.nois.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://grpc-nois.d-stake.xyz', - provider: 'D-Stake' + "address": "https://grpc-nois.d-stake.xyz", + "provider": "D-Stake" }, { - address: 'https://grpc.nois.hexnodes.co', - provider: 'HexNodes' + "address": "https://grpc.nois.hexnodes.co", + "provider": "HexNodes" }, { - address: 'https://grpc-nois.sr20de.xyz', - provider: 'SR20DE' + "address": "https://grpc-nois.sr20de.xyz", + "provider": "SR20DE" }, { - address: 'https://nois-testnet-grpc.autostake.com', - provider: 'AutoStake' + "address": "https://nois-testnet-grpc.autostake.com", + "provider": "AutoStake" }, { - address: 'nois-grpc.polkachu.com:17390', - provider: 'Polkachu' + "address": "nois-grpc.polkachu.com:17390", + "provider": "Polkachu" }, { - address: 'https://grpc-nois.kingnodes.com', - provider: 'Kingnodes' + "address": "https://grpc-nois.kingnodes.com", + "provider": "Kingnodes" }, { - address: 'nois.grpc.kjnodes.com:15190', - provider: 'kjnodes' + "address": "nois.grpc.kjnodes.com:15190", + "provider": "kjnodes" }, { - address: 'grpc.nois.silentvalidator.com:443', - provider: 'silent' + "address": "grpc.nois.silentvalidator.com:443", + "provider": "silent" }, { - address: 'nois-grpc.stakeandrelax.net:17390', - provider: 'Stake&Relax 🦥' + "address": "nois-grpc.stakeandrelax.net:17390", + "provider": "Stake&Relax 🦥" } ], - rest: [ + "rest": [ { - address: 'https://m-nois.api.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-nois.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://nois-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://nois-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://lcd-nois.ezstaking.dev', - provider: 'EZStaking' + "address": "https://lcd-nois.ezstaking.dev", + "provider": "EZStaking" }, { - address: 'https://lcd-nois.mib.tech/', - provider: 'MadeInBlock' + "address": "https://lcd-nois.mib.tech/", + "provider": "MadeInBlock" }, { - address: 'https://nois.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://nois.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://nois-mainnet-api.itrocket.net', - provider: 'itrocket' + "address": "https://nois-mainnet-api.itrocket.net", + "provider": "itrocket" }, { - address: 'https://api.nois.nodestake.top', - provider: 'NodeStake' + "address": "https://api.nois.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://api-nois.d-stake.xyz', - provider: 'D-Stake' + "address": "https://api-nois.d-stake.xyz", + "provider": "D-Stake" }, { - address: 'https://api-nois.sr20de.xyz', - provider: 'SR20DE' + "address": "https://api-nois.sr20de.xyz", + "provider": "SR20DE" }, { - address: 'https://nois-api.polkachu.com', - provider: 'Polkachu' + "address": "https://nois-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://nois.kingnodes.com', - provider: 'Kingnodes' + "address": "https://nois.kingnodes.com", + "provider": "Kingnodes" }, { - address: 'https://nois.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://nois.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://api.nois.silentvalidator.com', - provider: 'silent' + "address": "https://api.nois.silentvalidator.com", + "provider": "silent" }, { - address: 'https://nois-api.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://nois-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/nois', - tx_page: 'https://app.ezstaking.io/nois/txs/${txHash}', - account_page: 'https://app.ezstaking.io/nois/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/nois", + "tx_page": "https://app.ezstaking.io/nois/txs/${txHash}", + "account_page": "https://app.ezstaking.io/nois/account/${accountAddress}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/nois-mainnet', - tx_page: 'https://explorer.stavr.tech/nois-mainnet/txs/${txHash}', - account_page: - 'https://explorer.stavr.tech/nois-mainnet/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/nois-mainnet", + "tx_page": "https://explorer.stavr.tech/nois-mainnet/txs/${txHash}", + "account_page": "https://explorer.stavr.tech/nois-mainnet/account/${accountAddress}" }, { - kind: 'BccNodes', - url: 'https://explorer.stavr.tech/nois-mainnet', - tx_page: 'https://explorer.bccnodes.com/nois-M/txs/${txHash}', - account_page: - 'https://explorer.bccnodes.com/nois-M/account/${accountAddress}' + "kind": "BccNodes", + "url": "https://explorer.stavr.tech/nois-mainnet", + "tx_page": "https://explorer.bccnodes.com/nois-M/txs/${txHash}", + "account_page": "https://explorer.bccnodes.com/nois-M/account/${accountAddress}" }, { - kind: 'explorers.guru', - url: 'https://nois.explorers.guru', - tx_page: 'https://nois.explorers.guru/transaction/${txHash}', - account_page: 'https://nois.explorers.guru/account/${accountAddress}' + "kind": "explorers.guru", + "url": "https://nois.explorers.guru", + "tx_page": "https://nois.explorers.guru/transaction/${txHash}", + "account_page": "https://nois.explorers.guru/account/${accountAddress}" } ], - keywords: ['nois', 'randomness', 'drand', 'wasm'] + "keywords": [ + "nois", + "randomness", + "drand", + "wasm" + ] }, { - $schema: '../chain.schema.json', - chain_name: 'nolus', - status: 'live', - website: 'https://nolus.io/', - network_type: 'mainnet', - pretty_name: 'Nolus', - chain_id: 'pirin-1', - bech32_prefix: 'nolus', - daemon_name: 'nolusd', - node_home: '$HOME/.nolus', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'unls', - low_gas_price: 0, - average_gas_price: 0.025, - high_gas_price: 0.05 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'unls' - } - ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/nolus-protocol/nolus-core', - recommended_version: 'v0.5.0', - compatible_versions: ['v0.5.0'], - cosmos_sdk_version: 'v0.47.6-nolus', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - cosmwasm_version: 'neutron-org/wasmd v0.45.0', - cosmwasm_enabled: true, - ibc_go_version: '7.3.1', - ics_enabled: ['ics20-1', 'ics27-1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/nolus-protocol/nolus-networks/main/mainnet/pirin-1/genesis.json' - }, - versions: [ - { - name: 'v0.3.0', - recommended_version: 'v0.3.0', - compatible_versions: ['v0.3.0'], - cosmos_sdk_version: '0.45', - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0', - ics_enabled: ['ics20-1', 'ics27-1'], - next_version_name: 'v0.4.0' - }, - { - name: 'v0.4.0', - proposal: 5, - height: 207300, - recommended_version: 'v0.4.0', - compatible_versions: ['v0.4.0'], - cosmos_sdk_version: '0.45', - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0', - ics_enabled: ['ics20-1', 'ics27-1'], - next_version_name: 'v0.4.1' - }, - { - name: 'v0.4.1', - proposal: 34, - height: 941000, - recommended_version: 'v0.4.1', - compatible_versions: ['v0.4.1'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '4.3.1', - ics_enabled: ['ics20-1', 'ics27-1'], - next_version_name: '' - }, - { - name: 'v0.4.2', - proposal: 54, - height: 3044000, - recommended_version: 'v0.4.2', - compatible_versions: ['v0.4.2'], - cosmos_sdk_version: 'v0.45.15-ics', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '4.3.1', - ics_enabled: ['ics20-1', 'ics27-1'], - next_version_name: 'v0.5.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "nolus", + "status": "live", + "website": "https://nolus.io/", + "network_type": "mainnet", + "pretty_name": "Nolus", + "chain_id": "pirin-1", + "bech32_prefix": "nolus", + "daemon_name": "nolusd", + "node_home": "$HOME/.nolus", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v0.5.0', - proposal: 72, - height: 3659000, - recommended_version: 'v0.5.0', - compatible_versions: ['v0.5.0'], - cosmos_sdk_version: 'v0.47.6-nolus', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - cosmwasm_version: 'neutron-org/wasmd v0.45.0', - cosmwasm_enabled: true, - ibc_go_version: '7.3.1', - ics_enabled: ['ics20-1', 'ics27-1'], - next_version_name: '' + "denom": "unls", + "low_gas_price": 0, + "average_gas_price": 0.025, + "high_gas_price": 0.05 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' - }, - description: - 'Elevate your game with up to 3x equity. Dive into a world of minimized risks and unlock the full potential of your assets.', - peers: { - seeds: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:11956', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'nolus-mainnet-seed.autostake.com:27016', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'nolus.rpc.kjnodes.com:14359', - provider: 'kjnodes' - }, + "staking": { + "staking_tokens": [ { - id: 'cefe4a5394dc57f318547258c511a9a96aaeaa7b', - address: 'seed-nolus.ibs.team:56656', - provider: 'Inter Blockchain Services' + "denom": "unls" } ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'nolus-mainnet-peer.autostake.com:27016', - provider: 'AutoStake 🛡️ Slash Protected' - } - ] + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "cosmos_sdk_version": "v0.47.6-nolus", + "cosmwasm_enabled": true, + "cosmwasm_version": "neutron-org/wasmd v0.45.0" }, - apis: { - rpc: [ + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" + }, + "description": "Elevate your game with up to 3x equity. Dive into a world of minimized risks and unlock the full potential of your assets.", + "apis": { + "rpc": [ { - address: 'https://pirin-cl.nolus.network:26657', - provider: 'NolusProtocol' + "address": "https://pirin-cl.nolus.network:26657", + "provider": "NolusProtocol" }, { - address: 'https://nolus-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://nolus-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://nolus-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://nolus-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://nolus-rpc.sphincs.plus', - provider: 'Sphincs.plus 🔅' + "address": "https://nolus-rpc.sphincs.plus", + "provider": "Sphincs.plus 🔅" }, { - address: 'https://nolus.rpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://nolus.rpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://rpc-nolus.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rpc-nolus.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://nolus.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://nolus.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://nolus-rpc.enigma-validator.com/', - provider: 'Enigma' + "address": "https://nolus-rpc.enigma-validator.com/", + "provider": "Enigma" }, { - address: 'https://nolus-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://nolus-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://rpc-nolus.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-nolus.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://nolus-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://nolus-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://nolus-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://nolus-rpc.ibs.team", + "provider": "Inter Blockchain Services" } ], - rest: [ + "rest": [ { - address: 'https://pirin-cl.nolus.network:1317', - provider: 'NolusProtocol' + "address": "https://pirin-cl.nolus.network:1317", + "provider": "NolusProtocol" }, { - address: 'https://nolus-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://nolus-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://nolus-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://nolus-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://nolus-lcd.sphincs.plus', - provider: 'Sphincs.plus 🔅' + "address": "https://nolus-lcd.sphincs.plus", + "provider": "Sphincs.plus 🔅" }, { - address: 'https://api-nolus.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-nolus.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://nolus.api.liveraven.net', - provider: 'LiveRaveN' + "address": "https://nolus.api.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://rest-nolus.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rest-nolus.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://nolus.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://nolus.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://nolus-lcd.enigma-validator.com/', - provider: 'Enigma' + "address": "https://nolus-lcd.enigma-validator.com/", + "provider": "Enigma" }, { - address: 'https://nolus-api.w3coins.io', - provider: 'w3coins' + "address": "https://nolus-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://nolus-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://nolus-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://nolus-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://nolus-api.ibs.team", + "provider": "Inter Blockchain Services" } ], - grpc: [ + "grpc": [ { - address: 'https://pirin-cl.nolus.network:9090', - provider: 'NolusProtocol' + "address": "https://pirin-cl.nolus.network:9090", + "provider": "NolusProtocol" }, { - address: 'nolus-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "nolus-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://nolus-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://nolus-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://nolus.grpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://nolus.grpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'grpc-nolus.architectnodes.com:1443', - provider: 'Architect Nodes' + "address": "grpc-nolus.architectnodes.com:1443", + "provider": "Architect Nodes" }, { - address: 'grpc-nolus.cosmos-spaces.cloud:1190', - provider: 'Cosmos Spaces' + "address": "grpc-nolus.cosmos-spaces.cloud:1190", + "provider": "Cosmos Spaces" }, { - address: 'nolus.grpc.kjnodes.com:14390', - provider: 'kjnodes' + "address": "nolus.grpc.kjnodes.com:14390", + "provider": "kjnodes" }, { - address: 'nolus-grpc.w3coins.io:19790', - provider: 'w3coins' + "address": "nolus-grpc.w3coins.io:19790", + "provider": "w3coins" }, { - address: 'nolus-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "nolus-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'Nolus Explorer', - url: 'https://explorer.nolus.io/pirin-1', - tx_page: 'https://explorer.nolus.io/pirin-1/tx/${txHash}', - account_page: - 'https://explorer.nolus.io/pirin-1/account/${accountAddress}' + "kind": "Nolus Explorer", + "url": "https://explorer.nolus.io/pirin-1", + "tx_page": "https://explorer.nolus.io/pirin-1/tx/${txHash}", + "account_page": "https://explorer.nolus.io/pirin-1/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/nolus', - tx_page: 'https://ping.pub/nolus/tx/${txHash}', - account_page: 'https://ping.pub/nolus/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://ping.pub/nolus", + "tx_page": "https://ping.pub/nolus/tx/${txHash}", + "account_page": "https://ping.pub/nolus/account/${accountAddress}" }, { - kind: 'NODEXPLORER', - url: 'https://explorer.nodexcapital.com/nolus', - tx_page: 'https://explorer.nodexcapital.com/nolus/tx/${txHash}', - account_page: - 'https://explorer.nodexcapital.com/nolus/account/${accountAddress}' + "kind": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com/nolus", + "tx_page": "https://explorer.nodexcapital.com/nolus/tx/${txHash}", + "account_page": "https://explorer.nodexcapital.com/nolus/account/${accountAddress}" }, { - kind: 'Nodes Guru Explorer', - url: 'https://nolus.explorers.guru', - tx_page: 'https://nolus.explorers.guru/transaction/${txHash}' + "kind": "Nodes Guru Explorer", + "url": "https://nolus.explorers.guru", + "tx_page": "https://nolus.explorers.guru/transaction/${txHash}" }, { - kind: 'KJ Nodes Explorer', - url: 'https://explorer.kjnodes.com/nolus', - tx_page: 'https://explorer.kjnodes.com/nolus/tx/${txHash}', - account_page: - 'https://explorer.kjnodes.com/nolus/account/${accountAddress}' + "kind": "KJ Nodes Explorer", + "url": "https://explorer.kjnodes.com/nolus", + "tx_page": "https://explorer.kjnodes.com/nolus/tx/${txHash}", + "account_page": "https://explorer.kjnodes.com/nolus/account/${accountAddress}" } ], - keywords: ['mainnet'], - images: [ + "keywords": [ + "mainnet" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'nomic', - status: 'live', - network_type: 'mainnet', - pretty_name: 'Nomic', - website: 'https://nomic.io/', - chain_id: 'nomic-stakenet-3', - bech32_prefix: 'nomic', - daemon_name: 'nomic', - node_home: '$HOME/.nomic-stakenet-3', - slip44: 118, - key_algos: ['secp256k1'], - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "nomic", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Nomic", + "website": "https://nomic.io/", + "chain_id": "nomic-stakenet-3", + "bech32_prefix": "nomic", + "daemon_name": "nomic", + "node_home": "$HOME/.nomic-stakenet-3", + "slip44": 118, + "key_algos": [ + "secp256k1" + ], + "fees": { + "fee_tokens": [ { - denom: 'unom', - low_gas_price: 0, - average_gas_price: 0, - high_gas_price: 0 + "denom": "unom", + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'unom' + "denom": "unom" } ], - lock_duration: { - time: '1209600s' + "lock_duration": { + "time": "1209600s" } }, - codebase: { - git_repo: 'https://github.com/nomic-io/nomic', - recommended_version: 'v7.0.1', - compatible_versions: ['v7.0.0', 'v7.0.1'], - cosmos_sdk_version: 'cosmos-sdk-proto 0.19.0', - consensus: { - type: 'tendermint', - version: 'v0.32.0' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/nomic-io/nomic/develop/genesis/stakenet-3.json' - }, - versions: [ - { - name: 'v7.0.0', - recommended_version: 'v7.0.1', - compatible_versions: ['v7.0.0', 'v7.0.1'], - cosmos_sdk_version: 'cosmos-sdk-proto 0.19.0', - consensus: { - type: 'tendermint', - version: 'v0.32.0' - }, - next_version_name: '' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.svg' + "codebase": { + "cosmos_sdk_version": "cosmos-sdk-proto 0.19.0" }, - description: - 'The superior way to use Bitcoin in Cosmos DeFi. Use IBC to securely and efficiently bridge your BTC to Osmosis and more.', - peers: { - seeds: [ - { - id: '238120dfe716082754048057c1fdc3d6f09609b5', - address: 'rpc.nomic.mappum.io:26656', - provider: 'mappum' - }, - { - id: '34544f82960d2ff2b1defb7b04f097557f4183be', - address: 'seeds.goldenratiostaking.net:26656', - provider: 'Golden Ratio Staking' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:12756', - provider: 'WhisperNode 🤐' - }, - { - id: '27b6d74c8408e033e2e5a9e966a0d15782e33596', - address: 'seeds.nethernode.xyz:12756', - provider: 'carbonZERO🌲' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: 'd4342c478c75704e8284dc3494fbd0acc444e674', - address: 'basementnodes.ca:20656', - provider: 'Basement Nodes ⚡️' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.svg" }, - apis: { - rpc: [ + "description": "The superior way to use Bitcoin in Cosmos DeFi. Use IBC to securely and efficiently bridge your BTC to Osmosis and more.", + "apis": { + "rpc": [ { - address: 'https://stakenet-rpc.nomic.io:2096', - provider: 'nomic-io' + "address": "https://stakenet-rpc.nomic.io:2096", + "provider": "nomic-io" }, { - address: 'https://nomic-rpc.polkachu.com/', - provider: 'Polkachu' + "address": "https://nomic-rpc.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://rpc-nomic.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-nomic.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://rpc.nomic.basementnodes.ca:443', - provider: 'Basement Nodes ⚡️' + "address": "https://rpc.nomic.basementnodes.ca:443", + "provider": "Basement Nodes ⚡️" }, { - address: 'https://rpc.nomic.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.nomic.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ + "rest": [ { - address: 'https://app.nomic.io:8443', - provider: 'nomic-io' + "address": "https://app.nomic.io:8443", + "provider": "nomic-io" }, { - address: 'https://rest.nomic.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rest.nomic.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://bigdipper.live/nomic', - account_page: 'https://bigdipper.live/nomic/accounts/${accountAddress}', - tx_page: 'https://bigdipper.live/nomic/transactions/${txHash}' + "kind": "bigdipper", + "url": "https://bigdipper.live/nomic", + "account_page": "https://bigdipper.live/nomic/accounts/${accountAddress}", + "tx_page": "https://bigdipper.live/nomic/transactions/${txHash}" }, { - kind: 'Zenscan.io', - url: 'https://nomic.zenscan.io/index.php', - account_page: - 'https://nomic.zenscan.io/address.php?address=${accountAddress}', - tx_page: 'https://nomic.zenscan.io/transaction.php?hash=${txHash}' + "kind": "Zenscan.io", + "url": "https://nomic.zenscan.io/index.php", + "account_page": "https://nomic.zenscan.io/address.php?address=${accountAddress}", + "tx_page": "https://nomic.zenscan.io/transaction.php?hash=${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.svg" } ], - bech32_config: { - bech32PrefixAccAddr: 'nomic', - bech32PrefixAccPub: 'nomic', - bech32PrefixConsAddr: 'nomic', - bech32PrefixConsPub: 'nomic', - bech32PrefixValAddr: 'nomic', - bech32PrefixValPub: 'nomic' + "bech32_config": { + "bech32PrefixAccAddr": "nomic", + "bech32PrefixAccPub": "nomic", + "bech32PrefixConsAddr": "nomic", + "bech32PrefixConsPub": "nomic", + "bech32PrefixValAddr": "nomic", + "bech32PrefixValPub": "nomic" } }, { - $schema: '../chain.schema.json', - chain_name: 'nyx', - status: 'live', - network_type: 'mainnet', - website: 'https://nymtech.net/', - pretty_name: 'Nym', - chain_id: 'nyx', - bech32_prefix: 'n', - daemon_name: 'nyxd', - node_home: '$HOME/.nyxd', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'unym', - fixed_min_gas_price: 0.025, - low_gas_price: 0.025, - average_gas_price: 0.025, - high_gas_price: 0.04 - }, - { - denom: 'unyx', - fixed_min_gas_price: 0.025, - low_gas_price: 0.025, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'unyx' - } - ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/nymtech/nyxd/', - recommended_version: 'v0.43.0', - compatible_versions: ['v0.43.0'], - binaries: { - 'linux/amd64': 'https://github.com/nymtech/nyxd/releases/tag/v0.43.0' - }, - genesis: { - genesis_url: 'https://nymtech.net/genesis/genesis.json' - }, - cosmwasm_enabled: true, - versions: [ - { - name: 'v0.31.1', - tag: 'v0.31.1', - height: 7710000, - proposal: 8, - recommended_version: 'v0.31.1', - compatible_versions: ['v0.31.1'], - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': - 'https://github.com/nymtech/nyxd/releases/tag/v0.31.1' - }, - next_version_name: 'v0.32.0' - }, - { - name: 'v0.32.0', - tag: 'v0.32.0', - height: 8010500, - proposal: 9, - recommended_version: 'v0.32.0', - compatible_versions: ['v0.32.0'], - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': - 'https://github.com/nymtech/nyxd/releases/tag/v0.32.0' - }, - next_version_name: 'v0.43.0' - }, - { - name: 'v0.43.0', - tag: 'v0.43.0', - height: 9912345, - proposal: 10, - recommended_version: 'v0.43.0', - compatible_versions: ['v0.43.0'], - cosmwasm_enabled: true, - binaries: { - 'linux/amd64': - 'https://github.com/nymtech/nyxd/releases/tag/v0.43.0' - } + "$schema": "../chain.schema.json", + "chain_name": "nyx", + "status": "live", + "network_type": "mainnet", + "website": "https://nymtech.net/", + "pretty_name": "Nym", + "chain_id": "nyx", + "bech32_prefix": "n", + "daemon_name": "nyxd", + "node_home": "$HOME/.nyxd", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "unym", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.04 + }, + { + "denom": "unyx", + "fixed_min_gas_price": 0.025, + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' - }, - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:15356', - provider: 'Polkachu' + "denom": "unyx" } ], - persistent_peers: [ - { - id: '4acf579e2744268f834c713e894850995bbf0ffa', - address: '50.18.31.225:26656' - }, + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "cosmwasm_enabled": true + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png" + }, + "apis": { + "rpc": [ { - id: 'a58b9b102e7d91f4900036b40b8232d386245c55', - address: '3.65.247.65:26656' + "address": "https://rpc.nyx.nodes.guru/", + "provider": "nodes guru" }, { - id: 'ee03a6777fb76a2efd0106c3769daaa064a3fcb5', - address: '51.79.21.187:26656' + "address": "https://rpc.nym.forbole.com/", + "provider": "forbole" }, { - id: '6bac8d8e4b43a230d2da45480d82ec87144c2f23', - address: 'nyx-validator.nym.blockfend.com:26656' + "address": "https://nym-mainnet-rpc.commodum.io/", + "provider": "commodum" }, { - id: '3905ef90a12784a6f0ae4435fcd8ad13816f12ac', - address: '35.245.211.169:26656' - }, - { - id: '2f57a4a5926ceadb91a6df09a82ebad322777a6c', - address: 'sentry-2.nym.ezstaking.xyz:26666' - }, - { - id: '8fb63514b6325459fb90ede3b3697ec0827b6f50', - address: '35.223.70.235:26656' - }, - { - id: '6625c048105d86d8bd6c22bc1359e10f4de1e6d4', - address: '34.125.78.165:26656' - }, - { - id: 'a0fd38e40fd53699437d90456e0a2e62df0607e0', - address: '15.235.9.199:26656' - }, - { - id: '22120fe1203d2721cda9dd2548a346fdae43aedb', - address: '51.79.80.25:26656' - }, - { - id: '611c8b24adc5ae17477b3dfedae32af117d6d276', - address: '35.215.45.32:26656' - }, - { - id: '4e1663adac48c439baa5fbaebb9c9ddde91f9c18', - address: '51.79.72.10:26656' - }, - { - id: 'b436cf49cd0e163ea1aa9eaf38e3d2250eb42c9e', - address: '51.222.248.217:26656' - }, - { - id: '2e2ae7a117b22c0a09b685b963603150f702b6af', - address: '144.126.133.37:10053' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://rpc.nyx.nodes.guru/', - provider: 'nodes guru' - }, - { - address: 'https://rpc.nym.forbole.com/', - provider: 'forbole' - }, - { - address: 'https://nym-mainnet-rpc.commodum.io/', - provider: 'commodum' - }, - { - address: 'https://nym-rpc.polkachu.com/', - provider: 'Polkachu' + "address": "https://nym-rpc.polkachu.com/", + "provider": "Polkachu" } ], - rest: [ + "rest": [ { - address: 'https://nym-api.polkachu.com/', - provider: 'Polkachu' + "address": "https://nym-api.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://api.nyx.nodes.guru/', - provider: 'nodes guru' + "address": "https://api.nyx.nodes.guru/", + "provider": "nodes guru" }, { - address: 'https://api.nymtech.net', - provider: 'Nym' + "address": "https://api.nymtech.net", + "provider": "Nym" } ], - grpc: [ + "grpc": [ { - address: 'nym-grpc.polkachu.com:15390', - provider: 'Polkachu' + "address": "nym-grpc.polkachu.com:15390", + "provider": "Polkachu" }, { - address: 'grpc.nymtech.net:443', - provider: 'Nym' + "address": "grpc.nymtech.net:443", + "provider": "Nym" } ] }, - explorers: [ + "explorers": [ { - kind: 'Nodes Guru explorer', - url: 'https://nym.explorers.guru/', - tx_page: 'https://nym.explorers.guru/transaction/${txHash}', - account_page: 'https://nym.explorers.guru/account/${accountAddress}' + "kind": "Nodes Guru explorer", + "url": "https://nym.explorers.guru/", + "tx_page": "https://nym.explorers.guru/transaction/${txHash}", + "account_page": "https://nym.explorers.guru/account/${accountAddress}" }, { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/nyx', - tx_page: 'https://app.ezstaking.io/nyx/txs/${txHash}', - account_page: 'https://app.ezstaking.io/nyx/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/nyx", + "tx_page": "https://app.ezstaking.io/nyx/txs/${txHash}", + "account_page": "https://app.ezstaking.io/nyx/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/nyx', - tx_page: 'https://www.mintscan.io/nyx/transactions/${txHash}', - account_page: 'https://www.mintscan.io/nyx/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/nyx", + "tx_page": "https://www.mintscan.io/nyx/transactions/${txHash}", + "account_page": "https://www.mintscan.io/nyx/accounts/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/nyx', - tx_page: 'https://ping.pub/nyx/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/nyx", + "tx_page": "https://ping.pub/nyx/tx/${txHash}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/nym', - tx_page: 'https://bigdipper.live/nym/transactions/${txHash}', - account_page: 'https://bigdipper.live/nym/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/nym", + "tx_page": "https://bigdipper.live/nym/transactions/${txHash}", + "account_page": "https://bigdipper.live/nym/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png" } ] }, { - $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', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$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", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uocta', - fixed_min_gas_price: 0 + "denom": "uocta", + "fixed_min_gas_price": 0 } ] }, - codebase: { - git_repo: '', - recommended_version: '', - compatible_versions: [], - binaries: { - 'linux/amd64': '', - 'linux/arm64': '', - 'darwin/amd64': '', - 'windows/amd64': '' - }, - genesis: { - genesis_url: - 'https://octa-coin-assets.s3.eu-central-1.amazonaws.com/genesis.json' - } - }, - 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' + "codebase": {}, + "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" }, - peers: { - seeds: [], - persistent_peers: [] + "apis": { + "rpc": [], + "rest": [] }, - apis: { - rpc: [], - rest: [] - }, - 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}" } ], - images: [ + "images": [ { - 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' + "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: '../chain.schema.json', - chain_name: 'odin', - status: 'live', - network_type: 'mainnet', - website: 'https://odinprotocol.io/', - pretty_name: 'Odin Protocol', - chain_id: 'odin-mainnet-freya', - bech32_prefix: 'odin', - daemon_name: 'odind', - node_home: '$HOME/.odin', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'loki', - fixed_min_gas_price: 0.0125, - low_gas_price: 0.025, - average_gas_price: 0.05, - high_gas_price: 0.06 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "odin", + "status": "live", + "network_type": "mainnet", + "website": "https://odinprotocol.io/", + "pretty_name": "Odin Protocol", + "chain_id": "odin-mainnet-freya", + "bech32_prefix": "odin", + "daemon_name": "odind", + "node_home": "$HOME/.odin", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'loki' + "denom": "loki", + "fixed_min_gas_price": 0.0125, + "low_gas_price": 0.025, + "average_gas_price": 0.05, + "high_gas_price": 0.06 } ] }, - codebase: { - git_repo: 'https://github.com/ODIN-PROTOCOL/odin-core', - recommended_version: 'v0.6.2', - compatible_versions: ['v0.6.2'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/ODIN-PROTOCOL/networks/master/mainnets/odin-mainnet-freya/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.6.2', - recommended_version: 'v0.6.2', - compatible_versions: ['v0.6.2'] + "denom": "loki" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' - }, - peers: { - seeds: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:16856', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'odin-mainnet-seed.autostake.com:26766', - provider: 'AutoStake.net' - } - ], - persistent_peers: [ - { - id: '9d16b1ce74a34b869d69ad5fe34eaca614a36ecd', - address: '35.241.238.207: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: '0165cd0d60549a37abb00b6acc8227a54609c648', - address: '34.79.179.216:26656', - provider: 'Odin Protocol' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'odin-mainnet-peer.autostake.com:26766', - provider: 'AutoStake.net' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'http://34.79.179.216:26657', - provider: 'Odin Protocol' + "address": "http://34.79.179.216:26657", + "provider": "Odin Protocol" }, { - address: 'https://odin-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://odin-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://odin-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://odin-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], - rest: [ + "rest": [ { - address: 'http://34.79.179.216:1317/', - provider: 'Odin Protocol' + "address": "http://34.79.179.216:1317/", + "provider": "Odin Protocol" }, { - address: 'https://odin-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://odin-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://odin-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://odin-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], - grpc: [ + "grpc": [ { - address: 'odin-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "odin-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'odin-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "odin-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ] }, - 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}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'okexchain', - status: 'live', - network_type: 'mainnet', - pretty_name: 'OKExChain', - chain_id: 'exchain-66', - bech32_prefix: 'ex', - daemon_name: 'exchaind', - node_home: '$HOME/.exchaind', - slip44: 60, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "okexchain", + "status": "live", + "network_type": "mainnet", + "pretty_name": "OKExChain", + "chain_id": "exchain-66", + "bech32_prefix": "ex", + "daemon_name": "exchaind", + "node_home": "$HOME/.exchaind", + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'wei', - low_gas_price: 200000000, - average_gas_price: 250000000, - high_gas_price: 400000000 + "denom": "wei", + "low_gas_price": 200000000, + "average_gas_price": 250000000, + "high_gas_price": 400000000 } ] }, - codebase: { - git_repo: 'https://github.com/okex/exchain', - recommended_version: 'v1.6.1.1', - compatible_versions: ['v1.2.2', 'v1.6.1.1'], - binaries: {}, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/okx/mainnet/main/genesis.json' - }, - versions: [ - { - name: 'v1.6.1.1', - recommended_version: 'v1.6.1.1', - compatible_versions: ['v1.2.2', 'v1.6.1.1'], - binaries: {} - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png' - }, - peers: { - seeds: [ - { - id: 'e926c8154a2af4390de02303f0977802f15eafe2', - address: '3.16.103.80:26656', - provider: 'Chillcrypto' - }, - { - id: '7fa5b1d1f1e48659fa750b6aec702418a0e75f13', - address: '175.41.191.69:26656', - provider: 'Unique farming' - }, - { - id: 'c8f32b793871b56a11d94336d9ce6472f893524b', - address: '35.74.8.189:26656', - provider: 'DeLab' - } - ], - persistent_peers: [] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://exchaintmrpc.okex.org', - provider: 'okx chain' + "address": "https://exchaintmrpc.okex.org", + "provider": "okx chain" } ], - rest: [] + "rest": [] }, - explorers: [ + "explorers": [ { - kind: 'OKLink', - url: 'https://www.oklink.com/en/okc', - tx_page: 'https://www.oklink.com/en/okc/tx/${txHash}', - account_page: 'https://www.oklink.com/en/okc/address/${accountAddress}' + "kind": "OKLink", + "url": "https://www.oklink.com/en/okc", + "tx_page": "https://www.oklink.com/en/okc/tx/${txHash}", + "account_page": "https://www.oklink.com/en/okc/address/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'omniflixhub', - status: 'live', - network_type: 'mainnet', - website: 'https://omniflix.network/', - pretty_name: 'OmniFlix', - chain_id: 'omniflixhub-1', - daemon_name: 'omniflixhubd', - node_home: '$HOME/.omniflixhub', - bech32_prefix: 'omniflix', - slip44: 118, - codebase: { - git_repo: 'https://github.com/OmniFlix/omniflixhub', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - cosmos_sdk_version: 'v0.47.5', - ibc_go_version: 'v7.3.1', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/OmniFlix/mainnet/main/omniflixhub-1/genesis.json' - }, - versions: [ - { - name: 'v0.8.0', - recommended_version: 'v0.8.0', - compatible_versions: ['v0.8.0'], - cosmos_sdk_version: 'v0.45.10', - ibc_go_version: 'v3.3.1', - consensus: { - type: 'tendermint', - version: 'v0.34.22' - }, - next_version_name: 'v0.10.0' - }, - { - name: 'v0.10.0', - proposal: 6, - height: 6262420, - recommended_version: 'v0.10.0', - compatible_versions: ['v0.10.0'], - cosmos_sdk_version: 'v0.45.15', - ibc_go_version: 'v3.4.0', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - next_version_name: 'v0.11.0' - }, - { - name: 'v0.11.0', - proposal: 12, - height: 7339200, - recommended_version: 'v0.11.1', - compatible_versions: ['v0.11.1'], - cosmos_sdk_version: 'v0.45.16', - ibc_go_version: 'v4.4.2', - consensus: { - type: 'cometbft', - version: 'v0.34.28' - }, - next_version_name: 'v0.12.x' - }, - { - name: 'v0.12.x', - proposal: 15, - height: 8054200, - recommended_version: 'v0.12.1', - compatible_versions: ['v0.12.1'], - cosmos_sdk_version: 'v0.45.16', - ibc_go_version: 'v4.4.2', - consensus: { - type: 'cometbft', - version: 'v0.34.28' - }, - next_version_name: 'v2.0.0' - }, - { - name: 'v2.0.0', - proposal: 28, - height: 10428200, - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - cosmos_sdk_version: 'v0.47.5', - ibc_go_version: 'v7.3.1', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - next_version_name: '' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + "$schema": "../chain.schema.json", + "chain_name": "omniflixhub", + "status": "live", + "network_type": "mainnet", + "website": "https://omniflix.network/", + "pretty_name": "OmniFlix", + "chain_id": "omniflixhub-1", + "daemon_name": "omniflixhubd", + "node_home": "$HOME/.omniflixhub", + "bech32_prefix": "omniflix", + "slip44": 118, + "codebase": { + "cosmos_sdk_version": "v0.47.5" }, - fees: { - fee_tokens: [ - { - denom: 'uflix', - fixed_min_gas_price: 0, - low_gas_price: 0.001, - average_gas_price: 0.0025, - high_gas_price: 0.025 - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg" }, - staking: { - staking_tokens: [ + "fees": { + "fee_tokens": [ { - denom: 'uflix' + "denom": "uflix", + "fixed_min_gas_price": 0, + "low_gas_price": 0.001, + "average_gas_price": 0.0025, + "high_gas_price": 0.025 } ] }, - description: - 'Decentralized media and network layer for Creators & Sovereign Communities powered by NFTs and related distribution protocols.', - peers: { - seeds: [ - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:16956', - provider: 'RHINO' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'omniflixhub-mainnet-seed.autostake.com:27306', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:16956', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: '9aa8a73ea9364aa3cf7806d4dd25b6aed88d8152', - address: 'omniflix.seed.mzonder.com:10656', - provider: 'MZONDER' - }, - { - id: '6b0ffcce9b59b91ceb8eea5d4599e27707e3604a', - address: 'seeds.stakeup.tech:10215', - provider: 'StakeUp' - } - ], - persistent_peers: [ - { - id: '574b37cc6e80663e70673cbe848147c2643ca48e', - address: '35.240.187.174:26656' - }, + "staking": { + "staking_tokens": [ { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'omniflixhub-mainnet-peer.autostake.com:27306', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'd8e371758cdb310906bc32ba0bb922642bb33536', - address: '65.21.91.99:26756', - provider: 'Staketab' + "denom": "uflix" } ] }, - apis: { - rpc: [ + "description": "Decentralized media and network layer for Creators & Sovereign Communities powered by NFTs and related distribution protocols.", + "apis": { + "rpc": [ { - address: 'https://omniflix.kingnodes.com', - provider: 'kingnodes' + "address": "https://omniflix.kingnodes.com", + "provider": "kingnodes" }, { - address: 'https://rpc.omniflix.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.omniflix.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://rpc.omniflix.chaintools.tech/', - provider: 'ChainTools' + "address": "https://rpc.omniflix.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://rpc-omniflixhub-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-omniflixhub-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://omniflixhub-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://omniflixhub-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc.omniflix.silentvalidator.com/', - provider: 'silent' + "address": "https://rpc.omniflix.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://omniflixhub-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://omniflixhub-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rpc-omniflix.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rpc-omniflix.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://omniflix-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://omniflix-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://rpc-omniflixhub.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-omniflixhub.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://omniflix-rpc.dakshavalidator.in', - provider: 'Daksha Validator' + "address": "https://omniflix-rpc.dakshavalidator.in", + "provider": "Daksha Validator" }, { - address: 'https://rpc-omniflix.mzonder.com:443', - provider: 'MZONDER' + "address": "https://rpc-omniflix.mzonder.com:443", + "provider": "MZONDER" }, { - address: 'https://rpc.omniflix.stakeup.tech:443', - provider: 'StakeUp' + "address": "https://rpc.omniflix.stakeup.tech:443", + "provider": "StakeUp" }, { - address: 'https://rpc.omniflix.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.omniflix.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ + "rest": [ { - address: 'https://api.omniflix.nodestake.top', - provider: 'NodeStake' + "address": "https://api.omniflix.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://api-omniflixhub-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-omniflixhub-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://omniflixhub-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://omniflixhub-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-omniflixhub.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-omniflixhub.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://api.omniflix.silentvalidator.com/', - provider: 'silent' + "address": "https://api.omniflix.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://omniflix.kingnodes.com', - provider: 'kingnodes' + "address": "https://omniflix.kingnodes.com", + "provider": "kingnodes" }, { - address: 'https://omniflixhub-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://omniflixhub-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rest-omniflix.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rest-omniflix.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://omniflix-rest.staketab.org', - provider: 'Staketab' + "address": "https://omniflix-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://omniflix-api.dakshavalidator.in', - provider: 'Daksha Validator' + "address": "https://omniflix-api.dakshavalidator.in", + "provider": "Daksha Validator" }, { - address: 'http://omniflix.api.staking-explorer.com', - provider: 'Daily $FLIX DROP 💰' + "address": "http://omniflix.api.staking-explorer.com", + "provider": "Daily $FLIX DROP 💰" }, { - address: 'https://api.omniflix.stakeup.tech', - provider: 'StakeUp' + "address": "https://api.omniflix.stakeup.tech", + "provider": "StakeUp" }, { - address: 'https://lcd.omniflix.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.omniflix.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'grpc-omniflix.kingnodes.com:443', - provider: 'kingnodes' + "address": "grpc-omniflix.kingnodes.com:443", + "provider": "kingnodes" }, { - address: 'grpc.omniflix.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.omniflix.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'grpc-omniflixhub-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-omniflixhub-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'omniflixhub-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "omniflixhub-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'grpc-omniflixhub.cosmos-spaces.cloud:2230', - provider: 'Cosmos Spaces' + "address": "grpc-omniflixhub.cosmos-spaces.cloud:2230", + "provider": "Cosmos Spaces" }, { - address: 'omniflixhub-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "omniflixhub-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-omniflix.architectnodes.com:1443', - provider: 'Architect Nodes' + "address": "grpc-omniflix.architectnodes.com:1443", + "provider": "Architect Nodes" }, { - address: 'services.staketab.com:9015', - provider: 'Staketab' + "address": "services.staketab.com:9015", + "provider": "Staketab" }, { - address: 'grpc-omniflix.mzonder.com:443', - provider: 'MZONDER' + "address": "grpc-omniflix.mzonder.com:443", + "provider": "MZONDER" }, { - address: 'grpc.omniflix.stakeup.tech:443', - provider: 'StakeUp' + "address": "grpc.omniflix.stakeup.tech:443", + "provider": "StakeUp" }, { - address: 'https://grpc.omniflix.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.omniflix.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/omniflixhub', - tx_page: 'https://app.ezstaking.io/omniflixhub/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/omniflixhub/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/omniflixhub", + "tx_page": "https://app.ezstaking.io/omniflixhub/txs/${txHash}", + "account_page": "https://app.ezstaking.io/omniflixhub/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/omniflix', - tx_page: 'https://www.mintscan.io/omniflix/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/omniflix/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/omniflix", + "tx_page": "https://www.mintscan.io/omniflix/transactions/${txHash}", + "account_page": "https://www.mintscan.io/omniflix/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/omniflixhub', - tx_page: 'https://atomscan.com/omniflixhub/transactions/${txHash}', - account_page: - 'https://atomscan.com/omniflixhub/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/omniflixhub", + "tx_page": "https://atomscan.com/omniflixhub/transactions/${txHash}", + "account_page": "https://atomscan.com/omniflixhub/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'onomy', - status: 'live', - network_type: 'mainnet', - website: 'https://onomy.io/', - pretty_name: 'Onomy', - chain_id: 'onomy-mainnet-1', - bech32_prefix: 'onomy', - daemon_name: 'onomyd', - node_home: '$HOME/.onomyd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'anom', - low_gas_price: 0, - average_gas_price: 0.03, - high_gas_price: 0.06 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'anom' - } - ] - }, - codebase: { - git_repo: 'https://github.com/onomyprotocol/onomy', - recommended_version: 'v1.0.1', - compatible_versions: ['v1.0.1'], - binaries: { - 'linux/amd64': - 'https://github.com/onomyprotocol/onomy/releases/download/v1.0.1/onomyd', - 'linux/arm64': - 'https://github.com/onomyprotocol/onomy/releases/download/v1.0.1/onomyd-arm' - }, - cosmos_sdk_version: '0.44', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '2.0.4', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/onomyprotocol/onomy/main/genesis/mainnet/genesis-mainnet-1.json' - }, - versions: [ - { - name: 'v1.0.1', - recommended_version: 'v1.0.1', - compatible_versions: ['v1.0.1'], - cosmos_sdk_version: '0.44', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '2.0.4', - binaries: { - 'linux/amd64': - 'https://github.com/onomyprotocol/onomy/releases/download/v1.0.1/onomyd', - 'linux/arm64': - 'https://github.com/onomyprotocol/onomy/releases/download/v1.0.1/onomyd-arm' - } + "$schema": "../chain.schema.json", + "chain_name": "onomy", + "status": "live", + "network_type": "mainnet", + "website": "https://onomy.io/", + "pretty_name": "Onomy", + "chain_id": "onomy-mainnet-1", + "bech32_prefix": "onomy", + "daemon_name": "onomyd", + "node_home": "$HOME/.onomyd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "anom", + "low_gas_price": 0, + "average_gas_price": 0.03, + "high_gas_price": 0.06 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png' - }, - peers: { - seeds: [ - { - id: '211535f9b799bcc8d46023fa180f3359afd4c1d3', - address: '44.213.44.5:26656', - provider: 'onomy' - }, - { - id: 'cd9a47cebe8eef076a5795e1b8460a8e0b2384e5', - address: '3.210.0.126:26656', - provider: 'onomy' - } - ], - persistent_peers: [ - { - id: 'c213f678b9e3b7c37b9229318b3e27b95c9d5af4', - address: '52.70.182.125:26656', - provider: 'WhisperNode 🤐' - }, + "staking": { + "staking_tokens": [ { - id: '00ce2f84f6b91639a7cedb2239e38ffddf9e36de', - address: '44.195.221.88:26656', - provider: 'cosmostation' + "denom": "anom" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.44" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png" + }, + "apis": { + "rpc": [ { - address: 'https://rpc-mainnet.onomy.io', - provider: 'onomy' + "address": "https://rpc-mainnet.onomy.io", + "provider": "onomy" } ], - rest: [ + "rest": [ { - address: 'https://rest-mainnet.onomy.io', - provider: 'onomy' + "address": "https://rest-mainnet.onomy.io", + "provider": "onomy" } ], - grpc: [] + "grpc": [] }, - explorers: [ + "explorers": [ { - kind: 'Big Dipper', - url: 'https://explorer.onomy.io', - tx_page: 'https://explorer.onomy.io/transactions/${txHash}' + "kind": "Big Dipper", + "url": "https://explorer.onomy.io", + "tx_page": "https://explorer.onomy.io/transactions/${txHash}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/onomy-protocol', - tx_page: - 'https://www.mintscan.io/onomy-protocol/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/onomy-protocol/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/onomy-protocol", + "tx_page": "https://www.mintscan.io/onomy-protocol/transactions/${txHash}", + "account_page": "https://www.mintscan.io/onomy-protocol/accounts/${accountAddress}" } ], - keywords: ['dex', 'stablecoin', 'bridge', 'staking'], - images: [ + "keywords": [ + "dex", + "stablecoin", + "bridge", + "staking" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'oraichain', - status: 'live', - network_type: 'mainnet', - website: 'https://orai.io/', - pretty_name: 'Oraichain', - chain_id: 'Oraichain', - bech32_prefix: 'orai', - daemon_name: 'oraid', - node_home: '$WORKSPACE/.oraid', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'orai', - fixed_min_gas_price: 0, - low_gas_price: 0.003, - average_gas_price: 0.005, - high_gas_price: 0.007 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'orai' - } - ] - }, - codebase: { - git_repo: 'https://github.com/oraichain/orai', - recommended_version: 'v0.41.4', - compatible_versions: ['v0.41.3', 'v0.41.4'], - binaries: { - 'linux/amd64': - 'https://github.com/oraichain/orai/releases/download/v0.41.4/oraid' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/oraichain/oraichain-static-files/master/mainnet-static-files/genesis.json' - }, - versions: [ - { - name: 'v0.40.3', - 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", + "website": "https://orai.io/", + "pretty_name": "Oraichain", + "chain_id": "Oraichain", + "bech32_prefix": "orai", + "daemon_name": "oraid", + "node_home": "$WORKSPACE/.oraid", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v0.41.4', - height: 13567875, - proposal: 197, - recommended_version: 'v0.41.4', - compatible_versions: ['v0.41.3', 'v0.41.4'], - binaries: { - 'linux/amd64': - 'https://orai.s3.us-east-2.amazonaws.com/v0.41.4/oraid' - } + "denom": "orai", + "fixed_min_gas_price": 0, + "low_gas_price": 0.003, + "average_gas_price": 0.005, + "high_gas_price": 0.007 } ] }, - 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' - }, - peers: { - seeds: [ - { - id: '0baa806b3a4dd17be6e06369d899f140c3897d6e', - address: '18.223.242.70:26656', - provider: 'oraichain-team' - }, - { - id: '9749da4a81526266d7b8fe9a03d260cd3db241ad', - address: '18.116.209.76:26656', - provider: 'oraichain-team' - }, - { - id: '35c1f999d67de56736b412a1325370a8e2fdb34a', - address: '5.189.169.99:26656', - provider: 'ORAI Vanguard' - }, - { - id: '5ad3b29bf56b9ba95c67f282aa281b6f0903e921', - address: '64.225.53.108:26656', - provider: 'oraichain-team' - }, - { - id: 'd091cabe3584cb32043cc0c9199b0c7a5b68ddcb', - address: 'seed.orai.synergynodes.com:26656', - provider: 'synergynodes' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'oraichain-mainnet-seed.autostake.com:27436', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'f223f1be06ef35a6dfe54995f05daeb1897d94d7', - address: 'seed-node.mms.team:42656', - provider: 'MMS' - } - ], - persistent_peers: [ + "staking": { + "staking_tokens": [ { - id: '0baa806b3a4dd17be6e06369d899f140c3897d6e', - address: '18.223.242.70:26656' - }, - { - id: '9749da4a81526266d7b8fe9a03d260cd3db241ad', - address: '18.116.209.76:26656' - }, - { - id: '35c1f999d67de56736b412a1325370a8e2fdb34a', - address: '5.189.169.99:26656' - }, - { - id: '5ad3b29bf56b9ba95c67f282aa281b6f0903e921', - address: '64.225.53.108:26656' - }, - { - id: 'd091cabe3584cb32043cc0c9199b0c7a5b68ddcb', - address: 'seed.orai.synergynodes.com:26656', - provider: 'synergynodes' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'oraichain-mainnet-peer.autostake.com:27436', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'c14df7b2e097d743aa7574c7cf65397a06ea3833', - address: 'peer-oraichain.mms.team:56103', - provider: 'MMS' + "denom": "orai" } ] }, - apis: { - rpc: [ + "codebase": {}, + "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" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.orai.io', - provider: 'oraichain-team' + "address": "https://rpc.orai.io", + "provider": "oraichain-team" }, { - address: 'https://rpc-orai.nodine.id/', - provider: 'Nodine.ID' + "address": "https://rpc-orai.nodine.id/", + "provider": "Nodine.ID" }, { - address: 'https://oraichain-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://oraichain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rpc-oraichain.mms.team', - provider: 'MMS' + "address": "https://rpc-oraichain.mms.team", + "provider": "MMS" }, { - address: 'https://rpc-orai.blockval.io/', - provider: 'Blockval' + "address": "https://rpc-orai.blockval.io/", + "provider": "Blockval" } ], - rest: [ + "rest": [ { - address: 'http://lcd.orai.io', - provider: 'oraichain-team' + "address": "http://lcd.orai.io", + "provider": "oraichain-team" }, { - address: 'https://oraichain-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://oraichain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://api-oraichain.mms.team', - provider: 'MMS' + "address": "https://api-oraichain.mms.team", + "provider": "MMS" }, { - address: 'https://api-orai.blockval.io', - provider: 'Blockval' + "address": "https://api-orai.blockval.io", + "provider": "Blockval" } ], - grpc: [ + "grpc": [ { - address: 'grpc-oraichain.mms.team:443', - provider: 'MMS' + "address": "grpc-oraichain.mms.team:443", + "provider": "MMS" }, { - address: 'oraichain-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "oraichain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-orai.blockval.io:9390', - provider: 'Blockval' + "address": "grpc-orai.blockval.io:9390", + "provider": "Blockval" } ] }, - 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}" }, { - kind: 'Nodine Explorer', - url: 'https://explorer.co.id/orai', - tx_page: 'https://explorer.co.id/orai/tx/${txHash}' + "kind": "Nodine Explorer", + "url": "https://explorer.co.id/orai", + "tx_page": "https://explorer.co.id/orai/tx/${txHash}" }, { - kind: 'Blockval Explorer', - url: 'https://explorer.blockval.io/oraichain', - tx_page: 'https://explorer.blockval.io/oraichain/tx/${txHash}' + "kind": "Blockval Explorer", + "url": "https://explorer.blockval.io/oraichain", + "tx_page": "https://explorer.blockval.io/oraichain/tx/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/orai', - tx_page: 'https://atomscan.com/orai/transactions/${txHash}', - account_page: 'https://atomscan.com/orai/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/orai", + "tx_page": "https://atomscan.com/orai/transactions/${txHash}", + "account_page": "https://atomscan.com/orai/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'osmosis', - status: 'live', - network_type: 'mainnet', - website: 'https://osmosis.zone/', - update_link: - 'https://raw.githubusercontent.com/osmosis-labs/osmosis/main/chain.schema.json', - pretty_name: 'Osmosis', - chain_id: 'osmosis-1', - bech32_prefix: 'osmo', - daemon_name: 'osmosisd', - node_home: '$HOME/.osmosisd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uosmo', - fixed_min_gas_price: 0.0025, - low_gas_price: 0.0025, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uosmo' - } - ], - lock_duration: { - time: '1209600s' - } - }, - codebase: { - git_repo: 'https://github.com/osmosis-labs/osmosis', - recommended_version: 'v20.5.0', - compatible_versions: ['v20.5.0'], - binaries: { - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-amd64', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-arm64' - }, - cosmos_sdk_version: - 'osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230922030206-734f99fba785', - consensus: { - type: 'tendermint', - version: '0.38.0' - }, - cosmwasm_version: 'osmosis-labs/wasmd@0.31.0-osmo-v16', - cosmwasm_enabled: true, - ibc_go_version: '4.5.1', - ics_enabled: ['ics20-1'], - genesis: { - name: 'v3', - genesis_url: - 'https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json' - }, - versions: [ - { - name: 'v3', - tag: 'v3.1.0', - height: 0, - binaries: { - 'darwin/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v3.1.0/osmosisd-3.1.0-darwin-amd64?checksum=sha256:a532f25ae754d2573f6a3c91ba59496ddb9f6766ccf6f69f408f6e1597144a74', - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v3.1.0/osmosisd-3.1.0-linux-amd64?checksum=sha256:6a73d75e9c75ea402c13edc8c5c4ed08e26c5d8e517d540a9ca8b7e7afa67f79', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v3.1.0/osmosisd-3.1.0-linux-arm64?checksum=sha256:893f8a9786ae76d4217260201cd94ab67010f68d98b9676a9b31c0a5e68d1eae' - }, - next_version_name: 'v4' - }, - { - name: 'v4', - tag: 'v4.2.0', - height: 1314500, - binaries: { - 'darwin/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v4.2.0/osmosisd-4.2.0-darwin-amd64?checksum=sha256:eee08350b223dd06a2aa16aab44aa51eb116f6267924ee1e788ca28fb54fe02d', - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v4.2.0/osmosisd-4.2.0-linux-amd64?checksum=sha256:a11c61a737983d176f23ce83fa5ff985000ce8d5107d738ee6fa7d59b8dd3053', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v4.2.0/osmosisd-4.2.0-linux-arm64?checksum=sha256:41260be15e874fbc6cc49757d9fe3d4e459634729e2b745923e508e9cb26f837' - }, - next_version_name: 'v5' - }, - { - name: 'v5', - tag: 'v6.4.0', - height: 2383300, - binaries: { - 'darwin/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v6.4.0/osmosisd-6.4.0-darwin-amd64?checksum=sha256:735c7828b0bc311381f4c18081fa648f849df03aeccf173425cc52a634e3c7d8', - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v6.4.0/osmosisd-6.4.0-linux-amd64?checksum=sha256:e4017da5d1a0a3b37b4f6936ba7ef16f39972ae25f95feae43e506f14933cf94', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v6.4.0/osmosisd-6.4.0-linux-arm64?checksum=sha256:a101bb3feb0419293a3ecee17d732a312bf9e864a829905ed509c65b5944040b' - }, - next_version_name: 'v7' - }, - { - name: 'v7', - tag: 'v8.0.0', - height: 3401000, - binaries: { - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v8.0.0/osmosisd-8.0.0-linux-amd64?checksum=sha256:4559ffe7d1e83b1519c2d45a709d35a89b51f8b35f8bba3b58aef92e667e254c' - }, - next_version_name: 'v9' - }, - { - name: 'v9', - tag: 'v10.1.1', - height: 4707300, - binaries: { - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v10.1.1/osmosisd-10.1.1-linux-amd64?checksum=sha256:aeae58f8b0be86d5e6e3aec1a8774eab4947207c88c7d4f309c46da98f6694e8', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v10.1.1/osmosisd-10.1.1-linux-arm64?checksum=sha256:d2c672ffa9782687f91d8d03bd23fdf8bd2fbe8b79c9cfcf8e9d302a1238a12c' - }, - next_version_name: 'v11' - }, - { - name: 'v11', - tag: 'v11.0.1', - height: 5432450, - binaries: { - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v11.0.1/osmosisd-11.0.1-linux-amd64?checksum=sha256:41b8fd2345a5e5b77ee5ed9b9ec5370d94bd1b1aa0d4ac2ac0ab02ee98ddd0d8', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v11.0.1/osmosisd-11.0.1-linux-arm64?checksum=sha256:267776170495ecaa831238ea8994f8790a379663c9ae47a2e93e5beceafd8e1d' - }, - next_version_name: 'v12' - }, - { - name: 'v12', - tag: 'v12.3.0', - height: 6246000, - binaries: { - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v12.3.0/osmosisd-12.3.0-linux-amd64?checksum=sha256:958210c919d13c281896fa9773c323c5534f0fa46d74807154f737609a00db70', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v12.3.0/osmosisd-12.3.0-linux-arm64?checksum=sha256:a931618c8a839c30e5cecfd2a88055cda1d68cc68557fe3303fe14e2de3bef8f' - }, - next_version_name: 'v13' - }, - { - name: 'v13', - tag: 'v13.1.2', - height: 7241500, - binaries: { - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v13.1.2/osmosisd-13.1.2-linux-amd64?checksum=sha256:67ed53046667c72ec6bfe962bcb4d6b122610876b3adf75fb7820ce52c34872d', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v13.1.2/osmosisd-13.1.2-linux-arm64?checksum=sha256:ad35c2a8d55852fa28187a55bdeb983494c07923f2a8a9f4479fb044d8d62bd9' - }, - next_version_name: 'v14' - }, - { - name: 'v14', - tag: 'v14.0.1', - height: 7937500, - binaries: { - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v14.0.1/osmosisd-14.0.1-linux-amd64?checksum=sha256:2cc4172bcf000f0f06b30b16864d875a8de2ee12df994a593dfd52a506851bce', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v14.0.1/osmosisd-14.0.1-linux-arm64?checksum=sha256:9a44c17d239c8d9afd19d0ff0bd14ca883fb9e9fbf69aff18c2607ffa6bff378' - }, - next_version_name: 'v15' - }, - { - name: 'v15', - tag: 'v15.2.0', - height: 8732500, - recommended_version: 'v15.2.0', - compatible_versions: ['v15.2.0', 'v15.1.2', 'v15.0.0'], - cosmos_sdk_version: '0.46.10', - consensus: { - type: 'tendermint', - version: '0.34.24' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '4.3.1', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v15.2.0/osmosisd-15.2.0-linux-amd64?checksum=sha256:3aab2f2668cb5a713d5770e46a777ef01c433753378702d9ae941aa2d1ee5618', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v15.2.0/osmosisd-15.2.0-linux-arm64?checksum=sha256:e158d30707a0ea51482237f99676223e81ce5a353966a5c83791d2662a930f35' - }, - next_version_name: 'v16' - }, - { - name: 'v16', - tag: 'v16.1.1', - height: 10517000, - recommended_version: 'v16.1.1', - compatible_versions: ['v16.1.0', 'v16.1.1'], - cosmos_sdk_version: - 'osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230703010110-ed4eb883f2a6', - consensus: { - type: 'tendermint', - version: 'informalsystems/tendermint@0.34.24' - }, - cosmwasm_version: 'osmosis-labs/wasmd@0.31.0-osmo-v16', - cosmwasm_enabled: true, - ibc_go_version: '4.3.1', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-linux-arm64?checksum=sha256:b96ff1f4c9b4abecb1b38998b1a1f891cfed2cc8078ab64914b151183c0c199b', - 'darwin/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-darwin-arm64?checksum=sha256:c743da4d3632a2bc3ea0ce784bbd13383492a4a34d53295eb2c96987bacf8e8c', - 'darwin/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-darwin-amd64?checksum=sha256:d856ebda9c31f052d10a78443967a93374f2033292f0afdb6434b82b4ed79790', - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v16.1.1/osmosisd-16.1.1-linux-amd64?checksum=sha256:f838618633c1d42f593dc33d26b25842f5900961e987fc08570bb81a062e311d' - }, - next_version_name: 'v17' - }, - { - name: 'v17', - tag: 'v17.0.0', - height: 11126100, - recommended_version: 'v17.0.0', - compatible_versions: ['v17.0.0'], - cosmos_sdk_version: - 'osmosis-labs/cosmos-sdk@v0.45.0-rc1.0.20230703010110-ed4eb883f2a6', - consensus: { - type: 'tendermint', - version: 'informalsystems/tendermint@0.34.24' - }, - cosmwasm_version: 'osmosis-labs/wasmd@0.31.0-osmo-v16', - cosmwasm_enabled: true, - ibc_go_version: '4.3.1', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-linux-arm64?checksum=sha256:d5eeab6a15e2acd7e24e7caf4fe3336c35367ff376da6299d404defd09ce52f9', - 'darwin/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-darwin-arm64?checksum=sha256:5ca1b120a62ba473e7772682d89db949ae67aa10dc9bf4629b0022a95e7ff1df', - 'darwin/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-darwin-amd64?checksum=sha256:b5e4deb0d659eeeaee791dab765433bdb8d6a7e37d909628e0f9becb7d1f154b', - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v17.0.0/osmosisd-17.0.0-linux-amd64?checksum=sha256:d7fe62ae33cf2f0b48a17eb8b02644dadd9924f15861ed622cd90cb1a038135b' - }, - next_version_name: 'v18' - }, - { - name: 'v18', - tag: 'v18.0.0', - height: 11155350, - recommended_version: 'v18.0.0', - compatible_versions: ['v18.0.0'], - cosmos_sdk_version: - 'osmosis-labs/cosmos-sdk@v0.45.0-rc1.0.20230703010110-ed4eb883f2a6', - consensus: { - type: 'tendermint', - version: 'informalsystems/tendermint@0.34.24' - }, - cosmwasm_version: 'osmosis-labs/wasmd@0.31.0-osmo-v16', - cosmwasm_enabled: true, - ibc_go_version: '4.3.1', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-arm64?checksum=sha256:4331f9a318f6dd2f012c36f6ef19af8378fd1e9bc85c751e3f56f7018176ed58', - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v18.0.0/osmosisd-18.0.0-linux-amd64?checksum=sha256:9a98a57946e936e7380ae897a205b4e18a188332e91ca84a1f62c21cbb437845' - }, - next_version_name: 'v19' - }, - { - name: 'v19', - tag: 'v19.2.0', - height: 11317300, - recommended_version: 'v19.2.0', - compatible_versions: ['v19.2.0', 'v19.1.0', 'v19.0.0'], - cosmos_sdk_version: - 'osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230927020814-2854ac001f06', - consensus: { - type: 'tendermint', - version: 'informalsystems/tendermint@0.34.24' - }, - cosmwasm_version: 'osmosis-labs/wasmd@0.31.0-osmo-v16', - cosmwasm_enabled: true, - ibc_go_version: '4.3.1', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v19.2.0/osmosisd-19.2.0-linux-amd64?checksum=sha256:723ff1c5349eb3c039c3dc5f55895bbde2e1499fe7c0a96960cc6fadeec814c4', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v19.2.0/osmosisd-19.2.0-linux-arm64?checksum=sha256:d933b893d537422164a25bf161d7f269a59ea26d37f398cdb7dd575a9ec33ed2' - }, - next_version_name: 'v20' - }, - { - name: 'v20', - tag: 'v20.5.0', - height: 12028900, - recommended_version: 'v20.5.0', - compatible_versions: ['v20.5.0'], - cosmos_sdk_version: - 'osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230922030206-734f99fba785', - consensus: { - type: 'tendermint', - version: '0.38.0' - }, - cosmwasm_version: 'osmosis-labs/wasmd@0.31.0-osmo-v16', - cosmwasm_enabled: true, - ibc_go_version: '4.5.1', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-amd64?checksum=sha256:f9ff6176e32499f22b20288c71dbc802556eb5399baef23de164fe6158a55a69', - 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v20.5.0/osmosisd-20.5.0-linux-arm64?checksum=sha256:99359257ff81d21b55b685924a74473d532cbc5af196a672a784bf13dad06d26' - } + "$schema": "../chain.schema.json", + "chain_name": "osmosis", + "status": "live", + "network_type": "mainnet", + "website": "https://osmosis.zone/", + "update_link": "https://raw.githubusercontent.com/osmosis-labs/osmosis/main/chain.schema.json", + "pretty_name": "Osmosis", + "chain_id": "osmosis-1", + "bech32_prefix": "osmo", + "daemon_name": "osmosisd", + "node_home": "$HOME/.osmosisd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uosmo", + "fixed_min_gas_price": 0.0025, + "low_gas_price": 0.0025, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - images: [ + "staking": { + "staking_tokens": [ + { + "denom": "uosmo" + } + ], + "lock_duration": { + "time": "1209600s" + } + }, + "codebase": { + "cosmos_sdk_version": "osmosis-labs/cosmos-sdk@0.45.0-rc1.0.20230922030206-734f99fba785", + "cosmwasm_enabled": true, + "cosmwasm_version": "osmosis-labs/wasmd@0.31.0-osmo-v16" + }, + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png', - theme: { - primary_color_hex: '#231D4B' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png", + "theme": { + "primary_color_hex": "#231D4B" }, - layout: 'logo', - text_position: 'right' + "layout": "logo", + "text_position": "right" }, { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg', - layout: 'logomark' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg", + "layout": "logomark" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png' - }, - description: - 'Osmosis (OSMO) is the premier DEX and cross-chain DeFi hub within the Cosmos ecosystem, a network of over 50 sovereign, interoperable blockchains seamlessly connected through the Inter-Blockchain Communication Protocol (IBC). Pioneering in its approach, Osmosis offers a dynamic trading and liquidity provision experience, integrating non-IBC assets from other ecosystems, including Ethereum, Solana, Avalanche, and Polkadot. Initially adopting Balancer-style pools, Osmosis now also features a concentrated liquidity model that is orders of magnitude more capital efficient, meaning that significantly less liquidity is required to handle the same amount of trading volume with minimal slippage.\n\nAs a true appchain, Osmosis has greater control over the full blockchain stack than traditional smart contract DEXs, which must follow the code of the parent chain that it is built on. This fine-grained control has enabled, for example, the development of Superfluid Staking, an extension of Proof of Stake that allows assets at the application layer to be staked to secure the chain. The customizability of appchains also allows implementing features like the Protocol Revenue module, which enables Osmosis to conduct on-chain arbitrage on behalf of OSMO stakers, balancing prices across pools while generating real yield revenue from this volume. Additionally, as a sovereign appchain, Osmosis governance can vote on upgrades to the protocol. One example of this was the introduction of a Taker Fee, which switched on the collection of exchange fees to generate diverse yield from Osmosis volume and distribute it to OSMO stakers.\n\nOsmosis is bringing the full centralized exchange experience to the decentralized world by building a cross-chain native DEX and trading suite that connects all chains over IBC, including Ethereum and Bitcoin. To reach this goal, Osmosis hosts an ever-expanding suite of DeFi applications aimed at providing a one-stop experience that includes lending, credit, margin, DeFi strategy vaults, power perps, fiat on-ramps, NFTs, stablecoins, and more — all of the functionalities that centralized exchange offer and more, in the trust-minimized environment of decentralized finance.', - peers: { - seeds: [ - { - id: 'f515a8599b40f0e84dfad935ba414674ab11a668', - address: 'osmosis.blockpane.com:26656', - provider: 'blockpane' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:12556', - provider: 'Polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:12556', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'osmosis-mainnet-seed.autostake.com:26716', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '3cc024d1c760c9cd96e6413abaf3b36a8bdca58e', - address: 'seeds.goldenratiostaking.net:1630', - provider: 'Golden Ratio Staking' - }, - { - id: 'e891d42c31064fb7e0d99839536164473c4905c2', - address: 'seed-osmosis.freshstaking.com:31656', - provider: 'FreshSTAKING' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:12556', - provider: 'WhisperNode 🤐' - }, - { - id: '38ab18cb2ea1dfeb6232b429e1508f56b6ae5031', - address: 'seed-osmosis-01.stakeflow.io:65535', - provider: 'Stakeflow' - }, - { - id: '954ab3a0551b592b654b1554af8fc8746ed7b362', - address: 'seed-node.mms.team:31656', - provider: 'MMS' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: '2cb8dd6195c65458e3c18505bb70ce2ff624f85c', - address: 'seed.osmosis.validatus.com:2000', - provider: 'Validatus' - } - ], - persistent_peers: [ - { - id: '4d9ac3510d9f5cfc975a28eb2a7b8da866f7bc47', - address: '37.187.38.191:26656', - provider: 'stakelab' - }, - { - id: '2f9c16151400d8516b0f58c030b3595be20b804c', - address: '37.120.245.167:26656', - provider: 'syncnode' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'osmosis-mainnet-peer.autostake.com:26716', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'e891d42c31064fb7e0d99839536164473c4905c2', - address: 'seed-osmosis.freshstaking.com:31656', - provider: 'FreshSTAKING' - }, - { - id: '38ab18cb2ea1dfeb6232b429e1508f56b6ae5031', - address: 'peer-osmosis-01.stakeflow.io:65535', - provider: 'Stakeflow' - }, - { - id: '6f1d92857e39a6f26a3a914f807064824c255939', - address: '65.21.91.99:16956', - provider: 'Staketab' - }, - { - id: '50d0865decf5657eaf8e50e51bd9d8ce5f927f6c', - address: 'peer-osmosis.mms.team:56102', - provider: 'MMS' - }, - { - id: 'b95edbc3337a6fdd672cd6af2790c0e9ade2c4dd', - address: '65.108.195.213:41656', - provider: 'StakeTown' - }, - { - id: '10539f7c0e3ab233cf0deec9930aa8b660aeeabf', - address: 'osmosis-mainnet.peers.l0vd.com:12656', - provider: 'L0vd.com ❤️' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png" }, - apis: { - rpc: [ + "description": "Osmosis (OSMO) is the premier DEX and cross-chain DeFi hub within the Cosmos ecosystem, a network of over 50 sovereign, interoperable blockchains seamlessly connected through the Inter-Blockchain Communication Protocol (IBC). Pioneering in its approach, Osmosis offers a dynamic trading and liquidity provision experience, integrating non-IBC assets from other ecosystems, including Ethereum, Solana, Avalanche, and Polkadot. Initially adopting Balancer-style pools, Osmosis now also features a concentrated liquidity model that is orders of magnitude more capital efficient, meaning that significantly less liquidity is required to handle the same amount of trading volume with minimal slippage.\n\nAs a true appchain, Osmosis has greater control over the full blockchain stack than traditional smart contract DEXs, which must follow the code of the parent chain that it is built on. This fine-grained control has enabled, for example, the development of Superfluid Staking, an extension of Proof of Stake that allows assets at the application layer to be staked to secure the chain. The customizability of appchains also allows implementing features like the Protocol Revenue module, which enables Osmosis to conduct on-chain arbitrage on behalf of OSMO stakers, balancing prices across pools while generating real yield revenue from this volume. Additionally, as a sovereign appchain, Osmosis governance can vote on upgrades to the protocol. One example of this was the introduction of a Taker Fee, which switched on the collection of exchange fees to generate diverse yield from Osmosis volume and distribute it to OSMO stakers.\n\nOsmosis is bringing the full centralized exchange experience to the decentralized world by building a cross-chain native DEX and trading suite that connects all chains over IBC, including Ethereum and Bitcoin. To reach this goal, Osmosis hosts an ever-expanding suite of DeFi applications aimed at providing a one-stop experience that includes lending, credit, margin, DeFi strategy vaults, power perps, fiat on-ramps, NFTs, stablecoins, and more — all of the functionalities that centralized exchange offer and more, in the trust-minimized environment of decentralized finance.", + "apis": { + "rpc": [ { - address: 'https://rpc.osmosis.zone/', - provider: 'Osmosis Foundation' + "address": "https://rpc.osmosis.zone/", + "provider": "Osmosis Foundation" }, { - address: 'https://rpc-osmosis.blockapsis.com', - provider: 'chainapsis' + "address": "https://rpc-osmosis.blockapsis.com", + "provider": "chainapsis" }, { - address: 'https://osmosis-rpc.onivalidator.com', - provider: 'Oni Validator ⛩️' + "address": "https://osmosis-rpc.onivalidator.com", + "provider": "Oni Validator ⛩️" }, { - address: 'https://osmosis-rpc.quickapi.com:443', - provider: 'Chainlayer' + "address": "https://osmosis-rpc.quickapi.com:443", + "provider": "Chainlayer" }, { - address: 'https://rpc-osmosis.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-osmosis.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://osmosis-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://osmosis-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-osmosis.ecostake.com', - provider: 'ecostake' + "address": "https://rpc-osmosis.ecostake.com", + "provider": "ecostake" }, { - address: 'https://rpc-osmosis.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-osmosis.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://osmosis-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://osmosis-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc-osmosis-ia.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://rpc-osmosis-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'https://osmosis.rpc.stakin-nodes.com', - provider: 'Stakin' + "address": "https://osmosis.rpc.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'https://osmosis-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://osmosis-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://osmosis.api.onfinality.io/public', - provider: 'OnFinality' + "address": "https://osmosis.api.onfinality.io/public", + "provider": "OnFinality" }, { - address: 'https://rpc-osmosis-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-osmosis-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://osmosis-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://osmosis-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://rpc-osmosis.mms.team', - provider: 'MMS' + "address": "https://rpc-osmosis.mms.team", + "provider": "MMS" }, { - address: 'https://osmosis-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://osmosis-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://community.nuxian-node.ch:6797/osmosis/trpc', - provider: 'PRO Delegators' + "address": "https://community.nuxian-node.ch:6797/osmosis/trpc", + "provider": "PRO Delegators" }, { - address: 'http://rpc-osmosis.freshstaking.com:31657', - provider: 'FreshSTAKING' + "address": "http://rpc-osmosis.freshstaking.com:31657", + "provider": "FreshSTAKING" }, { - address: 'https://osmosis-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://osmosis-rpc.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://osmosis-mainnet.rpc.l0vd.com:443', - provider: 'L0vd.com ❤️' + "address": "https://osmosis-mainnet.rpc.l0vd.com:443", + "provider": "L0vd.com ❤️" }, { - address: 'https://osmosis-rpc.reece.sh', - provider: 'Reecepbcups' + "address": "https://osmosis-rpc.reece.sh", + "provider": "Reecepbcups" }, { - address: 'https://rpc.osmosis.validatus.com', - provider: 'Validatus' + "address": "https://rpc.osmosis.validatus.com", + "provider": "Validatus" }, { - address: 'https://rpc.osmosis.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.osmosis.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ - { - address: 'https://lcd.osmosis.zone/', - provider: 'Osmosis Foundation' - }, + "rest": [ { - address: 'https://osmosis-lcd.quickapi.com:443', - provider: 'Chainlayer' + "address": "https://lcd.osmosis.zone/", + "provider": "Osmosis Foundation" }, { - address: 'https://lcd-osmosis.blockapsis.com', - provider: 'chainapsis' + "address": "https://osmosis-lcd.quickapi.com:443", + "provider": "Chainlayer" }, { - address: 'https://osmosis-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://lcd-osmosis.blockapsis.com", + "provider": "chainapsis" }, { - address: 'https://rest-osmosis.ecostake.com', - provider: 'ecostake' + "address": "https://osmosis-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-osmosis-ia.cosmosia.notional.ventures', - provider: 'Notional' + "address": "https://rest-osmosis.ecostake.com", + "provider": "ecostake" }, { - address: 'https://api-osmosis.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-osmosis-ia.cosmosia.notional.ventures", + "provider": "Notional" }, { - address: 'https://osmosis-api.polkachu.com', - provider: 'Polkachu' + "address": "https://api-osmosis.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://osmosis.rest.stakin-nodes.com', - provider: 'Stakin' + "address": "https://osmosis-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://osmosis-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://osmosis.rest.stakin-nodes.com", + "provider": "Stakin" }, { - address: 'https://api-osmosis-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://osmosis-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://osmosis-api.w3coins.io', - provider: 'w3coins' + "address": "https://api-osmosis-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://lcd-osmosis.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://osmosis-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://api-osmosis.mms.team', - provider: 'MMS' + "address": "https://lcd-osmosis.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://osmosis-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://api-osmosis.mms.team", + "provider": "MMS" }, { - address: 'https://community.nuxian-node.ch:6797/osmosis/crpc', - provider: 'PRO Delegators' + "address": "https://osmosis-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://osmosis-api.stake-town.com', - provider: 'StakeTown' + "address": "https://community.nuxian-node.ch:6797/osmosis/crpc", + "provider": "PRO Delegators" }, { - address: 'https://osmosis-mainnet.api.l0vd.com:443', - provider: 'L0vd.com ❤️' + "address": "https://osmosis-api.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://osmosis-api.reece.sh', - provider: 'Reecepbcups' + "address": "https://osmosis-mainnet.api.l0vd.com:443", + "provider": "L0vd.com ❤️" }, { - address: 'https://api.osmosis.validatus.com:443', - provider: 'Validatus' + "address": "https://osmosis-api.reece.sh", + "provider": "Reecepbcups" }, { - address: 'https://lcd.osmosis.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://api.osmosis.validatus.com:443", + "provider": "Validatus" }, { - address: 'https://osmosis.stakesystems.io/', - provider: 'stakesystems' + "address": "https://lcd.osmosis.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'osmosis-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "osmosis-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'grpc-osmosis-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-osmosis-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'osmosis.grpc.stakin-nodes.com:443', - provider: 'Stakin' + "address": "osmosis.grpc.stakin-nodes.com:443", + "provider": "Stakin" }, { - address: 'osmosis-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "osmosis-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-osmosis.cosmos-spaces.cloud:1130', - provider: 'Cosmos Spaces' + "address": "grpc-osmosis.cosmos-spaces.cloud:1130", + "provider": "Cosmos Spaces" }, { - address: 'grpc-osmosis-01.stakeflow.io:6754', - provider: 'Stakeflow' + "address": "grpc-osmosis-01.stakeflow.io:6754", + "provider": "Stakeflow" }, { - address: 'services.staketab.com:9010', - provider: 'Staketab' + "address": "services.staketab.com:9010", + "provider": "Staketab" }, { - address: 'osmosis-grpc.w3coins.io:12590', - provider: 'w3coins' + "address": "osmosis-grpc.w3coins.io:12590", + "provider": "w3coins" }, { - address: 'grpc-osmosis.mms.team:443', - provider: 'MMS' + "address": "grpc-osmosis.mms.team:443", + "provider": "MMS" }, { - address: 'osmosis-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "osmosis-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'osmosis-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "osmosis-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'https://grpc-osmosis.nodeist.net', - provider: 'Nodeist' + "address": "https://grpc-osmosis.nodeist.net", + "provider": "Nodeist" }, { - address: 'osmosis-mainnet.grpc.l0vd.com:80', - provider: 'L0vd.com ❤️' + "address": "osmosis-mainnet.grpc.l0vd.com:80", + "provider": "L0vd.com ❤️" }, { - address: 'grpc-osmosis.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "grpc-osmosis.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'grpc.osmosis.validatus.com:443', - provider: 'Validatus' + "address": "grpc.osmosis.validatus.com:443", + "provider": "Validatus" }, { - address: 'https://grpc.osmosis.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.osmosis.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/osmosis', - tx_page: 'https://app.ezstaking.io/osmosis/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/osmosis/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/osmosis", + "tx_page": "https://app.ezstaking.io/osmosis/txs/${txHash}", + "account_page": "https://app.ezstaking.io/osmosis/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/osmosis', - tx_page: 'https://www.mintscan.io/osmosis/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/osmosis/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/osmosis", + "tx_page": "https://www.mintscan.io/osmosis/transactions/${txHash}", + "account_page": "https://www.mintscan.io/osmosis/accounts/${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/account/${accountAddress}' + "kind": "explorers.guru", + "url": "https://osmosis.explorers.guru", + "tx_page": "https://osmosis.explorers.guru/transaction/${txHash}", + "account_page": "https://osmosis.explorers.guru/account/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/osmosis', - tx_page: 'https://atomscan.com/osmosis/transactions/${txHash}', - account_page: 'https://atomscan.com/osmosis/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/osmosis", + "tx_page": "https://atomscan.com/osmosis/transactions/${txHash}", + "account_page": "https://atomscan.com/osmosis/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/osmosis', - tx_page: 'https://bigdipper.live/osmosis/transactions/${txHash}', - account_page: - 'https://bigdipper.live/osmosis/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/osmosis", + "tx_page": "https://bigdipper.live/osmosis/transactions/${txHash}", + "account_page": "https://bigdipper.live/osmosis/accounts/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/osmosis', - tx_page: 'https://explorer.tcnetwork.io/osmosis/transaction/${txHash}', - account_page: - 'https://explorer.tcnetwork.io/osmosis/account/${accountAddress}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/osmosis", + "tx_page": "https://explorer.tcnetwork.io/osmosis/transaction/${txHash}", + "account_page": "https://explorer.tcnetwork.io/osmosis/account/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/osmosis', - account_page: 'https://stakeflow.io/osmosis/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/osmosis", + "account_page": "https://stakeflow.io/osmosis/accounts/${accountAddress}" }, { - kind: 'Nodeist Explorer', - url: 'https://exp.nodeist.net/osmosis', - tx_page: 'https://exp.nodeist.net/osmosis/tx/${txHash}' + "kind": "Nodeist Explorer", + "url": "https://exp.nodeist.net/osmosis", + "tx_page": "https://exp.nodeist.net/osmosis/tx/${txHash}" }, { - kind: 'L0vd.com ❤️', - url: 'https://explorers.l0vd.com/osmosis-mainnet', - tx_page: 'https://explorers.l0vd.com/osmosis-mainnet/tx/${txHash}' + "kind": "L0vd.com ❤️", + "url": "https://explorers.l0vd.com/osmosis-mainnet", + "tx_page": "https://explorers.l0vd.com/osmosis-mainnet/tx/${txHash}" }, { - kind: 'Chainscope', - url: 'https://chainsco.pe/osmosis', - tx_page: 'https://chainsco.pe/osmosis/tx/${txHash}' + "kind": "Chainscope", + "url": "https://chainsco.pe/osmosis", + "tx_page": "https://chainsco.pe/osmosis/tx/${txHash}" } ], - keywords: ['dex'] + "keywords": [ + "dex" + ] }, { - $schema: '../chain.schema.json', - chain_name: 'panacea', - status: 'live', - network_type: 'mainnet', - website: 'https://medibloc.com/en/', - pretty_name: 'Medibloc', - chain_id: 'panacea-3', - bech32_prefix: 'panacea', - daemon_name: 'panacead', - node_home: '$HOME/.panacead', - key_algos: ['secp256k1'], - slip44: 371, - fees: { - fee_tokens: [ - { - denom: 'umed', - fixed_min_gas_price: 5, - low_gas_price: 5, - average_gas_price: 7, - high_gas_price: 9 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "panacea", + "status": "live", + "network_type": "mainnet", + "website": "https://medibloc.com/en/", + "pretty_name": "Medibloc", + "chain_id": "panacea-3", + "bech32_prefix": "panacea", + "daemon_name": "panacead", + "node_home": "$HOME/.panacead", + "key_algos": [ + "secp256k1" + ], + "slip44": 371, + "fees": { + "fee_tokens": [ { - denom: 'umed' + "denom": "umed", + "fixed_min_gas_price": 5, + "low_gas_price": 5, + "average_gas_price": 7, + "high_gas_price": 9 } ] }, - codebase: { - git_repo: 'https://github.com/medibloc/panacea-core', - recommended_version: 'v2.0.6', - compatible_versions: ['v2.0.5'], - binaries: {}, - genesis: { - genesis_url: - 'https://github.com/medibloc/panacea-mainnet/raw/master/panacea-3/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v2.0.6', - recommended_version: 'v2.0.6', - compatible_versions: ['v2.0.5'], - binaries: {} + "denom": "umed" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' - }, - peers: { - persistent_peers: [ - { - id: '395aead00e99f828e4af92531dcd8c8da1255a8f', - address: '3.36.50.133:26656', - provider: 'medibloc' - }, - { - id: 'c238f279c970764d6893ae44bdf5c949dc22b009', - address: '13.114.44.199:26656', - provider: 'medibloc' - }, - { - id: '00c57e36559b49ce7d29fa4920b5132584994368', - address: '52.77.227.241:26656', - provider: 'medibloc' - }, - { - id: '5cd589ab0f34dbeb07cb0e156741838b2c7d3737', - address: '148.251.235.130:16656', - provider: 'Staketab' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.gopanacea.org', - provider: 'medibloc' + "address": "https://rpc.gopanacea.org", + "provider": "medibloc" }, { - address: 'https://panacea-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://panacea-rpc.staketab.org:443", + "provider": "Staketab" } ], - rest: [ + "rest": [ { - address: 'https://api.gopanacea.org', - provider: 'medibloc' + "address": "https://api.gopanacea.org", + "provider": "medibloc" }, { - address: 'https://panacea-rest.staketab.org', - provider: 'Staketab' + "address": "https://panacea-rest.staketab.org", + "provider": "Staketab" } ], - grpc: [ + "grpc": [ { - address: 'services.staketab.com:9400', - provider: 'Staketab' + "address": "services.staketab.com:9400", + "provider": "Staketab" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/medibloc', - tx_page: 'https://www.mintscan.io/medibloc/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/medibloc/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/medibloc", + "tx_page": "https://www.mintscan.io/medibloc/transactions/${txHash}", + "account_page": "https://www.mintscan.io/medibloc/accounts/${accountAddress}" }, { - 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}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'passage', - chain_id: 'passage-2', - pre_fork_chain_name: 'passage1', - pretty_name: 'Passage', - status: 'live', - network_type: 'mainnet', - website: 'https://passage3d.com/', - bech32_prefix: 'pasg', - daemon_name: 'passage', - node_home: '$HOME/.passage', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'upasg', - fixed_min_gas_price: 0, - low_gas_price: 0.001, - average_gas_price: 0.0025, - high_gas_price: 0.01 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'upasg' - } - ] - }, - codebase: { - git_repo: 'https://github.com/envadiv/Passage3D', - recommended_version: 'v2.2.0', - compatible_versions: ['v2.2.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/envadiv/mainnet/main/passage-2/genesis.json' - }, - versions: [ - { - name: 'v2.0.0', - recommended_version: 'v2.0.1', - compatible_versions: ['v2.0.1'], - cosmos_sdk_version: 'v0.45.16', - ibc_go_version: 'v4.4.2', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - next_version_name: 'v2.2.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "passage", + "chain_id": "passage-2", + "pre_fork_chain_name": "passage1", + "pretty_name": "Passage", + "status": "live", + "network_type": "mainnet", + "website": "https://passage3d.com/", + "bech32_prefix": "pasg", + "daemon_name": "passage", + "node_home": "$HOME/.passage", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v2.2.0', - recommended_version: 'v2.2.0', - compatible_versions: ['v2.2.0'], - cosmos_sdk_version: 'v0.45.16', - ibc_go_version: 'v4.4.2', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - next_version_name: '' + "denom": "upasg", + "fixed_min_gas_price": 0, + "low_gas_price": 0.001, + "average_gas_price": 0.0025, + "high_gas_price": 0.01 } ] }, - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: 'aebb8431609cb126a977592446f5de252d8b7fa1', - address: '104.236.201.138:26656' - }, - { - id: 'b6beabfb9309330944f44a1686742c2751748b83', - address: '5.161.47.163:26656' - }, - { - id: '7a9a36630523f54c1a0d56fc01e0e153fd11a53d', - address: '167.235.24.145:26656' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:15656', - provider: 'Polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:15656', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'passage-mainnet-seed.autostake.com:26916', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:15656', - provider: 'WhisperNode 🤐' - }, - { - id: 'df949a46ae6529ae1e09b034b49716468d5cc7e9', - address: 'seeds.stakerhouse.com:10556', - provider: 'StakerHouse' - }, - { - id: '2b238d2c05c47629e03608a6107e156fcb50344c', - address: '65.108.101.158:20556', - provider: 'Validatrium' - } - ], - persistent_peers: [ - { - id: 'd35d652b6cb3bf7d6cb8d4bd7c036ea03e7be2ab', - address: '116.203.182.185:26656' - }, - { - id: '8e0b0d4f80d0d2853f853fbd6a76390113f07d72', - address: '65.108.127.249:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'passage-mainnet-peer.autostake.com:26916', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '621f75a74a95298fe16e0c2dd899c087bcba6594', - address: '65.108.195.29:50656', - provider: 'Staketab' - }, - { - id: '2b238d2c05c47629e03608a6107e156fcb50344c', - address: '65.108.101.158:20556', - provider: 'Validatrium' + "denom": "upasg" } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.passage.vitwit.com', - provider: 'vitwit' + "address": "https://rpc.passage.vitwit.com", + "provider": "vitwit" }, { - address: 'https://passage-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://passage-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://rpc-passage.ecostake.com', - provider: 'ecostake' + "address": "https://rpc-passage.ecostake.com", + "provider": "ecostake" }, { - address: 'https://passage-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://passage-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-passage-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-passage-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc-passage.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-passage.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://rpc.passage.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.passage.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://passage-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://passage-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://passage-rpc.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://passage-rpc.ibs.team/", + "provider": "Inter Blockchain Services" }, { - address: 'https://rpc-passage.d-stake.xyz', - provider: 'D-stake' + "address": "https://rpc-passage.d-stake.xyz", + "provider": "D-stake" }, { - address: 'https://rpc-passage.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-passage.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://passage-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://passage-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://passage-rpc.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://passage-rpc.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://passage-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://passage-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://passage-rpc.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://passage-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://rpc-passage.mainnet.validatrium.club', - provider: 'Validatrium' + "address": "https://rpc-passage.mainnet.validatrium.club", + "provider": "Validatrium" } ], - rest: [ + "rest": [ { - address: 'https://api.passage.vitwit.com', - provider: 'vitwit' + "address": "https://api.passage.vitwit.com", + "provider": "vitwit" }, { - address: 'https://passage-rest.staketab.org', - provider: 'Staketab' + "address": "https://passage-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://rest-passage.ecostake.com', - provider: 'ecostake' + "address": "https://rest-passage.ecostake.com", + "provider": "ecostake" }, { - address: 'https://passage-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://passage-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-passage.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-passage.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://api-passage-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-passage-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://api.passage.nodestake.top', - provider: 'NodeStake' + "address": "https://api.passage.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://passage-api.polkachu.com', - provider: 'Polkachu' + "address": "https://passage-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://passage-api.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://passage-api.ibs.team/", + "provider": "Inter Blockchain Services" }, { - address: 'https://api-passage.d-stake.xyz', - provider: 'D-stake' + "address": "https://api-passage.d-stake.xyz", + "provider": "D-stake" }, { - address: 'https://passage-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://passage-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://lcd-passage.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-passage.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://passage-rest.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://passage-rest.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://passage-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://passage-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://passage-api.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://passage-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://api-passage.mainnet.validatrium.club', - provider: 'Validatrium' + "address": "https://api-passage.mainnet.validatrium.club", + "provider": "Validatrium" } ], - grpc: [ + "grpc": [ { - address: 'grpc-passage-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-passage-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'passage-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "passage-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'passage-grpc.polkachu.com:15690', - provider: 'Polkachu' + "address": "passage-grpc.polkachu.com:15690", + "provider": "Polkachu" }, { - address: 'grpc-passage.cosmos-spaces.cloud:2320', - provider: 'Cosmos Spaces' + "address": "grpc-passage.cosmos-spaces.cloud:2320", + "provider": "Cosmos Spaces" }, { - address: 'grpc.passage.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.passage.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'passage-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "passage-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'services.staketab.com:9023', - provider: 'Staketab' + "address": "services.staketab.com:9023", + "provider": "Staketab" }, { - address: 'passage-grpc.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "passage-grpc.stakerhouse.com:443", + "provider": "StakerHouse" }, { - address: 'passage-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "passage-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'passage-grpc.stakeandrelax.net:15690', - provider: 'Stake&Relax 🦥' + "address": "passage-grpc.stakeandrelax.net:15690", + "provider": "Stake&Relax 🦥" }, { - address: 'grpc-passage.mainnet.validatrium.club:20590', - provider: 'Validatrium' + "address": "grpc-passage.mainnet.validatrium.club:20590", + "provider": "Validatrium" } ] }, - explorers: [ + "explorers": [ { - kind: 'aneka', - url: 'https://passage.aneka.io', - tx_page: 'https://passage.aneka.io/txs/${txHash}', - account_page: 'https://passage.aneka.io/accounts/${accountAddress}' + "kind": "aneka", + "url": "https://passage.aneka.io", + "tx_page": "https://passage.aneka.io/txs/${txHash}", + "account_page": "https://passage.aneka.io/accounts/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/passage', - tx_page: 'https://www.mintscan.io/passage/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/passage/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/passage", + "tx_page": "https://www.mintscan.io/passage/transactions/${txHash}", + "account_page": "https://www.mintscan.io/passage/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/passage', - tx_page: 'https://atomscan.com/passage/transactions/${txHash}', - account_page: 'https://atomscan.com/passage/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/passage", + "tx_page": "https://atomscan.com/passage/transactions/${txHash}", + "account_page": "https://atomscan.com/passage/accounts/${accountAddress}" }, { - kind: 'cosmotracker', - url: 'https://cosmotracker.com/passage', - tx_page: 'https://cosmotracker.com/passage/tx/${txHash}', - account_page: - 'https://cosmotracker.com/passage/account/${accountAddress}' + "kind": "cosmotracker", + "url": "https://cosmotracker.com/passage", + "tx_page": "https://cosmotracker.com/passage/tx/${txHash}", + "account_page": "https://cosmotracker.com/passage/account/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'passage1', - chain_id: 'passage-1', - pretty_name: 'Passage', - status: 'killed', - network_type: 'mainnet', - website: 'https://passage3d.com/', - bech32_prefix: 'pasg', - daemon_name: 'passage', - node_home: '$HOME/.passage', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "passage1", + "chain_id": "passage-1", + "pretty_name": "Passage", + "status": "killed", + "network_type": "mainnet", + "website": "https://passage3d.com/", + "bech32_prefix": "pasg", + "daemon_name": "passage", + "node_home": "$HOME/.passage", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'upasg', - fixed_min_gas_price: 0 + "denom": "upasg", + "fixed_min_gas_price": 0 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'upasg' + "denom": "upasg" } ] }, - codebase: { - git_repo: 'https://github.com/envadiv/Passage3D', - recommended_version: 'v1.1.0', - compatible_versions: ['v1.1.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/envadiv/mainnet/main/passage-1/genesis.json' - } - }, - explorers: [ + "codebase": {}, + "explorers": [ { - kind: 'aneka', - url: 'https://passage.aneka.io', - tx_page: 'https://passage.aneka.io/txs/${txHash}', - account_page: 'https://passage.aneka.io/accounts/${accountAddress}' + "kind": "aneka", + "url": "https://passage.aneka.io", + "tx_page": "https://passage.aneka.io/txs/${txHash}", + "account_page": "https://passage.aneka.io/accounts/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/passage', - tx_page: 'https://www.mintscan.io/passage/txs/${txHash}', - account_page: - 'https://www.mintscan.io/passage/account/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/passage", + "tx_page": "https://www.mintscan.io/passage/txs/${txHash}", + "account_page": "https://www.mintscan.io/passage/account/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/passage', - tx_page: 'https://atomscan.com/passage/transactions/${txHash}', - account_page: 'https://atomscan.com/passage/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/passage", + "tx_page": "https://atomscan.com/passage/transactions/${txHash}", + "account_page": "https://atomscan.com/passage/accounts/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'persistence', - chain_id: 'core-1', - pretty_name: 'Persistence', - status: 'live', - network_type: 'mainnet', - website: 'https://persistence.one/', - bech32_prefix: 'persistence', - daemon_name: 'persistenceCore', - node_home: '$HOME/.persistenceCore', - key_algos: ['secp256k1'], - slip44: 118, - alternative_slip44s: [750], - fees: { - fee_tokens: [ - { - denom: 'uxprt', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uxprt' - } - ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/persistenceOne/persistenceCore', - recommended_version: 'v10.0.0', - compatible_versions: ['v10.0.0'], - cosmos_sdk_version: 'v0.47.3-lsm5', - ibc_go_version: 'v7.2.0-lsm3', - ics_enabled: ['ics20-1', 'ics27-1'], - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmwasm_version: 'v0.40.2-lsm3', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.persistenceCore/wasm', - binaries: { - 'linux/amd64': - 'https://github.com/persistenceOne/persistenceCore/releases/download/v10.0.0/persistenceCore-v10.0.0-linux-amd64.tar.gz' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/persistenceOne/genesisTransactions/master/core-1/final_genesis.json' - }, - versions: [ - { - name: 'v7', - tag: 'v7.0.0', - recommended_version: 'v7.0.0', - compatible_versions: ['v7.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/persistenceOne/persistenceCore/releases/download/v7.0.0/persistenceCore-v7.0.0-linux-amd64.tar.gz' - }, - next_version_name: 'v8' - }, - { - name: 'v8', - tag: 'v8.1.0', - height: 13046600, - proposal: 42, - recommended_version: 'v8.1.0', - compatible_versions: ['v8.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/persistenceOne/persistenceCore/releases/download/v8.1.0/persistenceCore-v8.1.0-linux-amd64.tar.gz' - }, - next_version_name: 'v9' - }, - { - name: 'v9', - tag: 'v9.2.1', - height: 13160000, - proposal: 43, - recommended_version: 'v9.2.1', - compatible_versions: ['v9.1.1', 'v9.1.0', 'v9.2.1'], - cosmos_sdk_version: 'v0.47.3-lsm', - ibc_go_version: 'v7.2.0-lsm3', - ics_enabled: ['ics20-1', 'ics27-1'], - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmwasm_version: 'v0.40.2-lsm3', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.persistenceCore/wasm', - binaries: { - 'linux/amd64': - 'https://github.com/persistenceOne/persistenceCore/releases/download/v9.2.1/persistenceCore-v9.2.1-linux-amd64.tar.gz' - }, - next_version_name: 'v10' - }, + "$schema": "../chain.schema.json", + "chain_name": "persistence", + "chain_id": "core-1", + "pretty_name": "Persistence", + "status": "live", + "network_type": "mainnet", + "website": "https://persistence.one/", + "bech32_prefix": "persistence", + "daemon_name": "persistenceCore", + "node_home": "$HOME/.persistenceCore", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "alternative_slip44s": [ + 750 + ], + "fees": { + "fee_tokens": [ { - name: 'v10', - tag: 'v10.0.0', - height: 13870350, - proposal: 55, - recommended_version: 'v10.0.0', - compatible_versions: ['v10.0.0'], - cosmos_sdk_version: 'v0.47.3-lsm', - ibc_go_version: 'v7.2.0-lsm3', - ics_enabled: ['ics20-1', 'ics27-1'], - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmwasm_version: 'v0.47.3-lsm5', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.persistenceCore/wasm', - binaries: { - 'linux/amd64': - 'https://github.com/persistenceOne/persistenceCore/releases/download/v10.0.0/persistenceCore-v10.0.0-linux-amd64.tar.gz' - }, - next_version_name: '' + "denom": "uxprt", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - 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' - }, - description: - 'Persistence is an app chain for Liquid Staking powering an ecosystem of DeFi applications focused on unlocking the liquidity of staked assets.', - peers: { - seeds: [ - { - id: 'eaa76966cad27a9807b7d8b9a62c9b2ca4924581', - address: 'tenderseed.ccvalidators.com:26003' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'persistence-mainnet-seed.autostake.com:26896', - provider: 'AutoStake 🛡️ Slash Protected' - }, + "staking": { + "staking_tokens": [ { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:15456', - provider: 'Polkachu' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'ce9dc9467af943bf35f17f04cfcdf3895914d867', - address: 'seed-persistence-01.stakeflow.io:33656', - provider: 'Stakeflow' + "denom": "uxprt" } ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'persistence-mainnet-peer.autostake.com:26896', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '137818b03a705cf86622b4d97a074091f2f22589', - address: '185.225.233.30:26756', - provider: 'Cosmonaut Stakes' - }, - { - id: 'bb7c2cddd665303a0b4233e3d47f5bf2c3ac21ba', - address: '135.181.142.60:15601', - provider: 'POSTHUMAN∞DVS' - }, - { - id: '3a4aa732fc9ad4f971ce081a34d6fc06e08dd7c6', - address: '141.95.33.97:26656', - provider: 'Stakewolle.com | Auto-compound' - }, - { - id: 'ce9dc9467af943bf35f17f04cfcdf3895914d867', - address: 'peer-persistence-01.stakeflow.io:33656', - provider: 'Stakeflow' - } - ] + "lock_duration": { + "time": "1814400s" + } }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.47.3-lsm5", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.40.2-lsm3" + }, + "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" + }, + "description": "Persistence is an app chain for Liquid Staking powering an ecosystem of DeFi applications focused on unlocking the liquidity of staked assets.", + "apis": { + "rpc": [ { - address: 'https://rpc.core.persistence.one', - provider: 'Persistence' + "address": "https://rpc.core.persistence.one", + "provider": "Persistence" }, { - address: 'https://rpc-persistent-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-persistent-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://persistence-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://persistence-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://persistence-rpc.kleomedes.network', - provider: 'Kleomedes' + "address": "https://persistence-rpc.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://rpc-persistence.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rpc-persistence.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://rpc-persistence.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-persistence.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://persistence-mainnet-rpc.cosmonautstakes.com', - provider: 'Cosmonaut Stakes' + "address": "https://persistence-mainnet-rpc.cosmonautstakes.com", + "provider": "Cosmonaut Stakes" }, { - address: 'https://persistence-rpc.quantnode.tech', - provider: 'QuantNode' + "address": "https://persistence-rpc.quantnode.tech", + "provider": "QuantNode" }, { - address: 'https://persistence-rpc.zenscape.one', - provider: 'Zenscape' + "address": "https://persistence-rpc.zenscape.one", + "provider": "Zenscape" }, { - address: 'https://persistence-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://persistence-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://persistence-rpc.stakeandrelax.net', - provider: 'Stake&Relax Validator 🦥' + "address": "https://persistence-rpc.stakeandrelax.net", + "provider": "Stake&Relax Validator 🦥" }, { - address: 'https://rpc.persistence.posthuman.digital:443', - provider: 'POSTHUMAN∞DVS' + "address": "https://rpc.persistence.posthuman.digital:443", + "provider": "POSTHUMAN∞DVS" }, { - address: 'https://rpc-persistence-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-persistence-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://persistence-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://persistence-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://persistence-rpc.highstakes.ch:26657/', - provider: 'High Stakes 🇨🇭' + "address": "https://persistence-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://persistence-rpc.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://persistence-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" } ], - rest: [ + "rest": [ { - address: 'https://rest.core.persistence.one', - provider: 'Persistence' + "address": "https://rest.core.persistence.one", + "provider": "Persistence" }, { - address: 'https://api-persistent-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-persistent-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://persistence-api.polkachu.com', - provider: 'Polkachu' + "address": "https://persistence-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://api-persistence.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-persistence.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://persistence-api.kleomedes.network', - provider: 'Kleomedes' + "address": "https://persistence-api.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://rest-persistence.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rest-persistence.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://persistence-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://persistence-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://persistence-mainnet-rest.cosmonautstakes.com', - provider: 'Cosmonaut Stakes' + "address": "https://persistence-mainnet-rest.cosmonautstakes.com", + "provider": "Cosmonaut Stakes" }, { - address: 'https://persistence-lcd.quantnode.tech', - provider: 'QuantNode' + "address": "https://persistence-lcd.quantnode.tech", + "provider": "QuantNode" }, { - address: 'https://persistence-rest.zenscape.one', - provider: 'Zenscape' + "address": "https://persistence-rest.zenscape.one", + "provider": "Zenscape" }, { - address: 'https://persistence-api.stakeandrelax.net', - provider: 'Stake&Relax Validator 🦥' + "address": "https://persistence-api.stakeandrelax.net", + "provider": "Stake&Relax Validator 🦥" }, { - address: 'https://rest.persistence.posthuman.digital:443', - provider: 'POSTHUMAN∞DVS' + "address": "https://rest.persistence.posthuman.digital:443", + "provider": "POSTHUMAN∞DVS" }, { - address: 'https://api-persistence-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-persistence-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://persistence-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://persistence-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://persistence-api.highstakes.ch:1317/', - provider: 'High Stakes 🇨🇭' + "address": "https://persistence-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://persistence-api.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://persistence-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" } ], - grpc: [ + "grpc": [ { - address: 'grpc.core.persistence.one:443', - provider: 'Persistence' + "address": "grpc.core.persistence.one:443", + "provider": "Persistence" }, { - address: 'grpc-persistent-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-persistent-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'persistence-grpc.polkachu.com:15490', - provider: 'Polkachu' + "address": "persistence-grpc.polkachu.com:15490", + "provider": "Polkachu" }, { - address: 'persistence-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "persistence-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc.persistence.posthuman.digital:80', - provider: 'POSTHUMAN∞DVS' + "address": "grpc.persistence.posthuman.digital:80", + "provider": "POSTHUMAN∞DVS" }, { - address: 'grpc-persistence.cosmos-spaces.cloud:1180', - provider: 'Cosmos Spaces' + "address": "grpc-persistence.cosmos-spaces.cloud:1180", + "provider": "Cosmos Spaces" }, { - address: '141.95.33.97:9090', - provider: 'Stakewolle.com | Auto-compound' + "address": "141.95.33.97:9090", + "provider": "Stakewolle.com | Auto-compound" }, { - address: 'grpc-persistence-01.stakeflow.io:49090', - provider: 'Stakeflow' + "address": "grpc-persistence-01.stakeflow.io:49090", + "provider": "Stakeflow" }, { - address: 'persistence-grpc.w3coins.io:15490', - provider: 'w3coins' + "address": "persistence-grpc.w3coins.io:15490", + "provider": "w3coins" }, { - address: 'persistence-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "persistence-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'persistence-grpc.stakeandrelax.net:15490', - provider: 'Stake&Relax 🦥' + "address": "persistence-grpc.stakeandrelax.net:15490", + "provider": "Stake&Relax 🦥" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/persistence', - tx_page: 'https://www.mintscan.io/persistence/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/persistence/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/persistence", + "tx_page": "https://www.mintscan.io/persistence/transactions/${txHash}", + "account_page": "https://www.mintscan.io/persistence/accounts/${accountAddress}" }, { - 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}', - account_page: - 'https://atomscan.com/persistence/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/persistence", + "tx_page": "https://atomscan.com/persistence/transactions/${txHash}", + "account_page": "https://atomscan.com/persistence/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/persistence', - tx_page: 'https://bigdipper.live/persistence/transactions/${txHash}', - account_page: - 'https://bigdipper.live/persistence/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/persistence", + "tx_page": "https://bigdipper.live/persistence/transactions/${txHash}", + "account_page": "https://bigdipper.live/persistence/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/persistence', - account_page: - 'https://stakeflow.io/persistence/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/persistence", + "account_page": "https://stakeflow.io/persistence/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'planq', - status: 'live', - network_type: 'mainnet', - website: 'https://planq.network/', - pretty_name: 'Planq', - chain_id: 'planq_7070-2', - bech32_prefix: 'plq', - node_home: '$HOME/.planqd', - daemon_name: 'planqd', - key_algos: ['ethsecp256k1'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'aplanq', - fixed_min_gas_price: 20000000000, - low_gas_price: 30000000000, - average_gas_price: 35000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'aplanq' - } - ] - }, - codebase: { - git_repo: 'https://github.com/planq-network/planq', - recommended_version: 'v1.0.7', - compatible_versions: ['v1.0.7'], - binaries: { - 'linux/amd64': - 'https://github.com/planq-network/planq/releases/download/v1.0.7/planq_1.0.7_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/planq-network/planq/releases/download/v1.0.7/planq_1.0.7_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/planq-network/planq/releases/download/v1.0.7/planq_1.0.7_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/planq-network/planq/releases/download/v1.0.7/planq_1.0.7_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/planq-network/planq/releases/download/v1.0.7/planq_1.0.7_Windows_x86_64.zip' - }, - cosmos_sdk_version: 'v0.46.3', - consensus: { - type: 'cometbft', - version: '0.34.26' - }, - ibc_go_version: '5.0.2', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/planq-network/networks/main/mainnet/genesis.json' - }, - versions: [ - { - name: 'v1.0.3', - recommended_version: 'v1.0.3', - compatible_versions: ['v1.0.0', 'v1.0.1', 'v1.0.2', 'v1.0.3'], - binaries: { - 'linux/amd64': - 'https://github.com/planq-network/planq/releases/download/v1.0.3/planq_1.0.3_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/planq-network/planq/releases/download/v1.0.3/planq_1.0.3_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/planq-network/planq/releases/download/v1.0.3/planq_1.0.3_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/planq-network/planq/releases/download/v1.0.3/planq_1.0.3_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/planq-network/planq/releases/download/v1.0.3/planq_1.0.3_Windows_x86_64.zip' - } - }, + "$schema": "../chain.schema.json", + "chain_name": "planq", + "status": "live", + "network_type": "mainnet", + "website": "https://planq.network/", + "pretty_name": "Planq", + "chain_id": "planq_7070-2", + "bech32_prefix": "plq", + "node_home": "$HOME/.planqd", + "daemon_name": "planqd", + "key_algos": [ + "ethsecp256k1" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - name: 'v1.0.7', - recommended_version: 'v1.0.7', - compatible_versions: ['v1.0.7'], - cosmos_sdk_version: 'v0.46.3', - consensus: { - type: 'cometbft', - version: '0.34.26' - }, - ibc_go_version: '5.0.2', - binaries: { - 'linux/amd64': - 'https://github.com/planq-network/planq/releases/download/v1.0.7/planq_1.0.7_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/planq-network/planq/releases/download/v1.0.7/planq_1.0.7_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/planq-network/planq/releases/download/v1.0.7/planq_1.0.7_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/planq-network/planq/releases/download/v1.0.7/planq_1.0.7_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/planq-network/planq/releases/download/v1.0.7/planq_1.0.7_Windows_x86_64.zip' - } + "denom": "aplanq", + "fixed_min_gas_price": 20000000000, + "low_gas_price": 30000000000, + "average_gas_price": 35000000000, + "high_gas_price": 40000000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' - }, - peers: { - seeds: [ - { - id: 'dd2f0ceaa0b21491ecae17413b242d69916550ae', - address: '135.125.247.70:26656', - provider: 'Planq Foundation EU' - }, - { - id: '5966b4ef17da12ee63ef30e50512ad41d541195c', - address: 'seeds-planq.sxlzptprjkt.xyz:18656', - provider: 'sxlzptprjkt | VALIDATOR' - }, - { - id: 'c443eb8888e96e260dc23b9ef3c5a5773ec0e261', - address: 'rpc.planq.nodexcapital.com:12756', - provider: 'NodeX Validator' - } - ], - persistent_peers: [ - { - id: 'dd2f0ceaa0b21491ecae17413b242d69916550ae', - address: '135.125.247.70:26656', - provider: 'Planq Foundation EU' - }, - { - id: 'e6d553dffbbabbfe9602b43d87e5b0ac1a46348a', - address: '135.125.247.70:26656', - provider: 'Nodine.ID' - }, - { - id: 'b611a4058ac5caf8b56c1012c695afc75aea4217', - address: 'peers-planq.sxlzptprjkt.xyz:18656', - provider: 'sxlzptprjkt | VALIDATOR' - }, - { - id: '2702b546525dd402197483121800a09edd4edea1', - address: 'rpc.planq.indonode.net:10656', - provider: 'Indonode' - }, - { - id: '3eb12284b7fb707490b8adfda6fa7d94e2fa5cd9', - address: 'p2p-pve01.roomit.xyz:16603', - provider: 'RoomIT' - }, + "staking": { + "staking_tokens": [ { - id: '8391cf5a7fe59098205015870635f90acfb5dcb4', - address: 'rpc.planq.hexnodes.co:33656', - provider: 'Hexnodes' - }, - { - id: 'c48fd9194479c2f462bded977cfff7fa46327d17', - address: '95.214.55.138:28656', - provider: 'genznodes' - }, - { - id: 'e755cbe005d920e5bca555f14251abae464b6a54', - address: 'p2p.planq.safeblock.space:26656', - provider: 'Safe Block' + "denom": "aplanq" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.46.3" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.planq.network', - provider: 'planq.network' + "address": "https://rpc.planq.network", + "provider": "planq.network" }, { - address: 'https://planq.rpc.bccnodes.com', - provider: 'BccNodes' + "address": "https://planq.rpc.bccnodes.com", + "provider": "BccNodes" }, { - address: 'https://rpc.planq.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.planq.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://planq-rpc.kynraze.com', - provider: 'Kynraze' + "address": "https://planq-rpc.kynraze.com", + "provider": "Kynraze" }, { - address: 'https://rpc.planq.indonode.net', - provider: 'Indonode' + "address": "https://rpc.planq.indonode.net", + "provider": "Indonode" }, { - address: 'https://rpc.planq.roomit.xyz', - provider: 'RoomIT' + "address": "https://rpc.planq.roomit.xyz", + "provider": "RoomIT" }, { - address: 'https://planq-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://planq-rpc.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://rpc.planq.safeblock.space', - provider: 'Safe Block' + "address": "https://rpc.planq.safeblock.space", + "provider": "Safe Block" }, { - address: 'https://planq.rpc.skynodejs.net', - provider: 'skynodejs' + "address": "https://planq.rpc.skynodejs.net", + "provider": "skynodejs" } ], - rest: [ + "rest": [ { - address: 'https://rest.planq.network', - provider: 'planq.network' + "address": "https://rest.planq.network", + "provider": "planq.network" }, { - address: 'https://api.planq.nodestake.top', - provider: 'NodeStake' + "address": "https://api.planq.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://planq-api.kynraze.com', - provider: 'Kynraze' + "address": "https://planq-api.kynraze.com", + "provider": "Kynraze" }, { - address: 'https://api.planq.indonode.net', - provider: 'Indonode' + "address": "https://api.planq.indonode.net", + "provider": "Indonode" }, { - address: 'https://api.planq.roomit.xyz', - provider: 'RoomIT' + "address": "https://api.planq.roomit.xyz", + "provider": "RoomIT" }, { - address: 'https://planq-api.genznodes.dev', - provider: 'genznodes' + "address": "https://planq-api.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://api.planq.safeblock.space', - provider: 'Safe Block' + "address": "https://api.planq.safeblock.space", + "provider": "Safe Block" }, { - address: 'https://planq.api.skynodejs.net', - provider: 'skynodejs' + "address": "https://planq.api.skynodejs.net", + "provider": "skynodejs" } ], - grpc: [ + "grpc": [ { - address: 'grpc.planq.network:443', - provider: 'planq.network' + "address": "grpc.planq.network:443", + "provider": "planq.network" }, { - address: 'planq.grpc.bccnodes.com:443', - provider: 'BccNodes' + "address": "planq.grpc.bccnodes.com:443", + "provider": "BccNodes" }, { - address: 'grpc.planq.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.planq.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://grpc-planq.nodine.id', - provider: 'Nodine.id' + "address": "https://grpc-planq.nodine.id", + "provider": "Nodine.id" }, { - address: 'https://grpc-planq.sxlzptprjkt.xyz:443', - provider: 'sxlzptprjkt | VALIDATOR' + "address": "https://grpc-planq.sxlzptprjkt.xyz:443", + "provider": "sxlzptprjkt | VALIDATOR" }, { - address: 'https://grpc.planq.nodexcapital.com:443', - provider: 'NodeX Validator' + "address": "https://grpc.planq.nodexcapital.com:443", + "provider": "NodeX Validator" }, { - address: 'https://grpc.planq.roomit.xyz:8443', - provider: 'RoomIT' + "address": "https://grpc.planq.roomit.xyz:8443", + "provider": "RoomIT" }, { - address: 'https://grpc.planq.hexnodes.co:33090', - provider: 'Hexnodes' + "address": "https://grpc.planq.hexnodes.co:33090", + "provider": "Hexnodes" }, { - address: 'planq-grpc.genznodes.dev:28090', - provider: 'genznodes' + "address": "planq-grpc.genznodes.dev:28090", + "provider": "genznodes" }, { - address: 'grpc.planq.safeblock.space:9090', - provider: 'Safe Block' + "address": "grpc.planq.safeblock.space:9090", + "provider": "Safe Block" }, { - address: 'https://planq.grpc.skynodejs.net', - provider: 'skynodejs' + "address": "https://planq.grpc.skynodejs.net", + "provider": "skynodejs" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://evm-rpc.planq.network', - provider: 'planq.network' + "address": "https://evm-rpc.planq.network", + "provider": "planq.network" }, { - address: 'https://jsonrpc.planq.nodestake.top', - provider: 'NodeStake' + "address": "https://jsonrpc.planq.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://rpc-evm-planq.sxlzptprjkt.xyz', - provider: 'sxlzptprjkt | VALIDATOR' + "address": "https://rpc-evm-planq.sxlzptprjkt.xyz", + "provider": "sxlzptprjkt | VALIDATOR" }, { - address: 'https://jsonrpc.planq.nodexcapital.com', - provider: 'NodeX Validator' + "address": "https://jsonrpc.planq.nodexcapital.com", + "provider": "NodeX Validator" }, { - address: 'https://planq-rpc-evm.genznodes.dev', - provider: 'genznodes' + "address": "https://planq-rpc-evm.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://evm.planq.safeblock.space', - provider: 'Safe Block' + "address": "https://evm.planq.safeblock.space", + "provider": "Safe Block" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://explorer.planq.network', - tx_page: 'https://explorer.planq.network/transactions/${txHash}' + "kind": "bigdipper", + "url": "https://explorer.planq.network", + "tx_page": "https://explorer.planq.network/transactions/${txHash}" }, { - kind: 'blockscout', - url: 'https://evm.planq.network', - tx_page: 'https://evm.planq.network/tx/${txHash}' + "kind": "blockscout", + "url": "https://evm.planq.network", + "tx_page": "https://evm.planq.network/tx/${txHash}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/planq', - tx_page: 'https://explorer.nodestake.top/planq/tx/${txHash}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/planq", + "tx_page": "https://explorer.nodestake.top/planq/tx/${txHash}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/planq', - tx_page: 'https://explorer.tcnetwork.io/planq/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/planq", + "tx_page": "https://explorer.tcnetwork.io/planq/transaction/${txHash}" }, { - kind: 'RoomIT', - url: 'https://explorer.tendermint.roomit.xyz/planq', - tx_page: - 'https://explorer.tendermint.roomit.xyz/planq/transaction/${txHash}' + "kind": "RoomIT", + "url": "https://explorer.tendermint.roomit.xyz/planq", + "tx_page": "https://explorer.tendermint.roomit.xyz/planq/transaction/${txHash}" }, { - kind: 'Kynraze', - url: 'https://explorer.kynraze.com/planq', - tx_page: 'https://explorer.kynraze.com/planq/tx/${txHash}' + "kind": "Kynraze", + "url": "https://explorer.kynraze.com/planq", + "tx_page": "https://explorer.kynraze.com/planq/tx/${txHash}" }, { - kind: 'THE EXPLORER', - url: 'https://explorer.sxlzptprjkt.xyz/planq', - tx_page: 'https://explorer.sxlzptprjkt.xyz/planq/tx/${txHash}' + "kind": "THE EXPLORER", + "url": "https://explorer.sxlzptprjkt.xyz/planq", + "tx_page": "https://explorer.sxlzptprjkt.xyz/planq/tx/${txHash}" }, { - kind: 'NODEXPLORER', - url: 'https://explorer.nodexcapital.com/planq', - tx_page: 'https://explorer.nodexcapital.com/planq/tx/${txHash}' + "kind": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com/planq", + "tx_page": "https://explorer.nodexcapital.com/planq/tx/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/planq', - tx_page: 'https://atomscan.com/planq/transactions/${txHash}', - account_page: 'https://atomscan.com/planq/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/planq", + "tx_page": "https://atomscan.com/planq/transactions/${txHash}", + "account_page": "https://atomscan.com/planq/accounts/${accountAddress}" }, { - kind: 'Indonode', - url: 'https://explorer.indonode.net/planq', - tx_page: 'https://explorer.indonode.net/planq/tx/${txHash}' + "kind": "Indonode", + "url": "https://explorer.indonode.net/planq", + "tx_page": "https://explorer.indonode.net/planq/tx/${txHash}" }, { - kind: 'Safe Block', - url: 'https://explorer.safeblock.space/planq', - tx_page: 'https://explorer.safeblock.space/planq/tx/${txHash}' + "kind": "Safe Block", + "url": "https://explorer.safeblock.space/planq", + "tx_page": "https://explorer.safeblock.space/planq/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'point', - status: 'live', - network_type: 'mainnet', - pretty_name: 'Point Network', - chain_id: 'point_10687-1', - bech32_prefix: 'point', - node_home: '$HOME/.pointd', - daemon_name: 'pointd', - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'apoint', - low_gas_price: 5000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'apoint' - } - ] - }, - codebase: { - git_repo: 'https://github.com/pointnetwork/point-chain', - recommended_version: 'v8.0.0', - compatible_versions: ['v8.0.0'], - binaries: { - 'linux/amd64': '', - 'linux/arm64': '', - 'darwin/amd64': '', - 'darwin/arm64': '', - 'windows/amd64': '' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/pointnetwork/point-chain-config/main/mainnet-1/genesis.json' - }, - versions: [ - { - name: 'v8.0.0', - recommended_version: 'v8.0.0', - compatible_versions: ['v8.0.0'], - binaries: { - 'linux/amd64': '', - 'linux/arm64': '', - 'darwin/amd64': '', - 'darwin/arm64': '', - 'windows/amd64': '' - } + "$schema": "../chain.schema.json", + "chain_name": "point", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Point Network", + "chain_id": "point_10687-1", + "bech32_prefix": "point", + "node_home": "$HOME/.pointd", + "daemon_name": "pointd", + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "apoint", + "low_gas_price": 5000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.svg' - }, - peers: { - seeds: [ - { - id: '8673c1f04c29c464189e8bf29e51fb0b38da2f19', - address: 'rpc-mainnet-1.point.space:26656', - provider: 'Point Network' - } - ], - persistent_peers: [ + "staking": { + "staking_tokens": [ { - id: '8673c1f04c29c464189e8bf29e51fb0b38da2f19', - address: 'rpc-mainnet-1.point.space:26656', - provider: 'Point Network' - }, - { - id: '9c7902cf292e1dbb79b2a0c3ed18f9e6f826483f', - address: 'rpc.point.indonode.net:21656', - provider: 'Indonode' + "denom": "apoint" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.svg" + }, + "apis": { + "rpc": [ { - address: 'https://rpc-mainnet-1.point.space:26657', - provider: 'Point Network' + "address": "https://rpc-mainnet-1.point.space:26657", + "provider": "Point Network" }, { - address: 'https://rpc.point.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.point.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://rpc.point.indonode.net', - provider: 'Indonode' + "address": "https://rpc.point.indonode.net", + "provider": "Indonode" } ], - rest: [ + "rest": [ { - address: 'https://rpc-mainnet-1.point.space:1317', - provider: 'Point Network' + "address": "https://rpc-mainnet-1.point.space:1317", + "provider": "Point Network" }, { - address: 'https://api.point.nodestake.top', - provider: 'NodeStake' + "address": "https://api.point.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://api.point.indonode.net', - provider: 'Indonode' + "address": "https://api.point.indonode.net", + "provider": "Indonode" } ], - grpc: [ + "grpc": [ { - address: 'grpc.point.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.point.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://grpc.point.nodexcapital.com', - provider: '⚡NodeX Validator⚡' + "address": "https://grpc.point.nodexcapital.com", + "provider": "⚡NodeX Validator⚡" }, { - address: 'https://grpc.point.indonode.net:21090', - provider: 'Indonode' + "address": "https://grpc.point.indonode.net:21090", + "provider": "Indonode" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://rpc-mainnet-1.point.space', - provider: 'Point Network' + "address": "https://rpc-mainnet-1.point.space", + "provider": "Point Network" }, { - address: 'https://jsonrpc.point.nodestake.top', - provider: 'NodeStake' + "address": "https://jsonrpc.point.nodestake.top", + "provider": "NodeStake" } ] }, - explorers: [ + "explorers": [ { - kind: 'blockscout', - url: 'https://explorer.pointnetwork.io/', - tx_page: 'https://explorer.pointnetwork.io/tx/${txHash}' + "kind": "blockscout", + "url": "https://explorer.pointnetwork.io/", + "tx_page": "https://explorer.pointnetwork.io/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://cosmos.pointnetwork.io/', - tx_page: 'https://cosmos.pointnetwork.io/point/tx/${txHash}' + "kind": "ping.pub", + "url": "https://cosmos.pointnetwork.io/", + "tx_page": "https://cosmos.pointnetwork.io/point/tx/${txHash}" }, { - kind: 'NODEXPLORER', - url: 'https://explorer.nodexcapital.com/point', - tx_page: 'https://explorer.nodexcapital.com/point/tx/${txHash}' + "kind": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com/point", + "tx_page": "https://explorer.nodexcapital.com/point/tx/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/point', - tx_page: 'https://atomscan.com/point/transactions/${txHash}', - account_page: 'https://atomscan.com/point/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/point", + "tx_page": "https://atomscan.com/point/transactions/${txHash}", + "account_page": "https://atomscan.com/point/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'provenance', - status: 'live', - network_type: 'mainnet', - website: 'https://provenance.io/', - pretty_name: 'Provenance', - chain_id: 'pio-mainnet-1', - bech32_prefix: 'pb', - daemon_name: 'provenanced', - node_home: '$HOME/Provenance', - key_algos: ['secp256k1'], - slip44: 505, - fees: { - fee_tokens: [ - { - denom: 'nhash', - fixed_min_gas_price: 1905, - low_gas_price: 1905, - average_gas_price: 2100, - high_gas_price: 2500 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'nhash' - } - ] - }, - codebase: { - git_repo: 'https://github.com/provenance-io/provenance', - recommended_version: 'v1.17.0', - compatible_versions: ['v1.17.0'], - cosmos_sdk_version: '0.46.13', - consensus: { - type: 'tendermint', - version: '0.34.29' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '6.2.0', - ics_enabled: ['ics20-1', 'ics27-1'], - binaries: { - 'linux/amd64': - 'https://github.com/provenance-io/provenance/releases/download/v1.17.0/provenance-linux-amd64-v1.17.0.zip' - }, - genesis: { - name: 'v1.0.1', - genesis_url: - 'https://raw.githubusercontent.com/provenance-io/mainnet/main/pio-mainnet-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.1', - tag: 'v1.0.1', - height: 0, - next_version_name: 'bluetiful' - }, - { - name: 'bluetiful', - tag: 'v1.3.1', - height: 352000, - recommended_version: 'v1.3.1', - compatible_versions: ['v1.3.0', 'v1.3.1'], - next_version_name: 'citrine' - }, - { - name: 'citrine', - tag: 'v1.4.1', - height: 940500, - recommended_version: 'v1.4.1', - compatible_versions: ['v1.4.0', 'v1.4.1'], - next_version_name: 'desert' - }, - { - name: 'desert', - tag: 'v1.5.0', - height: 1442070, - recommended_version: 'v1.5.0', - compatible_versions: ['v1.5.0'], - next_version_name: 'desert' - }, - { - name: 'usdf.c-hotfix', - tag: 'v1.6.0', - height: 2000000, - recommended_version: 'v1.6.0', - compatible_versions: ['v1.6.0'], - next_version_name: 'feldgrau' - }, - { - name: 'feldgrau', - tag: 'v1.7.6', - height: 2641250, - recommended_version: 'v1.7.6', - compatible_versions: [ - 'v1.7.0', - 'v1.7.1', - 'v1.7.2', - 'v1.7.3', - 'v1.7.4', - 'v1.7.5', - 'v1.7.6' - ], - next_version_name: 'green' - }, - { - name: 'green', - tag: 'v1.8.2', - height: 4808400, - recommended_version: 'v1.8.2', - compatible_versions: ['v1.8.0', 'v1.8.1', 'v1.8.2'], - next_version_name: 'lava' - }, - { - name: 'lava', - tag: 'v1.10.0', - height: 5689885, - recommended_version: 'v1.10.0', - compatible_versions: ['v1.10.0'], - next_version_name: 'mango' - }, - { - name: 'mango', - tag: 'v1.11.1', - height: 6512577, - recommended_version: 'v1.11.1', - compatible_versions: ['v1.11.0', 'v1.11.1'], - next_version_name: 'neoncarrot' - }, - { - name: 'neoncarrot', - tag: 'v1.12.2', - height: 7334444, - recommended_version: 'v1.12.2', - compatible_versions: ['v1.12.0', 'v1.12.1', 'v1.12.2'], - next_version_name: 'ochre' - }, - { - name: 'ochre', - tag: 'v1.13.1', - height: 8485555, - recommended_version: 'v1.13.1', - compatible_versions: ['v1.13.0', 'v1.13.1'], - next_version_name: 'paua' - }, - { - name: 'paua', - tag: 'v1.14.1', - height: 9828888, - recommended_version: 'v1.14.1', - compatible_versions: ['v1.14.0', 'v1.14.1'], - cosmos_sdk_version: '0.46.10', - consensus: { - type: 'tendermint', - version: '0.34.26' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '6.1.0', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/amd64': - 'https://github.com/provenance-io/provenance/releases/download/v1.14.1/provenance-linux-amd64-v1.14.1.zip' - }, - next_version_name: 'quicksilver' - }, - { - name: 'quicksilver', - tag: 'v1.15.2', - height: 11130222, - recommended_version: 'v1.15.2', - compatible_versions: ['v1.15.0', 'v1.15.1', 'v1.15.2'], - cosmos_sdk_version: '0.46.10', - consensus: { - type: 'tendermint', - version: '0.34.26' - }, - ibc_go_version: '6.1.1', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/amd64': - 'https://github.com/provenance-io/provenance/releases/download/v1.15.2/provenance-linux-amd64-v1.15.2.zip' - }, - next_version_name: 'rust' - }, - { - name: 'rust', - tag: 'v1.16.0', - height: 11842000, - recommended_version: 'v1.16.0', - compatible_versions: ['v1.16.0'], - cosmos_sdk_version: '0.46.13', - consensus: { - type: 'tendermint', - version: '0.34.28' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '6.2.0', - ics_enabled: ['ics20-1', 'ics27-1'], - binaries: { - 'linux/amd64': - 'https://github.com/provenance-io/provenance/releases/download/v1.16.0/provenance-linux-amd64-v1.16.0.zip' - } - }, + "$schema": "../chain.schema.json", + "chain_name": "provenance", + "status": "live", + "network_type": "mainnet", + "website": "https://provenance.io/", + "pretty_name": "Provenance", + "chain_id": "pio-mainnet-1", + "bech32_prefix": "pb", + "daemon_name": "provenanced", + "node_home": "$HOME/Provenance", + "key_algos": [ + "secp256k1" + ], + "slip44": 505, + "fees": { + "fee_tokens": [ { - name: 'saffron', - tag: 'v1.17.0', - height: 13736000, - recommended_version: 'v1.17.0', - compatible_versions: ['v1.17.0'], - cosmos_sdk_version: '0.46.13', - consensus: { - type: 'tendermint', - version: '0.34.29' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '6.2.0', - ics_enabled: ['ics20-1', 'ics27-1'], - binaries: { - 'linux/amd64': - 'https://github.com/provenance-io/provenance/releases/download/v1.17.0/provenance-linux-amd64-v1.17.0.zip' - } + "denom": "nhash", + "fixed_min_gas_price": 1905, + "low_gas_price": 1905, + "average_gas_price": 2100, + "high_gas_price": 2500 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' - }, - peers: { - seeds: [ - { - id: 'a85a651a3cf1746694560c5b6f76d566c04ca581', - address: 'provenance-seed.takeshi.team:10556', - provider: 'TAKESHI' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'provenance-mainnet-seed.autostake.com:27376', - provider: 'AutoStake 🛡️ Slash Protected' - }, + "staking": { + "staking_tokens": [ { - id: '40f9493fa7ab4259159240e9a8ba12f90743079b', - address: 'seed.provenance.io:26656', - provider: 'Figure' - } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'provenance-mainnet-peer.autostake.com:27376', - provider: 'AutoStake 🛡️ Slash Protected' + "denom": "nhash" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46.13", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg" + }, + "apis": { + "rpc": [ { - address: 'https://rpc-provenance.takeshi.team/', - provider: 'TAKESHI' + "address": "https://rpc-provenance.takeshi.team/", + "provider": "TAKESHI" }, { - address: 'https://rpc.provenance.io/', - provider: 'Figure' + "address": "https://rpc.provenance.io/", + "provider": "Figure" }, { - address: 'https://rpc-provenance-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-provenance-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://provenance-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://provenance-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://provenance-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://provenance-rpc.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://provenance-rpc.highstakes.ch:26657/', - provider: 'High Stakes 🇨🇭' + "address": "https://provenance-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://rpc.provenance.blockval.io/', - provider: 'Blockval' + "address": "https://rpc.provenance.blockval.io/", + "provider": "Blockval" } ], - rest: [ + "rest": [ { - address: 'https://api-provenance.takeshi.team', - provider: 'TAKESHI' + "address": "https://api-provenance.takeshi.team", + "provider": "TAKESHI" }, { - address: 'https://provenance-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://provenance-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://api.provenance.io', - provider: 'Figure' + "address": "https://api.provenance.io", + "provider": "Figure" }, { - address: 'https://api-provenance-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-provenance-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://provenance-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://provenance-api.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://provenance-api.highstakes.ch:1317/', - provider: 'High Stakes 🇨🇭' + "address": "https://provenance-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://api.provenance.blockval.io', - provider: 'Blockval' + "address": "https://api.provenance.blockval.io", + "provider": "Blockval" } ], - grpc: [ + "grpc": [ { - address: 'grpc-provenance.takeshi.team:443', - provider: 'TAKESHI' + "address": "grpc-provenance.takeshi.team:443", + "provider": "TAKESHI" }, { - address: 'provenance-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "provenance-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-provenance-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-provenance-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'grpc.provenance.blockval.io:9290', - provider: 'Blockval' + "address": "grpc.provenance.blockval.io:9290", + "provider": "Blockval" } ] }, - 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: '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/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/provenance/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/provenance", + "tx_page": "https://www.mintscan.io/provenance/transactions/${txHash}", + "account_page": "https://www.mintscan.io/provenance/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/provenance', - tx_page: 'https://atomscan.com/provenance/transactions/${txHash}', - account_page: - 'https://atomscan.com/provenance/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/provenance", + "tx_page": "https://atomscan.com/provenance/transactions/${txHash}", + "account_page": "https://atomscan.com/provenance/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/provenance', - tx_page: 'https://bigdipper.live/provenance/transactions/${txHash}', - account_page: - 'https://bigdipper.live/provenance/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/provenance", + "tx_page": "https://bigdipper.live/provenance/transactions/${txHash}", + "account_page": "https://bigdipper.live/provenance/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'pundix', - chain_id: 'PUNDIX', - website: 'https://pundix.com', - pretty_name: 'Pundi X Chain', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'px', - daemon_name: 'pundixd', - node_home: '$HOME/.pundix', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: - 'ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78', - fixed_min_gas_price: 2000000000000, - low_gas_price: 2000000000000, - average_gas_price: 2500000000000, - high_gas_price: 3000000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: - 'ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78' - } - ] - }, - codebase: { - git_repo: 'https://github.com/pundix/pundix', - recommended_version: 'v0.2.3', - compatible_versions: ['v0.2.3'], - binaries: { - 'linux/amd64': - 'https://github.com/pundix/pundix/releases/download/v0.2.3/pundix_0.2.3_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/pundix/pundix/releases/download/v0.2.3/pundix_0.2.3_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/pundix/pundix/releases/download/v0.2.3/pundix_0.2.3_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/pundix/pundix/releases/download/v0.2.3/pundix_0.2.3_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/pundix/pundix/releases/download/v0.2.3/pundix_0.2.3_Windows_x86_64.zip' - }, - genesis: { - name: 'pxv1', - genesis_url: - 'https://raw.githubusercontent.com/pundix/pundix/main/public/mainnet/genesis.json' - }, - cosmos_sdk_version: '0.45.11', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '6.1.0', - versions: [ - { - name: 'pxv1', - tag: 'v0.1.3', - height: 0, - next_version_name: 'pxv2', - recommended_version: 'v0.1.3', - compatible_versions: ['v0.1.3'], - binaries: { - 'linux/amd64': - 'https://github.com/pundix/pundix/releases/download/v0.1.3/pundix_0.1.3_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/pundix/pundix/releases/download/v0.1.3/pundix_0.1.3_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/pundix/pundix/releases/download/v0.1.3/pundix_0.1.3_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/pundix/pundix/releases/download/v0.1.3/pundix_0.1.3_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/pundix/pundix/releases/download/v0.1.3/pundix_0.1.3_Windows_x86_64.zip' - } - }, + "$schema": "../chain.schema.json", + "chain_name": "pundix", + "chain_id": "PUNDIX", + "website": "https://pundix.com", + "pretty_name": "Pundi X Chain", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "px", + "daemon_name": "pundixd", + "node_home": "$HOME/.pundix", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'pxv2', - tag: 'v0.2.3', - height: 6869100, - recommended_version: 'v0.2.3', - compatible_versions: ['v0.2.3'], - binaries: { - 'linux/amd64': - 'https://github.com/pundix/pundix/releases/download/v0.2.3/pundix_0.2.3_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/pundix/pundix/releases/download/v0.2.3/pundix_0.2.3_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/pundix/pundix/releases/download/v0.2.3/pundix_0.2.3_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/pundix/pundix/releases/download/v0.2.3/pundix_0.2.3_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/pundix/pundix/releases/download/v0.2.3/pundix_0.2.3_Windows_x86_64.zip' - } + "denom": "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78", + "fixed_min_gas_price": 2000000000000, + "low_gas_price": 2000000000000, + "average_gas_price": 2500000000000, + "high_gas_price": 3000000000000 } ] }, - peers: { - seeds: [ - { - id: '78d3eb3f15a20ab1d567660d35776abe0dee71d0', - address: 'pundix-mainnet-seed-node-1.pundix.com:26656', - provider: 'Pundi X' - }, - { - id: '3c37c6c42dfd9094117549794299a62d49c122eb', - address: 'pundix-mainnet-seed-node-2.pundix.com:26656', - provider: 'Pundi X' - } - ], - persistent_peers: [ - { - id: '8bd41ea9f8ba7cfee4d19887cab487cdfc1177f4', - address: 'pundix-mainnet-node-1.pundix.com:26656', - provider: 'Pundi X' - }, + "staking": { + "staking_tokens": [ { - id: '6c1738220234a5e1b3caf94403ecd651e9759952', - address: 'pundix-mainnet-node-2.pundix.com:26656', - provider: 'Pundi X' - }, - { - id: '23abe2346d40f82cf0606e47931e58752f8b9348', - address: 'pundix-mainnet-node-3.pundix.com:26656', - provider: 'Pundi X' - }, - { - id: '20d275af6d025be144765291db5337ea059cce18', - address: 'pundix-mainnet-node-4.pundix.com:26656', - provider: 'Pundi X' - }, - { - id: '47f97d7baf028ddfd3b223baab0fa062eae75310', - address: 'pundix-mainnet-node-5.pundix.com:26656', - provider: 'Pundi X' + "denom": "ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.45.11" + }, + "apis": { + "rpc": [ { - address: 'https://px-json.pundix.com', - provider: 'Pundi X' + "address": "https://px-json.pundix.com", + "provider": "Pundi X" } ], - rest: [ + "rest": [ { - address: 'https://px-rest.pundix.com', - provider: 'Pundi X' + "address": "https://px-rest.pundix.com", + "provider": "Pundi X" } ], - grpc: [ + "grpc": [ { - address: 'https://px-grpc.pundix.com', - provider: 'Pundi X' + "address": "https://px-grpc.pundix.com", + "provider": "Pundi X" } ] }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-chain-logo.png" }, - explorers: [ + "explorers": [ { - kind: 'starscan', - url: 'https://starscan.io', - tx_page: 'https://starscan.io/pundix/tx/${txHash}', - account_page: 'https://starscan.io/pundix/address/${accountAddress}' + "kind": "starscan", + "url": "https://starscan.io", + "tx_page": "https://starscan.io/pundix/tx/${txHash}", + "account_page": "https://starscan.io/pundix/address/${accountAddress}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'quasar', - status: 'live', - network_type: 'mainnet', - website: 'https://www.quasar.fi/', - pretty_name: 'Quasar', - chain_id: 'quasar-1', - bech32_prefix: 'quasar', - daemon_name: 'quasarnoded', - node_home: '$HOME/.quasarnode', - key_algos: ['secp256k1'], - slip44: 118, - staking: { - staking_tokens: [ - { - denom: 'uqsr' - } - ] - }, - fees: { - fee_tokens: [ - { - denom: - 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B', - fixed_min_gas_price: 0.01, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.03 - }, - { - denom: - 'ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5', - fixed_min_gas_price: 0.01, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.03 - }, - { - denom: - 'ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A', - fixed_min_gas_price: 0.01, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.03 - } - ] - }, - codebase: { - git_repo: 'https://github.com/quasar-finance/quasar-preview', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - cosmos_sdk_version: 'v0.45.16', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - cosmwasm_version: 'v0.31.0', - cosmwasm_enabled: true, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/quasar-finance/networks/main/quasar-1/definitive-genesis.json' - }, - versions: [ - { - name: 'v0.1.0', - recommended_version: 'v0.1.1', - compatible_versions: ['v0.1.0', 'v0.1.1'], - cosmos_sdk_version: 'v0.45.14', - consensus: { - type: 'tendermint', - version: 'v0.34.26' - }, - cosmwasm_version: '0.27', - cosmwasm_enabled: true, - next_version_name: 'v1' - }, + "$schema": "../chain.schema.json", + "chain_name": "quasar", + "status": "live", + "network_type": "mainnet", + "website": "https://www.quasar.fi/", + "pretty_name": "Quasar", + "chain_id": "quasar-1", + "bech32_prefix": "quasar", + "daemon_name": "quasarnoded", + "node_home": "$HOME/.quasarnode", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "staking": { + "staking_tokens": [ { - name: 'v1', - proposal: 9, - height: 2249500, - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - cosmos_sdk_version: 'v0.45.16', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - cosmwasm_version: '0.31.0', - cosmwasm_enabled: true, - next_version_name: '' + "denom": "uqsr" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' - }, - description: - 'Quasar is the first decentralized asset management (D.A.M.) platform enabled by IBC. A secure, permissionless, composable, and diversified interchain DeFi experience is finally here.', - peers: { - seeds: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:18256', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:18256', - provider: 'Polkachu' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'quasar.rpc.kjnodes.com:14859', - provider: 'kjnodes' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'quasar-mainnet-seed.autostake.com:27146', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:18256', - provider: 'WhisperNode 🤐' - }, - { - id: '86fd17151eec60145e6c1a635e8365aff70a77d7', - address: 'seed-quasar.ibs.team:55656', - provider: 'Inter Blockchain Services' - } - ], - persistent_peers: [ + "fees": { + "fee_tokens": [ { - id: '298e0e1faf8a5da43514cc2908d2908658e732a0', - address: '298e0e1faf8a5da43514cc2908d2908658e732a0@38.146.3.148:18256' + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 }, { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'quasar-mainnet-peer.autostake.com:27146', - provider: 'AutoStake 🛡️ Slash Protected' + "denom": "ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5", + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 }, { - id: 'f85f57bd852fd460bc99628444df26c45e02e95a', - address: '95.214.55.138:29656', - provider: 'genznodes' + "denom": "ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A", + "fixed_min_gas_price": 0.01, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.45.16", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.31.0" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png" + }, + "description": "Quasar is the first decentralized asset management (D.A.M.) platform enabled by IBC. A secure, permissionless, composable, and diversified interchain DeFi experience is finally here.", + "apis": { + "rpc": [ { - address: 'https://quasar-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://quasar-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://quasar-rpc.polkachu.com', - provider: 'polkachu' + "address": "https://quasar-rpc.polkachu.com", + "provider": "polkachu" }, { - address: 'https://rpc-quasar.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-quasar.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://quasar-rpc.enigma-validator.com', - provider: 'Enigma' + "address": "https://quasar-rpc.enigma-validator.com", + "provider": "Enigma" }, { - address: 'https://rpc-quasar.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-quasar.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://quasar-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://quasar-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://quasar.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://quasar.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://rpc-quasar.validavia.me', - provider: 'Validavia' + "address": "https://rpc-quasar.validavia.me", + "provider": "Validavia" }, { - address: 'https://quasar-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://quasar-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://quasar-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://quasar-rpc.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://quasar-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://quasar-rpc.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://quasar-rpc.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://quasar-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://quasar-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://quasar-rpc.genznodes.dev", + "provider": "genznodes" } ], - rest: [ + "rest": [ { - address: 'https://quasar-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://quasar-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://quasar-api.polkachu.com', - provider: 'polkachu' + "address": "https://quasar-api.polkachu.com", + "provider": "polkachu" }, { - address: 'https://lcd-quasar.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-quasar.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://api-quasar.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-quasar.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://quasar-lcd.enigma-validator.com', - provider: 'Enigma' + "address": "https://quasar-lcd.enigma-validator.com", + "provider": "Enigma" }, { - address: 'https://quasar-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://quasar-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://quasar.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://quasar.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://lcd-quasar.validavia.me', - provider: 'Validavia' + "address": "https://lcd-quasar.validavia.me", + "provider": "Validavia" }, { - address: 'https://quasar-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://quasar-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://quasar-api.stake-town.com', - provider: 'StakeTown' + "address": "https://quasar-api.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://quasar-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://quasar-api.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://quasar-api.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://quasar-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://quasar-api.genznodes.dev', - provider: 'genznodes' + "address": "https://quasar-api.genznodes.dev", + "provider": "genznodes" } ], - grpc: [ + "grpc": [ { - address: 'https://quasar-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://quasar-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'quasar-grpc.polkachu.com:18290', - provider: 'polkachu' + "address": "quasar-grpc.polkachu.com:18290", + "provider": "polkachu" }, { - address: 'grpc-quasar.cosmos-spaces.cloud:12890', - provider: 'Cosmos Spaces' + "address": "grpc-quasar.cosmos-spaces.cloud:12890", + "provider": "Cosmos Spaces" }, { - address: 'quasar-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "quasar-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'quasar.grpc.kjnodes.com:14890', - provider: 'kjnodes' + "address": "quasar.grpc.kjnodes.com:14890", + "provider": "kjnodes" }, { - address: 'quasar-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "quasar-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'quasar-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "quasar-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'quasar-grpc.stakeandrelax.net:18290', - provider: 'Stake&Relax 🦥' + "address": "quasar-grpc.stakeandrelax.net:18290", + "provider": "Stake&Relax 🦥" }, { - address: 'quasar-grpc.genznodes.dev:29090', - provider: 'genznodes' + "address": "quasar-grpc.genznodes.dev:29090", + "provider": "genznodes" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/quasar', - tx_page: 'https://www.mintscan.io/quasar/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/quasar/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/quasar", + "tx_page": "https://www.mintscan.io/quasar/transactions/${txHash}", + "account_page": "https://www.mintscan.io/quasar/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/quasar', - tx_page: 'https://bigdipper.live/quasar/transactions/${txHash}', - account_page: 'https://bigdipper.live/quasar/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/quasar", + "tx_page": "https://bigdipper.live/quasar/transactions/${txHash}", + "account_page": "https://bigdipper.live/quasar/accounts/${accountAddress}" } ], - keywords: ['mainnet'], - images: [ + "keywords": [ + "mainnet" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'quicksilver', - status: 'live', - network_type: 'mainnet', - website: 'https://quicksilver.zone/', - pretty_name: 'Quicksilver', - chain_id: 'quicksilver-2', - daemon_name: 'quicksilverd', - node_home: '$HOME/.quicksilverd', - bech32_prefix: 'quick', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uqck', - fixed_min_gas_price: 0.0001, - low_gas_price: 0.0001, - average_gas_price: 0.0001, - high_gas_price: 0.00025 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uqck' - } - ] - }, - codebase: { - git_repo: 'https://github.com/ingenuity-build/quicksilver', - recommended_version: 'v1.4.6', - compatible_versions: ['v1.4.6'], - binaries: { - 'linux/amd64': - 'https://github.com/ingenuity-build/quicksilver/releases/download/v1.4.6/quicksilverd-v1.4.6-amd64' - }, - cosmos_sdk_version: 'v0.46.16', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - cosmwasm_version: - 'notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956', - cosmwasm_enabled: true, - ibc_go_version: 'v5.3.2', - genesis: { - genesis_url: - 'https://github.com/ingenuity-build/mainnet/raw/main/genesis.json' - }, - versions: [ - { - name: 'v1.2.9-hotfix.0', - recommended_version: 'v1.2.9-hotfix.0', - compatible_versions: ['v1.2.9-hotfix.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - ibc_go_version: '5.2.0', - next_version_name: 'v1.2.10' - }, - { - name: 'v1.2.10', - height: 1936600, - recommended_version: 'v1.2.10', - proposal: 13, - compatible_versions: ['v1.2.10'], - binaries: { - 'linux/amd64': - 'https://github.com/ingenuity-build/quicksilver/releases/download/v1.2.10/quicksilverd-v1.2.10-amd64' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - ibc_go_version: '5.2.0', - next_version_name: 'v1.2.13' - }, - { - name: 'v1.2.13', - height: 2148751, - recommended_version: 'v1.2.14', - compatible_versions: ['v1.2.13', 'v1.2.14'], - binaries: { - 'linux/amd64': - 'https://github.com/ingenuity-build/quicksilver/releases/download/v1.2.14/quicksilverd-v1.2.14-amd64' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - ibc_go_version: '5.2.1', - next_version_name: 'v1.2.15' - }, - { - name: 'v1.2.15', - proposal: 18, - height: 3052279, - recommended_version: 'v1.2.16', - compatible_versions: ['v1.2.15', 'v1.2.16'], - binaries: { - 'linux/amd64': - 'https://github.com/ingenuity-build/quicksilver/releases/download/v1.2.16/quicksilverd-v1.2.16-amd64' - }, - cosmos_sdk_version: '0.46.14', - consensus: { - type: 'cometbft', - version: '0.34.29' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - ibc_go_version: '5.3.1', - next_version_name: 'v1.2.17' - }, - { - name: 'v1.2.17', - proposal: 26, - height: 4530000, - recommended_version: 'v1.2.17', - compatible_versions: ['v1.2.17'], - binaries: { - 'linux/amd64': - 'https://github.com/ingenuity-build/quicksilver/releases/download/v1.2.17/quicksilverd-v1.2.17-amd64' - }, - cosmos_sdk_version: '0.46.15', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - cosmwasm_version: 'v0.29.0-sdk46.0.20221114145317-d6e67fd50956', - cosmwasm_enabled: true, - ibc_go_version: '5.3.2', - next_version_name: 'v1.4.5' - }, - { - name: 'v1.4.5', - proposal: 27, - height: 5432500, - recommended_version: 'v1.4.5', - compatible_versions: ['v1.4.5'], - binaries: { - 'linux/amd64': - 'https://github.com/ingenuity-build/quicksilver/releases/download/v1.4.5/quicksilverd-v1.4.5-amd64' - }, - cosmos_sdk_version: 'v0.46.16', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - cosmwasm_version: - 'notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956', - cosmwasm_enabled: true, - ibc_go_version: 'v5.3.2', - next_version_name: 'v1.4.6' - }, - { - name: 'v1.4.6', - proposal: 28, - height: 5493000, - recommended_version: 'v1.4.6', - compatible_versions: ['v1.4.6'], - binaries: { - 'linux/amd64': - 'https://github.com/ingenuity-build/quicksilver/releases/download/v1.4.6/quicksilverd-v1.4.6-amd64' - }, - cosmos_sdk_version: 'v0.46.16', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - cosmwasm_version: - 'notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956', - cosmwasm_enabled: true, - ibc_go_version: 'v5.3.2', - next_version_name: '' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg' - }, - description: - 'Liquid Stake your Cosmos assets with your preferred validator and receive liquid staked assets (qASSETs) that you can use for swapping, pooling, lending, and more, all while your original stake earns staking APY from securing the network.', - peers: { - seeds: [ + "$schema": "../chain.schema.json", + "chain_name": "quicksilver", + "status": "live", + "network_type": "mainnet", + "website": "https://quicksilver.zone/", + "pretty_name": "Quicksilver", + "chain_id": "quicksilver-2", + "daemon_name": "quicksilverd", + "node_home": "$HOME/.quicksilverd", + "bech32_prefix": "quick", + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '940c0dc153b0e344de6368d101a97fd4d9e69eff', - address: 'seeds.cros-nest.com:25656', - provider: 'Cros-Nest' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:11156', - provider: 'Polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:11156', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:11156', - provider: 'rhinostake' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'quicksilver-mainnet-seed.autostake.com:27026', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'quicksilver.rpc.kjnodes.com:11159', - provider: 'kjnodes' - }, - { - id: 'a85a651a3cf1746694560c5b6f76d566c04ca581', - address: 'quicksilver-seed.takeshi.team:10456', - provider: 'TAKESHI' - }, - { - id: '559e316b30830ddd5e93617592ef70330ecce86d', - address: 'seed-quicksilver.ibs.team:16656', - provider: 'Inter Blockchain Services' - }, - { - id: '95fe6a416dff4150e0394f8b429743db60ea1327', - address: 'seed-node.mms.team:27656', - provider: 'MMS' + "denom": "uqck", + "fixed_min_gas_price": 0.0001, + "low_gas_price": 0.0001, + "average_gas_price": 0.0001, + "high_gas_price": 0.00025 } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'quicksilver-mainnet-peer.autostake.com:27026', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '3461638afd470034067392e5dba8dcf6de49f81f', - address: 'rpc.quicksilver.indonode.net:28656', - provider: 'Indonode' - }, - { - id: '958d4be52e81fb4d2cbca134ba7fc9f91cfef247', - address: '65.108.226.26:16656', - provider: '[NODERS]TEAM' - }, - { - id: 'ae44851a5d63d70382c1621bc7727db2a40d10d0', - address: 'quick.peers.stavr.tech:21026', - provider: '🔥STAVR🔥' - }, - { - id: '58fe3a7b075e7302f8b46b8171a0aa19ff4a427a', - address: '65.108.195.29:31126', - provider: 'Staketab' - }, - { - id: '9bd2b7e39fb0d823402f22c90e3000fdf3cd05bf', - address: '88.99.104.180:26656', - provider: 'Stake-Take' - }, - { - id: '8200b77d075f2634e6f9dab11fd56726a2e6d75b', - address: 'quicksilver-seed.theamsolutions.info:31656', - provider: 'AM Solutions' - }, - { - id: '82b49e6cc0826642e745b7a7a621aecbf8083af7', - address: 'peer-quicksilver.mms.team:56103', - provider: 'MMS' - }, - { - id: '3b3384dc98b0e0d8bb12eb21c396c19ce0e46cb0', - address: '138.201.21.197:50656', - provider: 'StakeTown' - }, + ] + }, + "staking": { + "staking_tokens": [ { - id: '66a0cd5eff87ec7b1ea2e3b41032c1c2d22aa284', - address: 'mainnet-quicksilver.konsortech.xyz:46657', - provider: 'KonsorTech' + "denom": "uqck" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.46.16", + "cosmwasm_enabled": true, + "cosmwasm_version": "notional-labs/wasmd v0.29.0-sdk46.0.20221114145317-d6e67fd50956" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg" + }, + "description": "Liquid Stake your Cosmos assets with your preferred validator and receive liquid staked assets (qASSETs) that you can use for swapping, pooling, lending, and more, all while your original stake earns staking APY from securing the network.", + "apis": { + "rpc": [ { - address: 'https://rpc-quicksilver.takeshi.team:443', - provider: 'TAKESHI' + "address": "https://rpc-quicksilver.takeshi.team:443", + "provider": "TAKESHI" }, { - address: 'https://rpc.quicksilver.zone:443', - provider: 'Quicksilver' + "address": "https://rpc.quicksilver.zone:443", + "provider": "Quicksilver" }, { - address: 'http://quicksilver.statesync.nodersteam.com:16657', - provider: '[NODERS]TEAM' + "address": "http://quicksilver.statesync.nodersteam.com:16657", + "provider": "[NODERS]TEAM" }, { - address: 'https://rpc-quicksilver-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "https://rpc-quicksilver-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'https://quicksilver-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://quicksilver-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-quicksilver.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-quicksilver.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://m-quicksilver.rpc.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-quicksilver.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'http://quick.rpc.m.stavr.tech:21027', - provider: '🔥STAVR🔥' + "address": "http://quick.rpc.m.stavr.tech:21027", + "provider": "🔥STAVR🔥" }, { - address: 'https://quicksilver-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://quicksilver-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://quicksilver-rpc.ibs.team:443', - provider: 'Inter Blockchain Services' + "address": "https://quicksilver-rpc.ibs.team:443", + "provider": "Inter Blockchain Services" }, { - address: 'https://quicksilver.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://quicksilver.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://rpc-quicksilver.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rpc-quicksilver.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://rpc.quicksilver.indonode.net', - provider: 'Indonode' + "address": "https://rpc.quicksilver.indonode.net", + "provider": "Indonode" }, { - address: 'https://quicksilver-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://quicksilver-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://quicksilver-rpc.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://quicksilver-rpc.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://quicksilver-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://quicksilver-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://rpc-quicksilver.mms.team/', - provider: 'MMS' + "address": "https://rpc-quicksilver.mms.team/", + "provider": "MMS" }, { - address: 'https://quicksilver-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://quicksilver-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://quicksilver-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://quicksilver-rpc.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://mainnet-quicksilver-rpc.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-quicksilver-rpc.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://quicksilver.tdrsys.com:2053', - provider: 'TdrSys' + "address": "https://quicksilver.tdrsys.com:2053", + "provider": "TdrSys" } ], - rest: [ + "rest": [ { - address: 'https://api-quicksilver.takeshi.team:443', - provider: 'TAKESHI' + "address": "https://api-quicksilver.takeshi.team:443", + "provider": "TAKESHI" }, { - address: 'https://api-quicksilver-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "https://api-quicksilver-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'http://quicksilver.api.nodersteam.com:16017', - provider: '[NODERS]TEAM' + "address": "http://quicksilver.api.nodersteam.com:16017", + "provider": "[NODERS]TEAM" }, { - address: 'https://quicksilver-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://quicksilver-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-quicksilver.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-quicksilver.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://quicksilver-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://quicksilver-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://m-quicksilver.api.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-quicksilver.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://quick.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://quick.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://quicksilver.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://quicksilver.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://rest-quicksilver.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rest-quicksilver.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://api.quicksilver.indonode.net', - provider: 'Indonode' + "address": "https://api.quicksilver.indonode.net", + "provider": "Indonode" }, { - address: 'https://quicksilver-rest.staketab.org', - provider: 'Staketab' + "address": "https://quicksilver-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://quicksilver-api.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://quicksilver-api.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://quicksilver-api.w3coins.io', - provider: 'w3coins' + "address": "https://quicksilver-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://api-quicksilver.mms.team', - provider: 'MMS' + "address": "https://api-quicksilver.mms.team", + "provider": "MMS" }, { - address: 'https://quicksilver-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://quicksilver-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://quicksilver-api.stake-town.com', - provider: 'StakeTown' + "address": "https://quicksilver-api.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://mainnet-quicksilver-api.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-quicksilver-api.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://quicksilver.tdrsys.com', - provider: 'TdrSys' + "address": "https://quicksilver.tdrsys.com", + "provider": "TdrSys" } ], - grpc: [ + "grpc": [ { - address: 'grpc-quicksilver.takeshi.team:443', - provider: 'TAKESHI' + "address": "grpc-quicksilver.takeshi.team:443", + "provider": "TAKESHI" }, { - address: 'grpc-quicksilver-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-quicksilver-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'quicksilver-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "quicksilver-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'quicksilver.grpc.nodersteam.com:9161', - provider: '[NODERS]TEAM' + "address": "quicksilver.grpc.nodersteam.com:9161", + "provider": "[NODERS]TEAM" }, { - address: 'grpc-quicksilver.cosmos-spaces.cloud:3300', - provider: 'Cosmos Spaces' + "address": "grpc-quicksilver.cosmos-spaces.cloud:3300", + "provider": "Cosmos Spaces" }, { - address: 'quicksilver-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "quicksilver-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'quicksilver.grpc.kjnodes.com:11190', - provider: 'kjnodes' + "address": "quicksilver.grpc.kjnodes.com:11190", + "provider": "kjnodes" }, { - address: 'quick.grpc.m.stavr.tech:9113', - provider: '🔥STAVR🔥' + "address": "quick.grpc.m.stavr.tech:9113", + "provider": "🔥STAVR🔥" }, { - address: 'grpc-quicksilver.architectnodes.com:1443', - provider: 'Architect Nodes' + "address": "grpc-quicksilver.architectnodes.com:1443", + "provider": "Architect Nodes" }, { - address: 'archive-grpc-quicksilver.huginn.tech:9090', - provider: 'Huginn' + "address": "archive-grpc-quicksilver.huginn.tech:9090", + "provider": "Huginn" }, { - address: 'https://grpc.quicksilver.indonode.net:28090', - provider: 'Indonode' + "address": "https://grpc.quicksilver.indonode.net:28090", + "provider": "Indonode" }, { - address: 'services.staketab.com:9034', - provider: 'Staketab' + "address": "services.staketab.com:9034", + "provider": "Staketab" }, { - address: 'https://quicksilver-grpc.theamsolutions.info:9797', - provider: 'AM Solutions' + "address": "https://quicksilver-grpc.theamsolutions.info:9797", + "provider": "AM Solutions" }, { - address: 'quicksilver-grpc.w3coins.io:11190', - provider: 'w3coins' + "address": "quicksilver-grpc.w3coins.io:11190", + "provider": "w3coins" }, { - address: 'grpc-quicksilver.mms.team:443', - provider: 'MMS' + "address": "grpc-quicksilver.mms.team:443", + "provider": "MMS" }, { - address: 'quicksilver-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "quicksilver-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'quicksilver-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "quicksilver-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'mainnet-quicksilver.konsortech.xyz:46090', - provider: 'KonsorTech' + "address": "mainnet-quicksilver.konsortech.xyz:46090", + "provider": "KonsorTech" }, { - address: 'https://quicksilver.tdrsys.com:2083', - provider: 'TdrSys' + "address": "https://quicksilver.tdrsys.com:2083", + "provider": "TdrSys" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/quicksilver', - tx_page: 'https://www.mintscan.io/quicksilver/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/quicksilver/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/quicksilver", + "tx_page": "https://www.mintscan.io/quicksilver/transactions/${txHash}", + "account_page": "https://www.mintscan.io/quicksilver/accounts/${accountAddress}" }, { - kind: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 explorer', - url: 'https://exp.utsa.tech/quicksilver', - tx_page: 'https://exp.utsa.tech/quicksilver/tx/${txHash}' + "kind": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 explorer", + "url": "https://exp.utsa.tech/quicksilver", + "tx_page": "https://exp.utsa.tech/quicksilver/tx/${txHash}" }, { - kind: '🔥STAVR🔥 explorer', - url: 'https://explorer.stavr.tech/quicksilver-mainnet', - tx_page: 'https://explorer.stavr.tech/quicksilver-mainnet/tx/${txHash}' + "kind": "🔥STAVR🔥 explorer", + "url": "https://explorer.stavr.tech/quicksilver-mainnet", + "tx_page": "https://explorer.stavr.tech/quicksilver-mainnet/tx/${txHash}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/quicksilver', - tx_page: 'https://bigdipper.live/quicksilver/transactions/${txHash}', - account_page: - 'https://bigdipper.live/quicksilver/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/quicksilver", + "tx_page": "https://bigdipper.live/quicksilver/transactions/${txHash}", + "account_page": "https://bigdipper.live/quicksilver/accounts/${accountAddress}" }, { - kind: 'Stake-Take', - url: 'https://explorer.stake-take.com/quicksilver', - tx_page: 'https://explorer.stake-take.com/quicksilver/tx/${txHash}' + "kind": "Stake-Take", + "url": "https://explorer.stake-take.com/quicksilver", + "tx_page": "https://explorer.stake-take.com/quicksilver/tx/${txHash}" }, { - kind: 'AM Solutions Explorers', - url: 'https://explorer.theamsolutions.info/quicksilver-main/staking', - tx_page: - 'https://explorer.theamsolutions.info/quicksilver-main/tx/${txHash}' + "kind": "AM Solutions Explorers", + "url": "https://explorer.theamsolutions.info/quicksilver-main/staking", + "tx_page": "https://explorer.theamsolutions.info/quicksilver-main/tx/${txHash}" }, { - kind: 'KonsorTech', - url: 'https://explorer.konsortech.xyz/quicksilver/staking', - tx_page: 'https://explorer.konsortech.xyz/quicksilver/tx/${txHash}' + "kind": "KonsorTech", + "url": "https://explorer.konsortech.xyz/quicksilver/staking", + "tx_page": "https://explorer.konsortech.xyz/quicksilver/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'qwoyn', - status: 'live', - network_type: 'mainnet', - website: 'https://qwoyn.studio/', - pretty_name: 'Qwoyn', - chain_id: 'qwoyn-1', - bech32_prefix: 'qwoyn', - daemon_name: 'qwoynd', - node_home: '$HOME/.qwoynd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uqwoyn', - fixed_min_gas_price: 0.03, - low_gas_price: 0.03, - average_gas_price: 0.05, - high_gas_price: 0.075 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uqwoyn' - } - ] - }, - codebase: { - git_repo: 'https://github.com/cosmic-horizon/QWOYN', - recommended_version: 'v5.3.0', - compatible_versions: ['v5.3.0'], - cosmos_sdk_version: '0.47.6', - ibc_go_version: '7.0.1', - ics_enabled: ['ics20-1', 'ics27-1'], - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmwasm_version: '0.40.0', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/cosmic-horizon/mainnet/main/genesis.json' - }, - versions: [ - { - name: 'v5.0.2', - tag: 'v5.0.2', - recommended_version: 'v5.0.2', - compatible_versions: ['v5.0.2'], - cosmos_sdk_version: '0.47.3', - ibc_go_version: '7.0.1', - consensus: { - type: 'cometbft', - version: 'v0.37.1' - }, - binaries: { - 'linux/amd64': - 'https://github.com/cosmic-horizon/QWOYN/releases/download/v5.0.2/qwoynd_5.0.2_linux_amd64.zip' - }, - next_version_name: 'v5.1.0' - }, - { - name: 'v5.1.0', - tag: 'v5.1.0', - proposal: 1, - height: 280850, - recommended_version: 'v5.1.0', - compatible_versions: ['v5.1.0'], - cosmos_sdk_version: '0.47.3', - ibc_go_version: '7.0.1', - consensus: { - type: 'cometbft', - version: 'v0.37.1' - }, - next_version_name: 'v5.2.0' - }, - { - name: 'v5.2.0', - tag: 'v5.2.0', - proposal: 4, - height: 805404, - recommended_version: 'v5.2.0', - compatible_versions: ['v5.2.0'], - cosmos_sdk_version: '0.47.3', - ibc_go_version: '7.0.1', - consensus: { - type: 'cometbft', - version: 'v0.37.1' - }, - next_version_name: 'v5.3.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "qwoyn", + "status": "live", + "network_type": "mainnet", + "website": "https://qwoyn.studio/", + "pretty_name": "Qwoyn", + "chain_id": "qwoyn-1", + "bech32_prefix": "qwoyn", + "daemon_name": "qwoynd", + "node_home": "$HOME/.qwoynd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v5.3.0', - tag: 'v5.3.0', - proposal: 13, - height: 2789768, - recommended_version: 'v5.3.0', - compatible_versions: ['v5.3.0'], - cosmos_sdk_version: '0.47.6', - ibc_go_version: '7.0.1', - ics_enabled: ['ics20-1', 'ics27-1'], - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmwasm_version: '0.40.0', - next_version_name: '' + "denom": "uqwoyn", + "fixed_min_gas_price": 0.03, + "low_gas_price": 0.03, + "average_gas_price": 0.05, + "high_gas_price": 0.075 } ] }, - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:23556' - }, - { - id: '2a22c052e6ffe875bf38d1c25ad7e04daa638967', - address: 'seed-qwoyn.theamsolutions.info:22256' - }, - { - id: '9aa8a73ea9364aa3cf7806d4dd25b6aed88d8152', - address: 'qwoyn.seed.mzonder.com:11656', - provider: 'MZONDER' - } - ], - persistent_peers: [ - { - id: '3a519507bb033a9b10b299adfd7cafb96d35215c', - address: '47.5.80.5:26646' - }, - { - id: '499d72d9954c0fd2011eeee3629bf993c5d920ae', - address: '62.171.166.106:33657' - }, - { - id: 'd0c6ae2457d0066331f30638b0240b162e695cb5', - address: '94.250.203.61:33657' - }, - { - id: '9c89c3644518d295b51b2e396dce00db0b16cd4d', - address: '148.251.235.130:13656' + "denom": "uqwoyn" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.47.6", + "cosmwasm_version": "0.40.0" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.qwoyn.studio:443', - provider: 'Qwoyn Studios' + "address": "https://rpc.qwoyn.studio:443", + "provider": "Qwoyn Studios" }, { - address: 'https://rpc-qwoyn.theamsolutions.info:443', - provider: 'AM Solutions' + "address": "https://rpc-qwoyn.theamsolutions.info:443", + "provider": "AM Solutions" }, { - address: 'https://qwoyn-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://qwoyn-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://qwoyn-rpc-archive.staketab.org:443', - provider: 'Staketab archive' + "address": "https://qwoyn-rpc-archive.staketab.org:443", + "provider": "Staketab archive" }, { - address: 'https://qwoyn-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://qwoyn-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc-qwoyn.mzonder.com:443', - provider: 'MZONDER' + "address": "https://rpc-qwoyn.mzonder.com:443", + "provider": "MZONDER" }, { - address: 'https://rpc.qwoyn.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.qwoyn.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'services.staketab.com:9430', - provider: 'Staketab' + "address": "services.staketab.com:9430", + "provider": "Staketab" }, { - address: 'services.staketab.com:2000', - provider: 'Staketab archive' + "address": "services.staketab.com:2000", + "provider": "Staketab archive" }, { - address: 'https://grpc-qwoyn.theamsolutions.info:443', - provider: 'AM Solutions' + "address": "https://grpc-qwoyn.theamsolutions.info:443", + "provider": "AM Solutions" }, { - address: 'https://qwoyn-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://qwoyn-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'grpc-qwoyn.mzonder.com:443', - provider: 'MZONDER' + "address": "grpc-qwoyn.mzonder.com:443", + "provider": "MZONDER" }, { - address: 'https://grpc.qwoyn.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.qwoyn.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ + "rest": [ { - address: 'https://rest-qwoyn.theamsolutions.info:443', - provider: 'AM Solutions' + "address": "https://rest-qwoyn.theamsolutions.info:443", + "provider": "AM Solutions" }, { - address: 'https://qwoyn-rest.staketab.org', - provider: 'Staketab' + "address": "https://qwoyn-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://qwoyn-rest-archive.staketab.org', - provider: 'Staketab archive' + "address": "https://qwoyn-rest-archive.staketab.org", + "provider": "Staketab archive" }, { - address: 'https://qwoyn-api.lavenderfive.com', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://qwoyn-api.lavenderfive.com", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-qwoyn.mzonder.com', - provider: 'MZONDER' + "address": "https://api-qwoyn.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://lcd.qwoyn.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.qwoyn.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping', - url: 'https://explorer.theamsolutions.info/qwoyn-main/', - tx_page: 'https://explorer.theamsolutions.info/qwoyn-main/blocks', - account_page: - 'https://explorer.theamsolutions.info/qwoyn-main/account/${accountAddress}' + "kind": "ping", + "url": "https://explorer.theamsolutions.info/qwoyn-main/", + "tx_page": "https://explorer.theamsolutions.info/qwoyn-main/blocks", + "account_page": "https://explorer.theamsolutions.info/qwoyn-main/account/${accountAddress}" }, { - kind: 'ping', - url: 'https://explorer.theamsolutions.info/QWOYN-MAIN', - tx_page: 'https://explorer.theamsolutions.info/QWOYN-MAIN/tx/${txHash}', - account_page: - 'https://explorer.theamsolutions.info/QWOYN-MAIN/account/${accountAddress}' + "kind": "ping", + "url": "https://explorer.theamsolutions.info/QWOYN-MAIN", + "tx_page": "https://explorer.theamsolutions.info/QWOYN-MAIN/tx/${txHash}", + "account_page": "https://explorer.theamsolutions.info/QWOYN-MAIN/account/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'realio', - status: 'live', - network_type: 'mainnet', - website: 'https://realio.network/', - pretty_name: 'Realio Network', - chain_id: 'realionetwork_3301-1', - bech32_prefix: 'realio', - node_home: '$HOME/.realio-network', - daemon_name: 'realio-networkd', - key_algos: ['ethsecp256k1'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'ario', - fixed_min_gas_price: 1000000000, - low_gas_price: 4000000000, - average_gas_price: 5000000000, - high_gas_price: 8000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ario' - }, - { - denom: 'arst' - } - ] - }, - codebase: { - git_repo: 'https://github.com/realiotech/realio-network', - recommended_version: 'v0.8.3', - compatible_versions: ['v0.8.2', 'v0.8.3'], - binaries: { - 'linux/amd64': - 'https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Windows_x86_64.zip' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - ibc_go_version: '6.1.1', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/realiotech/mainnet/main/realionetwork_3301-1/genesis.json' - }, - versions: [ - { - name: 'v0.8.0-rc4', - recommended_version: 'v0.8.0-rc4', - compatible_versions: ['v0.8.0-rc4'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '6.1.0', - next_version_name: 'v0.8.1' - }, - { - name: 'v0.8.1', - recommended_version: 'v0.8.1', - compatible_versions: ['v0.8.1'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '6.1.1', - next_version_name: 'v0.8.3' - }, - { - name: 'v0.8.3', - recommended_version: 'v0.8.3', - compatible_versions: ['v0.8.2', 'v0.8.3'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - ibc_go_version: '6.1.1', - binaries: { - 'linux/amd64': - 'https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/realiotech/realio-network/releases/download/v0.8.3/realio-network_Windows_x86_64.zip' - } + "$schema": "../chain.schema.json", + "chain_name": "realio", + "status": "live", + "network_type": "mainnet", + "website": "https://realio.network/", + "pretty_name": "Realio Network", + "chain_id": "realionetwork_3301-1", + "bech32_prefix": "realio", + "node_home": "$HOME/.realio-network", + "daemon_name": "realio-networkd", + "key_algos": [ + "ethsecp256k1" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "ario", + "fixed_min_gas_price": 1000000000, + "low_gas_price": 4000000000, + "average_gas_price": 5000000000, + "high_gas_price": 8000000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png' - }, - peers: { - seeds: [ - { - id: '09ba537d6563018b97c502979c3478df4decf426', - address: 'realio-seed.genznodes.dev:21656', - provider: 'genznodes' - }, - { - id: '6b236897e8c5f5de93f65c7299dff990ee5fcb45', - address: 'realio.seed.bccnodes.com', - provider: 'BccNodes' - } - ], - persistent_peers: [ - { - id: '96ab7d2dafe2039cbb55e59cb99bcb7e1369c9a0', - address: '95.214.55.138:30656', - provider: 'genznodes' - }, - { - id: 'b09d477f5b59e5e99632ad3a8a11806381efa46f', - address: 'realio.peers.stavr.tech:21096', - provider: '🔥STAVR🔥' - }, - { - id: 'ebd1438f2f6e583d6e5accf749eda5e8005702e9', - address: '148.251.66.248:26656', - provider: '[NODERS]TEAM' - }, - { - id: '9fe6d3bd18bb5367396b6602a65e20b302d36b33', - address: 'rpc.realio.indonode.net:18656', - provider: 'Indonode' - }, + "staking": { + "staking_tokens": [ { - id: '042ecfc55f2ca63a850d17921d55f241c8de7ce0', - address: '65.108.206.74:22656', - provider: 'vinjan' + "denom": "ario" }, { - id: '2b66ae5a5c13e0efd9875c0faf4015e3dcb10c26', - address: 'p2p.realio.safeblock.space:26656', - provider: 'Safe Block' + "denom": "arst" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png" + }, + "apis": { + "rpc": [ { - address: 'https://realio-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://realio-rpc.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://realio.rpc.bccnodes.com/', - provider: 'BccNodes' + "address": "https://realio.rpc.bccnodes.com/", + "provider": "BccNodes" }, { - address: 'https://rpc-realio-network.nodeist.net', - provider: 'Nodeist' + "address": "https://rpc-realio-network.nodeist.net", + "provider": "Nodeist" }, { - address: 'http://realio.rpc.m.stavr.tech:21097', - provider: '🔥STAVR🔥' + "address": "http://realio.rpc.m.stavr.tech:21097", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc.realio.indonode.net', - provider: 'Indonode' + "address": "https://rpc.realio.indonode.net", + "provider": "Indonode" }, { - address: 'https://rpc.realio.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.realio.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://rpc-realio.vinjan.xyz', - provider: 'vinjan' + "address": "https://rpc-realio.vinjan.xyz", + "provider": "vinjan" }, { - address: 'https://api-realio.sr20de.xyz', - provider: 'Sr20de' + "address": "https://api-realio.sr20de.xyz", + "provider": "Sr20de" }, { - address: 'https://rpc.realio.safeblock.space', - provider: 'Safe Block' + "address": "https://rpc.realio.safeblock.space", + "provider": "Safe Block" } ], - rest: [ + "rest": [ { - address: 'https://realio-api.genznodes.dev', - provider: 'genznodes' + "address": "https://realio-api.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://realio.lcd.bccnodes.com/', - provider: 'BccNodes' + "address": "https://realio.lcd.bccnodes.com/", + "provider": "BccNodes" }, { - address: 'https://api-realio-network.nodeist.net', - provider: 'Nodeist' + "address": "https://api-realio-network.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://realio.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://realio.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api.realio.indonode.net', - provider: 'Indonode' + "address": "https://api.realio.indonode.net", + "provider": "Indonode" }, { - address: 'https://api.realio.nodestake.top', - provider: 'NodeStake' + "address": "https://api.realio.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://api-realio.vinjan.xyz', - provider: 'vinjan' + "address": "https://api-realio.vinjan.xyz", + "provider": "vinjan" }, { - address: 'https://rpc-realio.sr20de.xyz', - provider: 'Sr20de' + "address": "https://rpc-realio.sr20de.xyz", + "provider": "Sr20de" }, { - address: 'https://api.realio.safeblock.space', - provider: 'Safe Block' + "address": "https://api.realio.safeblock.space", + "provider": "Safe Block" } ], - grpc: [ + "grpc": [ { - address: 'realio-grpc.genznodes.dev:30090', - provider: 'genznodes' + "address": "realio-grpc.genznodes.dev:30090", + "provider": "genznodes" }, { - address: 'realio.grpc.bccnodes.com:10990', - provider: 'BccNodes' + "address": "realio.grpc.bccnodes.com:10990", + "provider": "BccNodes" }, { - address: 'http://realio.grpc.m.stavr.tech:9062', - provider: '🔥STAVR🔥' + "address": "http://realio.grpc.m.stavr.tech:9062", + "provider": "🔥STAVR🔥" }, { - address: 'https://grpc-realio.nodeist.net', - provider: 'Nodeist' + "address": "https://grpc-realio.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://grpc.realio.nodestake.top:443', - provider: 'NodeStake' + "address": "https://grpc.realio.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://grpc-realio.sr20de.xyz', - provider: 'Sr20de' + "address": "https://grpc-realio.sr20de.xyz", + "provider": "Sr20de" }, { - address: 'grpc.realio.safeblock.space:9090', - provider: 'Safe Block' + "address": "grpc.realio.safeblock.space:9090", + "provider": "Safe Block" }, { - address: 'realio.grpc.skynodejs.net', - provider: 'skynodejs' + "address": "realio.grpc.skynodejs.net", + "provider": "skynodejs" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://realio-rpc-evm.genznodes.dev', - provider: 'genznodes' + "address": "https://realio-rpc-evm.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://jsonrpc.realio.nodestake.top', - provider: 'NodeStake' + "address": "https://jsonrpc.realio.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://evm-realio.sr20de.xyz', - provider: 'Sr20de' + "address": "https://evm-realio.sr20de.xyz", + "provider": "Sr20de" }, { - address: 'https://evm.realio.safeblock.space', - provider: 'Safe Block' + "address": "https://evm.realio.safeblock.space", + "provider": "Safe Block" } ] }, - explorers: [ + "explorers": [ { - kind: '🔥STAVR🔥 Explorer', - url: 'https://explorer.stavr.tech/realio-mainnet', - tx_page: 'https://explorer.stavr.tech/realio-mainnet/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/realio-mainnet/account/{$accountAddress}' + "kind": "🔥STAVR🔥 Explorer", + "url": "https://explorer.stavr.tech/realio-mainnet", + "tx_page": "https://explorer.stavr.tech/realio-mainnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/realio-mainnet/account/{$accountAddress}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/realio', - tx_page: 'https://explorer.nodestake.top/realio/tx/${txHash}', - account_page: - 'https://explorer.nodestake.top/realio/account/{$accountAddress}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/realio", + "tx_page": "https://explorer.nodestake.top/realio/tx/${txHash}", + "account_page": "https://explorer.nodestake.top/realio/account/{$accountAddress}" }, { - kind: 'Sr20de Explorer', - url: 'https://explorer.sr20de.xyz/Realio', - tx_page: 'https://explorer.sr20de.xyz/Realio/tx/${txHash}', - account_page: - 'https://explorer.sr20de.xyz/Realio/account/{$accountAddress}' + "kind": "Sr20de Explorer", + "url": "https://explorer.sr20de.xyz/Realio", + "tx_page": "https://explorer.sr20de.xyz/Realio/tx/${txHash}", + "account_page": "https://explorer.sr20de.xyz/Realio/account/{$accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/realio', - tx_page: 'https://explorer.tcnetwork.io/realio/transaction/${txHash}', - account_page: - 'https://explorer.tcnetwork.io/realio/account/${accountAddress}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/realio", + "tx_page": "https://explorer.tcnetwork.io/realio/transaction/${txHash}", + "account_page": "https://explorer.tcnetwork.io/realio/account/${accountAddress}" }, { - kind: 'Safe Block', - url: 'https://explorer.safeblock.space/realio', - tx_page: 'https://explorer.safeblock.space/realio/tx/${txHash}', - account_page: - 'https://explorer.safeblock.space/realio/account/${accountAddress}' + "kind": "Safe Block", + "url": "https://explorer.safeblock.space/realio", + "tx_page": "https://explorer.safeblock.space/realio/tx/${txHash}", + "account_page": "https://explorer.safeblock.space/realio/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'rebus', - website: 'https://www.rebuschain.com/', - status: 'live', - network_type: 'mainnet', - pretty_name: 'Rebus', - chain_id: 'reb_1111-1', - bech32_prefix: 'rebus', - daemon_name: 'rebusd', - node_home: '$HOME/.rebusd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "rebus", + "website": "https://www.rebuschain.com/", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Rebus", + "chain_id": "reb_1111-1", + "bech32_prefix": "rebus", + "daemon_name": "rebusd", + "node_home": "$HOME/.rebusd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'arebus', - fixed_min_gas_price: 0, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.04 + "denom": "arebus", + "fixed_min_gas_price": 0, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'arebus' + "denom": "arebus" } ] }, - codebase: { - git_repo: 'https://github.com/rebuschain/rebus.core', - recommended_version: 'v0.4.0', - compatible_versions: ['v0.4.0'], - versions: [ - { - name: 'v0.1.2', - tag: 'v0.1.2', - height: 0, - next_version_name: 'v0.2.0' - }, - { - name: 'v0.2.0', - tag: 'v0.2.3', - proposal: 18, - height: 473400, - recommended_version: 'v0.2.3', - compatible_versions: ['v0.2.3'], - next_version_name: 'v0.3.0' - }, - { - name: 'v0.3.0', - tag: 'v0.3.0', - proposal: 25, - height: 4167000, - recommended_version: 'v0.3.0', - compatible_versions: ['v0.3.0'], - next_version_name: 'v0.3.0' - }, - { - name: 'v0.4.0', - tag: 'v0.4.0', - proposal: 31, - height: 9464700, - recommended_version: 'v0.4.0', - compatible_versions: ['v0.4.0'], - next_version_name: '' - } - ], - genesis: { - genesis_url: - 'https://github.com/rebuschain/rebus.mainnet/raw/master/reb_1111-1/genesis.zip' - } - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' - }, - peers: { - seeds: [ - { - id: '718706d1a1e93c2fe9a3059588236cf96c457ff4', - address: 'seed.rebus.cros-nest.com:26656' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:17256', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'rebus-mainnet-seed.autostake.com:26906', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: '0863966356f6532377aeba663415258d44ddbd13', - address: 'rebus.peer.stavr.tech:40106', - provider: '🔥STAVR🔥' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'rebus-mainnet-peer.autostake.com:26906', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '9c7c067bd73bddfe8da39087cdae37c4fc5ec6e3', - address: '5.9.69.107:26656', - provider: '[NODERS]TEAM' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://api.rebuschain.com:26657/', - provider: 'Rebuschain' + "address": "https://api.rebuschain.com:26657/", + "provider": "Rebuschain" }, { - address: 'https://rebus.rpc.bccnodes.com:443', - provider: 'BccNodes' + "address": "https://rebus.rpc.bccnodes.com:443", + "provider": "BccNodes" }, { - address: 'https://rebus.rpc.manticore.team:443/', - provider: 'MantiCore' + "address": "https://rebus.rpc.manticore.team:443/", + "provider": "MantiCore" }, { - address: 'http://rebus.statesync.nodersteam.com:18657', - provider: '[NODERS]TEAM' + "address": "http://rebus.statesync.nodersteam.com:18657", + "provider": "[NODERS]TEAM" }, { - address: 'https://rpc.rebus.nodestake.top/', - provider: 'NodeStake' + "address": "https://rpc.rebus.nodestake.top/", + "provider": "NodeStake" }, { - address: 'http://rebus.rpc.m.stavr.tech:40107', - provider: '🔥STAVR🔥' + "address": "http://rebus.rpc.m.stavr.tech:40107", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc-1.rebus.nodes.guru', - provider: 'Nodes.Guru' + "address": "https://rpc-1.rebus.nodes.guru", + "provider": "Nodes.Guru" }, { - address: 'https://api.mainnet.rebus.money:26657', - provider: 'Rebuschain' + "address": "https://api.mainnet.rebus.money:26657", + "provider": "Rebuschain" }, { - address: 'https://rebus-rpc.brocha.in', - provider: 'Brochain' + "address": "https://rebus-rpc.brocha.in", + "provider": "Brochain" }, { - address: 'https://rebus-rpc.kleomedes.network', - provider: 'Kleomedes' + "address": "https://rebus-rpc.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://rebus-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://rebus-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rebus.rpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://rebus.rpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://rebus-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://rebus-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - rest: [ + "rest": [ { - address: 'https://api.rebuschain.com:1317/', - provider: 'Rebuschain' + "address": "https://api.rebuschain.com:1317/", + "provider": "Rebuschain" }, { - address: 'http://rebus.api.nodersteam.com:18017', - provider: '[NODERS]TEAM' + "address": "http://rebus.api.nodersteam.com:18017", + "provider": "[NODERS]TEAM" }, { - address: 'https://rebus.api.manticore.team:443/', - provider: 'MantiCore' + "address": "https://rebus.api.manticore.team:443/", + "provider": "MantiCore" }, { - address: 'https://api.rebus.nodestake.top/', - provider: 'NodeStake' + "address": "https://api.rebus.nodestake.top/", + "provider": "NodeStake" }, { - address: 'https://rebus.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://rebus.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api-1.rebus.nodes.guru', - provider: 'Nodes.Guru' + "address": "https://api-1.rebus.nodes.guru", + "provider": "Nodes.Guru" }, { - address: 'https://api.mainnet.rebus.money:1317', - provider: 'Rebuschain' + "address": "https://api.mainnet.rebus.money:1317", + "provider": "Rebuschain" }, { - address: 'https://rebus-rest.brocha.in', - provider: 'Brochain' + "address": "https://rebus-rest.brocha.in", + "provider": "Brochain" }, { - address: 'https://rebus-api.kleomedes.network', - provider: 'Kleomedes' + "address": "https://rebus-api.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://rebus-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://rebus-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rebus.api.liveraven.net', - provider: 'LiveRaveN' + "address": "https://rebus.api.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://rebus-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://rebus-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ + "grpc": [ { - address: 'rebus.grpc.manticore.team:443', - provider: 'MantiCore' + "address": "rebus.grpc.manticore.team:443", + "provider": "MantiCore" }, { - address: 'rebus.grpc.bccnodes.com:14090', - provider: 'BccNodes' + "address": "rebus.grpc.bccnodes.com:14090", + "provider": "BccNodes" }, { - address: 'grpc.rebus.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.rebus.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'rebus.grpc.nodersteam.com:9181', - provider: '[NODERS]TEAM' + "address": "rebus.grpc.nodersteam.com:9181", + "provider": "[NODERS]TEAM" }, { - address: 'http://rebus.grpc.m.stavr.tech:3211', - provider: '🔥STAVR🔥' + "address": "http://rebus.grpc.m.stavr.tech:3211", + "provider": "🔥STAVR🔥" }, { - address: 'rebus-grpc.brocha.in:443', - provider: 'Brochain' + "address": "rebus-grpc.brocha.in:443", + "provider": "Brochain" }, { - address: 'rebus-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "rebus-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rebus.grpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://rebus.grpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'rebus-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "rebus-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorers.guru', - url: 'https://rebus.explorers.guru', - tx_page: 'https://rebus.explorers.guru/transaction/${txHash}' + "kind": "explorers.guru", + "url": "https://rebus.explorers.guru", + "tx_page": "https://rebus.explorers.guru/transaction/${txHash}" }, { - kind: 'NodeStake', - url: 'https://explorer.nodestake.top/rebus', - tx_page: 'https://explorer.nodestake.top/rebus/tx/${txHash}' + "kind": "NodeStake", + "url": "https://explorer.nodestake.top/rebus", + "tx_page": "https://explorer.nodestake.top/rebus/tx/${txHash}" }, { - kind: 'BccNodes', - url: 'https://explorer.bccnodes.com/rebus-M', - tx_page: 'https://explorer.bccnodes.com/rebus-M/tx/${txHash}' + "kind": "BccNodes", + "url": "https://explorer.bccnodes.com/rebus-M", + "tx_page": "https://explorer.bccnodes.com/rebus-M/tx/${txHash}" }, { - kind: 'Brochain', - url: 'https://explorer.brocha.in/rebus', - tx_page: 'https://explorer.brocha.in/rebus/tx/${txHash}' + "kind": "Brochain", + "url": "https://explorer.brocha.in/rebus", + "tx_page": "https://explorer.brocha.in/rebus/tx/${txHash}" }, { - kind: '🔥STAVR🔥 Explorer', - url: 'https://explorer.stavr.tech/rebus', - tx_page: 'https://explorer.stavr.tech/rebus/tx/${txHash}' + "kind": "🔥STAVR🔥 Explorer", + "url": "https://explorer.stavr.tech/rebus", + "tx_page": "https://explorer.stavr.tech/rebus/tx/${txHash}" }, { - kind: 'tcnetwork', - url: 'https://rebus.tcnetwork.io', - tx_page: 'https://rebus.tcnetwork.io/transaction/${txHash}' + "kind": "tcnetwork", + "url": "https://rebus.tcnetwork.io", + "tx_page": "https://rebus.tcnetwork.io/transaction/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/rebus', - tx_page: 'https://atomscan.com/rebus/transactions/${txHash}', - account_page: 'https://atomscan.com/rebus/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/rebus", + "tx_page": "https://atomscan.com/rebus/transactions/${txHash}", + "account_page": "https://atomscan.com/rebus/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'regen', - status: 'live', - network_type: 'mainnet', - website: 'https://www.regen.network/', - pretty_name: 'Regen', - chain_id: 'regen-1', - bech32_prefix: 'regen', - daemon_name: 'regen', - node_home: '$HOME/.regen', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uregen', - low_gas_price: 0.015, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uregen' - } - ] - }, - codebase: { - git_repo: 'https://github.com/regen-network/regen-ledger', - recommended_version: 'v5.0.0', - compatible_versions: ['v5.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_linux_amd64.zip', - 'linux/arm64': - 'https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_linux_arm64.zip', - 'darwin/amd64': - 'https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_darwin_amd64.zip', - 'darwin/arm64': - 'https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_darwin_arm64.zip' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '5.2', - ics_enabled: ['ics20-1', 'ics27-1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/regen-network/mainnet/main/regen-1/genesis.json' - }, - versions: [ - { - name: 'v5.0.0', - recommended_version: 'v5.0.0', - compatible_versions: ['v5.0.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '5.2', - ics_enabled: ['ics20-1', 'ics27-1'], - binaries: { - 'linux/amd64': - 'https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_linux_amd64.zip', - 'linux/arm64': - 'https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_linux_arm64.zip', - 'darwin/amd64': - 'https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_darwin_amd64.zip', - 'darwin/arm64': - 'https://github.com/regen-network/regen-ledger/releases/download/v5.0.0/regen-ledger_5.0.0_darwin_arm64.zip' - } + "$schema": "../chain.schema.json", + "chain_name": "regen", + "status": "live", + "network_type": "mainnet", + "website": "https://www.regen.network/", + "pretty_name": "Regen", + "chain_id": "regen-1", + "bech32_prefix": "regen", + "daemon_name": "regen", + "node_home": "$HOME/.regen", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uregen", + "low_gas_price": 0.015, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - description: - 'Regen Network, a platform to originate and invest in high-integrity carbon and biodiversity credits from ecological regeneration projects.', - peers: { - seeds: [ - { - id: 'aebb8431609cb126a977592446f5de252d8b7fa1', - address: '104.236.201.138:26656' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'regen-mainnet-seed.autostake.com:27216', - provider: 'AutoStake 🛡️ Slash Protected' - } - ], - persistent_peers: [ + "staking": { + "staking_tokens": [ { - id: 'd35d652b6cb3bf7d6cb8d4bd7c036ea03e7be2ab', - address: '116.203.182.185:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'regen-mainnet-peer.autostake.com:27216', - provider: 'AutoStake 🛡️ Slash Protected' + "denom": "uregen" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46" + }, + "description": "Regen Network, a platform to originate and invest in high-integrity carbon and biodiversity credits from ecological regeneration projects.", + "apis": { + "rpc": [ { - address: 'https://rpc-regen.ecostake.com', - provider: 'ecostake' + "address": "https://rpc-regen.ecostake.com", + "provider": "ecostake" }, { - 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.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-regen-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://regen-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://regen-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://regen-rpc.easy2stake.com', - provider: 'Easy 2 Stake' + "address": "https://regen-rpc.easy2stake.com", + "provider": "Easy 2 Stake" }, { - address: 'https://regen-rpc.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://regen-rpc.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://regen-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://regen-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://regen-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://regen-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - 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.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-regen-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://regen-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://regen-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rest-regen.ecostake.com', - provider: 'ecostake' + "address": "https://rest-regen.ecostake.com", + "provider": "ecostake" }, { - address: 'https://regen-lcd.easy2stake.com', - provider: 'Easy 2 Stake' + "address": "https://regen-lcd.easy2stake.com", + "provider": "Easy 2 Stake" }, { - address: 'https://regen-api.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://regen-api.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://regen-api.w3coins.io', - provider: 'w3coins' + "address": "https://regen-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://regen-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://regen-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ + "grpc": [ { - address: 'grpc-regen-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-regen-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'regen-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "regen-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'regen-grpc.w3coins.io:22790', - provider: 'w3coins' + "address": "regen-grpc.w3coins.io:22790", + "provider": "w3coins" }, { - address: 'regen-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "regen-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/regen', - tx_page: 'https://www.mintscan.io/regen/transactions/${txHash}', - account_page: 'https://www.mintscan.io/regen/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/regen", + "tx_page": "https://www.mintscan.io/regen/transactions/${txHash}", + "account_page": "https://www.mintscan.io/regen/accounts/${accountAddress}" }, { - 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://bigdipper.live/regen', - tx_page: 'https://bigdipper.live/regen/transactions/${txHash}', - account_page: 'https://bigdipper.live/regen/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/regen", + "tx_page": "https://bigdipper.live/regen/transactions/${txHash}", + "account_page": "https://bigdipper.live/regen/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/regen-network', - tx_page: 'https://atomscan.com/regen-network/transactions/${txHash}', - account_page: - 'https://atomscan.com/regen-network/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/regen-network", + "tx_page": "https://atomscan.com/regen-network/transactions/${txHash}", + "account_page": "https://atomscan.com/regen-network/accounts/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'rizon', - status: 'live', - network_type: 'mainnet', - website: 'https://rizon.world/', - pretty_name: 'Rizon', - chain_id: 'titan-1', - bech32_prefix: 'rizon', - daemon_name: 'rizond', - node_home: '$HOME/.rizon', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "rizon", + "status": "live", + "network_type": "mainnet", + "website": "https://rizon.world/", + "pretty_name": "Rizon", + "chain_id": "titan-1", + "bech32_prefix": "rizon", + "daemon_name": "rizond", + "node_home": "$HOME/.rizon", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uatolo', - low_gas_price: 0.025, - average_gas_price: 0.025, - high_gas_price: 0.035 + "denom": "uatolo", + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.035 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'uatolo' + "denom": "uatolo" } ] }, - codebase: { - git_repo: 'https://github.com/rizon-world/rizon', - recommended_version: 'v0.4.1', - compatible_versions: ['v0.4.1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/rizon-world/mainnet/master/genesis.json' - }, - versions: [ - { - name: 'v0.4.1', - recommended_version: 'v0.4.1', - compatible_versions: ['v0.4.1'] - } - ] + "codebase": {}, + "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" }, - 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' - }, - peers: { - seeds: [ - { - id: '83c9cdc2db2b4eff4acc9cd7d664ad5ae6191080', - address: 'seed-1.mainnet.rizon.world:26656' - }, - { - id: 'ae1476777536e2be26507c4fbcf86b67540adb64', - address: 'seed-2.mainnet.rizon.world:26656' - }, - { - id: '8abf316257a264dc8744dee6be4981cfbbcaf4e4', - address: 'seed-3.mainnet.rizon.world:26656' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'f9b189e17add85a42a36d05fc57ed83c957e011e', - address: 'seed-rizon.ibs.team:16657', - provider: 'Inter Blockchain Services' - }, - { - id: 'f1dc52dd12a4e96d3ef2aa3ff1e6f648b4d232da', - address: 'seed-node.mms.team:38656', - provider: 'MMS' - } - ], - persistent_peers: [ - { - id: '71622e78b1840a1ca7c864a0b617dd4342a6c693', - address: 'peer-rizon.mms.team:26656', - provider: 'MMS' - } - ] - }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpcapi.rizon.world/', - provider: 'HDAC Technology AG' + "address": "https://rpcapi.rizon.world/", + "provider": "HDAC Technology AG" }, { - address: 'https://rpc.rizon.chaintools.tech/', - provider: 'ChainTools' + "address": "https://rpc.rizon.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://rizon-rpc.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://rizon-rpc.ibs.team/", + "provider": "Inter Blockchain Services" }, { - address: 'https://rizon-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://rizon-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - rest: [ + "rest": [ { - address: 'https://restapi.rizon.world/', - provider: 'HDAC Technology AG' + "address": "https://restapi.rizon.world/", + "provider": "HDAC Technology AG" }, { - address: 'https://api.rizon.chaintools.tech/', - provider: 'ChainTools' + "address": "https://api.rizon.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://rizon-api.ibs.team/', - provider: 'Inter Blockchain Services' + "address": "https://rizon-api.ibs.team/", + "provider": "Inter Blockchain Services" }, { - address: 'https://rizon-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://rizon-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ + "grpc": [ { - address: 'grpc-rizon.mms.team:443', - provider: 'MMS' + "address": "grpc-rizon.mms.team:443", + "provider": "MMS" }, { - address: 'rizon-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "rizon-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/rizon', - tx_page: 'https://app.ezstaking.io/rizon/txs/${txHash}', - account_page: 'https://app.ezstaking.io/rizon/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/rizon", + "tx_page": "https://app.ezstaking.io/rizon/txs/${txHash}", + "account_page": "https://app.ezstaking.io/rizon/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/rizon', - tx_page: 'https://www.mintscan.io/rizon/transactions/${txHash}', - account_page: 'https://www.mintscan.io/rizon/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/rizon", + "tx_page": "https://www.mintscan.io/rizon/transactions/${txHash}", + "account_page": "https://www.mintscan.io/rizon/accounts/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/rizon/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/rizon", + "tx_page": "https://atomscan.com/rizon/transactions/${txHash}", + "account_page": "https://atomscan.com/rizon/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/rizon', - tx_page: 'https://bigdipper.live/rizon/transactions/${txHash}', - account_page: 'https://bigdipper.live/rizon/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/rizon", + "tx_page": "https://bigdipper.live/rizon/transactions/${txHash}", + "account_page": "https://bigdipper.live/rizon/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'secretnetwork', - status: 'live', - network_type: 'mainnet', - website: 'https://scrt.network/', - pretty_name: 'Secret Network', - chain_id: 'secret-4', - bech32_prefix: 'secret', - daemon_name: 'secretd', - node_home: '$HOME/.secretd', - key_algos: ['secp256k1'], - slip44: 529, - alternative_slip44s: [118], - fees: { - fee_tokens: [ - { - denom: 'uscrt', - fixed_min_gas_price: 0.05, - low_gas_price: 0.05, - average_gas_price: 0.1, - high_gas_price: 0.25 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "secretnetwork", + "status": "live", + "network_type": "mainnet", + "website": "https://scrt.network/", + "pretty_name": "Secret Network", + "chain_id": "secret-4", + "bech32_prefix": "secret", + "daemon_name": "secretd", + "node_home": "$HOME/.secretd", + "key_algos": [ + "secp256k1" + ], + "slip44": 529, + "alternative_slip44s": [ + 118 + ], + "fees": { + "fee_tokens": [ { - denom: 'uscrt' + "denom": "uscrt", + "fixed_min_gas_price": 0.05, + "low_gas_price": 0.05, + "average_gas_price": 0.1, + "high_gas_price": 0.25 } ] }, - codebase: { - git_repo: 'https://github.com/scrtlabs/SecretNetwork', - recommended_version: 'v1.12.1', - compatible_versions: ['v1.12.1'], - binaries: { - 'linux/amd64': - 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.12.1/secretnetwork_1.12.1_mainnet_goleveldb_amd64.deb' - }, - genesis: { - genesis_url: - 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.2.0/genesis.json' - }, - versions: [ - { - name: 'v1.2', - tag: 'v1.2', - height: 0, - next_version_name: 'v1.3' - }, - { - name: 'v1.3', - tag: 'v1.3', - height: 3343000, - next_version_name: 'v1.4' - }, - { - name: 'v1.4', - tag: 'v1.4', - height: 5309200, - next_version_name: 'v1.5' - }, + "staking": { + "staking_tokens": [ { - name: 'v1.5', - tag: 'v1.5', - height: 5941700, - next_version_name: 'v1.6' - }, - { - name: 'v1.6', - tag: 'v1.6', - height: 6537300, - next_version_name: 'v1.7' - }, - { - name: 'v1.7', - tag: 'v1.7.1', - height: 7719500, - next_version_name: 'v1.8' - }, - { - name: 'v1.8', - tag: 'v1.8.0', - height: 7760000, - next_version_name: 'v1.9', - recommended_version: 'v1.8.0', - compatible_versions: ['v1.8.0'], - binaries: { - 'linux/amd64': - 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.8.0/secretnetwork_1.8.0_mainnet_goleveldb_amd64.deb' - } - }, - { - name: 'v1.9', - tag: 'v1.9.0', - height: 8861800, - recommended_version: 'v1.9.0', - compatible_versions: ['v1.9.0'], - binaries: { - 'linux/amd64': - 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.9.0/secretnetwork_1.9.0_mainnet_goleveldb_amd64.deb' - } - }, - { - name: 'v1.9', - tag: 'v1.9.2', - height: 8861815, - recommended_version: 'v1.9.2', - compatible_versions: ['v1.9.2'], - binaries: { - 'linux/amd64': - 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.9.2/secretnetwork_1.9.2_mainnet_goleveldb_amd64.deb' - }, - next_version_name: 'v1.10' - }, - { - name: 'v1.10', - tag: 'v1.10.0', - height: 10186400, - recommended_version: 'v1.10.0', - compatible_versions: ['v1.10.0'], - binaries: { - 'linux/amd64': - 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.10.0/secretnetwork_1.10.0_mainnet_goleveldb_amd64.deb' - }, - next_version_name: 'v1.11' - }, - { - name: 'v1.11', - tag: 'v1.11.0', - height: 10824000, - recommended_version: 'v1.11.0', - compatible_versions: ['v1.11.0'], - binaries: { - 'linux/amd64': - 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.11.0/secretnetwork_1.11.0_mainnet_goleveldb_amd64.deb' - }, - next_version_name: 'v1.12' - }, - { - name: 'v1.12', - tag: 'v1.12.1', - height: 11136666, - recommended_version: 'v1.12.1', - compatible_versions: ['v1.12.1'], - binaries: { - 'linux/amd64': - 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.12.1/secretnetwork_1.12.1_mainnet_goleveldb_amd64.deb' - }, - next_version_name: '' + "denom": "uscrt" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' - }, - description: - 'Secret Network is the first blockchain with customizable privacy. You get to choose what you share, with whom, and how. This protects users, and empowers developers to build a better Web3.', - peers: { - seeds: [ - { - 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: '9cdaa5856e0245ecd73bd464308fb990fbc53b57', - address: 'scrt-seed-03.scrtlabs.com:26656', - provider: 'SCRT Labs' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:17156', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:17156', - provider: 'WhisperNode 🤐' - }, - { - id: '5b0d6ef879fe1326045fa18d5bf767c5968704e6', - address: 'secretnetwork-mainnet-seed.autostake.com:26656', - provider: 'AutoStake 🛡️ Slash Protected' - } - ], - persistent_peers: [ - { - id: '5b0d6ef879fe1326045fa18d5bf767c5968704e6', - address: 'secretnetwork-mainnet-peer.autostake.com:26656', - provider: 'AutoStake 🛡️ Slash Protected' - } - ] + "codebase": {}, + "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" }, - apis: { - 'grpc-web': [ + "description": "Secret Network is the first blockchain with customizable privacy. You get to choose what you share, with whom, and how. This protects users, and empowers developers to build a better Web3.", + "apis": { + "grpc-web": [ { - address: 'https://wgrpc.secret.express', - provider: 'Secret Community API - Secret Express' + "address": "https://wgrpc.secret.express", + "provider": "Secret Community API - Secret Express" } ], - rpc: [ + "rpc": [ { - address: 'https://rpc.secret.express', - provider: 'Secret Community API - Secret Express' + "address": "https://rpc.secret.express", + "provider": "Secret Community API - Secret Express" }, { - address: 'https://scrt.public-rpc.com', - provider: 'ANKR' + "address": "https://scrt.public-rpc.com", + "provider": "ANKR" }, { - address: 'https://secretnetwork-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://secretnetwork-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://1rpc.io/scrt-rpc', - provider: '1RPC - Automata Network' + "address": "https://1rpc.io/scrt-rpc", + "provider": "1RPC - Automata Network" }, { - address: 'https://secretnetwork-rpc.highstakes.ch:26657/', - provider: 'High Stakes 🇨🇭' + "address": "https://secretnetwork-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" } ], - rest: [ + "rest": [ { - address: 'https://lcd.secret.express', - provider: 'Secret Community API - Secret Express' + "address": "https://lcd.secret.express", + "provider": "Secret Community API - Secret Express" }, { - address: 'https://secretnetwork-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://secretnetwork-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'http://secretnetwork-mainnet-lcd.autostake.com:1317', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "http://secretnetwork-mainnet-lcd.autostake.com:1317", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://1rpc.io/scrt-lcd', - provider: '1RPC - Automata Network' + "address": "https://1rpc.io/scrt-lcd", + "provider": "1RPC - Automata Network" }, { - address: 'https://secretnetwork-api.highstakes.ch:1317/', - provider: 'High Stakes 🇨🇭' + "address": "https://secretnetwork-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" } ], - grpc: [ + "grpc": [ { - address: 'secretnetwork-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "secretnetwork-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'secretnetwork-mainnet-grpc.autostake.com:9090', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "secretnetwork-mainnet-grpc.autostake.com:9090", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://grpc.secret.express', - provider: 'Secret Community API - Secret Express' + "address": "https://grpc.secret.express", + "provider": "Secret Community API - Secret Express" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/secretnetwork', - tx_page: 'https://app.ezstaking.io/secretnetwork/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/secretnetwork/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/secretnetwork", + "tx_page": "https://app.ezstaking.io/secretnetwork/txs/${txHash}", + "account_page": "https://app.ezstaking.io/secretnetwork/account/${accountAddress}" }, { - 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/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/secret/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/secret", + "tx_page": "https://www.mintscan.io/secret/transactions/${txHash}", + "account_page": "https://www.mintscan.io/secret/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/secret-network', - tx_page: 'https://atomscan.com/secret-network/transactions/${txHash}', - account_page: - 'https://atomscan.com/secret-network/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/secret-network", + "tx_page": "https://atomscan.com/secret-network/transactions/${txHash}", + "account_page": "https://atomscan.com/secret-network/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'sei', - status: 'live', - website: 'https://www.sei.io/', - network_type: 'mainnet', - pretty_name: 'Sei', - chain_id: 'pacific-1', - bech32_prefix: 'sei', - daemon_name: 'seid', - node_home: '$HOME/.sei', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'usei', - fixed_min_gas_price: 0.1, - low_gas_price: 0.1, - average_gas_price: 0.1, - high_gas_price: 0.25 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'usei' - } - ] - }, - codebase: { - git_repo: 'https://github.com/sei-protocol/sei-chain', - recommended_version: 'v3.5.1', - compatible_versions: ['v3.5.0', 'v3.5.1'], - ibc_go_version: 'sei-ibc-go/v3 v3.3.0', - cosmos_sdk_version: 'sei-cosmos v0.2.63', - consensus: { - type: 'sei-tendermint', - version: 'v0.2.35' - }, - cosmwasm_version: 'sei-wasmd v0.0.4', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.sei/wasm', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/sei-protocol/testnet/main/pacific-1/genesis.json' - }, - versions: [ - { - name: '', - recommended_version: '3.0.8', - compatible_versions: ['3.0.8'], - ibc_go_version: 'v3.0.0', - cosmos_sdk_version: 'v0.45.10', - cosmwasm_version: 'v0.27.0', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.sei/wasm', - next_version_name: 'v3.0.9' - }, - { - name: 'v3.0.9', - recommended_version: 'v3.0.9', - compatible_versions: ['v3.0.9'], - proposal: 24, - height: 25259000, - ibc_go_version: 'v3.1.0', - cosmos_sdk_version: 'v0.45.10', - cosmwasm_version: 'v0.27.0', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.sei/wasm', - next_version_name: 'v3.1.1' - }, - { - name: 'v3.1.1', - recommended_version: 'v3.1.1', - compatible_versions: ['v3.1.1'], - proposal: 32, - height: 29772820, - ibc_go_version: 'v3.2.0', - cosmos_sdk_version: 'v0.45.10', - cosmwasm_version: 'v0.27.0', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.sei/wasm', - next_version_name: 'v3.2.1' - }, - { - name: 'v3.2.1', - recommended_version: 'v3.2.1', - compatible_versions: ['v3.2.1'], - proposal: 42, - height: 34078260, - ibc_go_version: 'v3.2.0', - cosmos_sdk_version: 'v0.45.10', - cosmwasm_version: 'v0.27.0', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.sei/wasm', - next_version_name: 'v3.3.0' - }, - { - name: 'v3.3.0', - recommended_version: 'v3.3.4', - compatible_versions: ['v3.3.1', 'v3.3.2', 'v3.3.3', 'v3.3.4'], - ibc_go_version: 'sei-ibc-go/v3 v3.3.0', - cosmos_sdk_version: 'sei-cosmos v0.2.63', - consensus: { - type: 'sei-tendermint', - version: 'v0.2.28' - }, - cosmwasm_version: 'sei-wasmd v0.0.2', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.sei/wasm', - next_version_name: 'v3.5.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "sei", + "status": "live", + "website": "https://www.sei.io/", + "network_type": "mainnet", + "pretty_name": "Sei", + "chain_id": "pacific-1", + "bech32_prefix": "sei", + "daemon_name": "seid", + "node_home": "$HOME/.sei", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v3.5.0', - recommended_version: 'v3.5.1', - compatible_versions: ['v3.5.0', 'V3.5.1'], - ibc_go_version: 'sei-ibc-go/v3 v3.3.0', - cosmos_sdk_version: 'sei-cosmos v0.2.63', - consensus: { - type: 'sei-tendermint', - version: 'v0.2.35' - }, - cosmwasm_version: 'sei-wasmd v0.0.4', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.sei/wasm', - next_version_name: '' + "denom": "usei", + "fixed_min_gas_price": 0.1, + "low_gas_price": 0.1, + "average_gas_price": 0.1, + "high_gas_price": 0.25 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' - }, - description: - 'Sei is the fastest Layer 1 blockchain, designed to scale with the industry.', - peers: { - seeds: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:11956', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'sei-mainnet-seed.autostake.com:26806', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:11956', - provider: 'WhisperNode 🤐' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'sei.rpc.kjnodes.com:16859', - provider: 'kjnodes' - }, + "staking": { + "staking_tokens": [ { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:11956', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'sei-mainnet-peer.autostake.com:26806', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'd9bfa29e0cf9c4ce0cc9c26d98e5d97228f93b0b', - address: 'sei.rpc.kjnodes.com:16856', - provider: 'kjnodes' + "denom": "usei" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "sei-cosmos v0.2.63", + "cosmwasm_enabled": true, + "cosmwasm_version": "sei-wasmd v0.0.4" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg" + }, + "description": "Sei is the fastest Layer 1 blockchain, designed to scale with the industry.", + "apis": { + "rpc": [ { - address: 'https://sei-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://sei-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://sei-rpc.polkachu.com/', - provider: 'polkachu.com' + "address": "https://sei-rpc.polkachu.com/", + "provider": "polkachu.com" }, { - address: 'https://sei-rpc.brocha.in/', - provider: 'Brochain' + "address": "https://sei-rpc.brocha.in/", + "provider": "Brochain" }, { - address: 'https://rpc-sei.stingray.plus/', - provider: 'StingRay' + "address": "https://rpc-sei.stingray.plus/", + "provider": "StingRay" }, { - address: 'https://rpc-sei.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-sei.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://sei.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://sei.rpc.kjnodes.com", + "provider": "kjnodes" } ], - rest: [ + "rest": [ { - address: 'https://sei-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://sei-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://sei-api.polkachu.com/', - provider: 'polkachu.com' + "address": "https://sei-api.polkachu.com/", + "provider": "polkachu.com" }, { - address: 'https://sei-rest.brocha.in/', - provider: 'Brochain' + "address": "https://sei-rest.brocha.in/", + "provider": "Brochain" }, { - address: 'https://api-sei.stingray.plus/', - provider: 'StingRay' + "address": "https://api-sei.stingray.plus/", + "provider": "StingRay" }, { - address: 'https://lcd-sei.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-sei.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://sei.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://sei.api.kjnodes.com", + "provider": "kjnodes" } ], - grpc: [ + "grpc": [ { - address: 'https://sei-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://sei-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://sei-grpc.polkachu.com:11990/', - provider: 'polkachu.com' + "address": "https://sei-grpc.polkachu.com:11990/", + "provider": "polkachu.com" }, { - address: 'sei-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "sei-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://grpc-sei.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://grpc-sei.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'sei.grpc.kjnodes.com:443', - provider: 'kjnodes' + "address": "sei.grpc.kjnodes.com:443", + "provider": "kjnodes" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://ping.pub/sei', - tx_page: 'https://ping.pub/sei/tx/${txHash}', - account_page: 'https://ping.pub/sei/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://ping.pub/sei", + "tx_page": "https://ping.pub/sei/tx/${txHash}", + "account_page": "https://ping.pub/sei/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/sei', - tx_page: 'https://www.mintscan.io/sei/transactions/${txHash}', - account_page: 'https://www.mintscan.io/sei/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/sei", + "tx_page": "https://www.mintscan.io/sei/transactions/${txHash}", + "account_page": "https://www.mintscan.io/sei/accounts/${accountAddress}" }, { - kind: 'seiscan', - url: 'https://www.seiscan.app/pacific-1', - tx_page: 'https://www.seiscan.app/pacific-1/txs/${txHash}', - account_page: - 'https://www.seiscan.app/pacific-1/accounts/${accountAddress}' + "kind": "seiscan", + "url": "https://www.seiscan.app/pacific-1", + "tx_page": "https://www.seiscan.app/pacific-1/txs/${txHash}", + "account_page": "https://www.seiscan.app/pacific-1/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'sentinel', - status: 'live', - network_type: 'mainnet', - website: 'https://sentinel.co/', - pretty_name: 'Sentinel', - chain_id: 'sentinelhub-2', - bech32_prefix: 'sent', - daemon_name: 'sentinelhub', - node_home: '$HOME/.sentinelhub', - slip44: 118, - key_algos: ['secp256k1'], - fees: { - fee_tokens: [ - { - denom: 'udvpn', - low_gas_price: 0.1, - average_gas_price: 0.25, - high_gas_price: 0.4 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "sentinel", + "status": "live", + "network_type": "mainnet", + "website": "https://sentinel.co/", + "pretty_name": "Sentinel", + "chain_id": "sentinelhub-2", + "bech32_prefix": "sent", + "daemon_name": "sentinelhub", + "node_home": "$HOME/.sentinelhub", + "slip44": 118, + "key_algos": [ + "secp256k1" + ], + "fees": { + "fee_tokens": [ { - denom: 'udvpn' + "denom": "udvpn", + "low_gas_price": 0.1, + "average_gas_price": 0.25, + "high_gas_price": 0.4 } ] }, - codebase: { - git_repo: 'https://github.com/sentinel-official/hub', - recommended_version: 'v0.11.3', - compatible_versions: ['v0.11.2', 'v0.11.1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/sentinel-official/networks/main/sentinelhub-2/genesis.zip' - }, - versions: [ - { - name: 'upgrade-1', - recommended_version: 'v0.7.0', - compatible_versions: ['v0.7.0'] - }, - { - name: 'upgrade-2', - recommended_version: 'v0.8.3', - compatible_versions: ['v0.8.3'] - }, - { - name: 'upgrade-3', - recommended_version: 'v0.9.3', - compatible_versions: ['v0.9.3'] - }, - { - name: 'upgrade-4', - recommended_version: 'v0.10.1', - compatible_versions: ['v0.10.1'] - }, + "staking": { + "staking_tokens": [ { - name: 'v11', - recommended_version: 'v0.11.3', - compatible_versions: ['v0.11.2', 'v0.11.1'] + "denom": "udvpn" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' - }, - description: - 'The Sentinel ecosystem is a global network of autonomous dVPN applications that enable private and censorship resistant internet access.', - peers: { - seeds: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'sentinel-mainnet-seed.autostake.com:26706', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'b46d8fea2e951ba21594c047c8746ab6dc315cea', - address: 'p2p-pve01.roomit.xyz:16604', - provider: 'RoomIT' - }, - { - id: 'e8b2ebbd5e90bd89cb89160dd040fda7d04984a4', - address: 'seeds.badgerbite.io:26656', - provider: 'BadgerBite' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:17256', - provider: 'WhisperNode 🤐' - } - ], - persistent_peers: [ - { - id: '9174af5f16f74660cccf49f893d243949af45f7f', - address: '54.177.29.46:26656' - }, - { - id: 'a77f6a094578dad899e2f40e0626b4c6d4705311', - address: '3.36.165.232:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'sentinel-mainnet-peer.autostake.com:26706', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '01cf083bf6e4667c4c1d2bb9454a2e06d6d5e415', - address: '85.237.193.117:26656' - }, - { - id: '13a32c4a2bdd78d4017bedb60b1d61a8558b7a88', - address: '85.10.211.82:36656' - }, - { - id: '233592737772cf4e8aca29623cb54d53e978bf84', - address: '51.159.185.51:26656' - }, - { - id: '2a426a8a0070a6830bad32b96cd3da1b7b6a2faa', - address: '65.108.11.250:29656' - }, - { - id: '36b67a90b368716bb9ce3e47f5198816405c4de3', - address: '195.201.63.87:46666' - }, - { - id: '4398bd773ac885b7365de3604eb487be10c54563', - address: '95.214.55.227:26706' - }, - { - id: '440d002ecaaf99a53ff551e1add65b60319ae1b3', - address: '131.153.175.94:30656' - }, - { - id: '442e7d3d100a91ed2d16c15879b36a8beef7faca', - address: '89.58.26.9:26656' - }, - { - id: '44a6007450d5b8292c19e193ab53f5ad9861b60b', - address: '46.20.245.42:26656' - }, - { - id: '45ed1c0498e1ba7894e1362d533583b8c0fa1ae7', - address: '136.243.67.189:23956' - }, - { - id: '464d1b0650ee82c975e1e7f40ae737f4f688ae32', - address: '178.154.212.189:26656' - }, - { - id: '471518432477e31ea348af246c0b54095d41352c', - address: '169.155.47.161:26656' - }, - { - id: '4c011a64e66a38df4139ad2af5e8fe0798d00624', - address: '65.109.97.249:23956' - }, - { - id: '4e1c2471efb89239fb04a4b75f9f87177fd91d00', - address: '169.155.171.37:26656' - }, - { - id: '5ace0e57784e34930360bf6cc00dd5265278f708', - address: '65.108.238.166:23956' - }, - { - id: '662ccbd8c9885ddff6800a707da3dc6b0c4ed49d', - address: '15.235.115.148:10001' - }, - { - id: '6f32a2ed276e66d27d0b3e3de8010fc755a26825', - address: '35.196.143.233:26656' - }, - { - id: '89757803f40da51678451735445ad40d5b15e059', - address: '169.155.169.176:26656' - }, - { - id: '8b505a3c417852b0fb00b4e82a7c10d76501ff66', - address: 'pve5.badgerbite.io:56656' - }, - { - id: '9026bf3d313ef789e614f10eba8c6fcdde2e8768', - address: '54.176.220.6:26656' - }, - { - id: 'a07b6a5332a51bc18177ab27567bcbffd49da88d', - address: '35.237.231.212:26656' - }, - { - id: 'a0b098de62c3f2f1fd62c4db50c716f734a9153b', - address: '146.190.53.167:30543' - }, - { - id: 'abc27c91439681b1e7fa4b08b54ebbcc42855973', - address: '65.108.195.12:26656' - }, - { - id: 'b212d5740b2e11e54f56b072dc13b6134650cfb5', - address: '169.155.45.136:26656' - }, - { - id: 'c124ce0b508e8b9ed1c5b6957f362225659b5343', - address: '134.65.192.134:26656' - }, - { - id: 'e1b058e5cfa2b836ddaa496b10911da62dcf182e', - address: '169.155.168.109:26656' - }, - { - id: 'e1be5e84e6f76bdc4d24d2f39830b6f50857e684', - address: '78.107.253.133:33656' - }, - { - id: 'e407ce1485c5c5abe86d4c4b04f21bc04c321edc', - address: '89.58.31.128:36656' - }, - { - id: 'e726816f42831689eab9378d5d577f1d06d25716', - address: '169.155.170.219:26656' - }, - { - id: 'e7b825983d15eef809e929b44b2085dcec9d27b6', - address: '51.68.44.219:26556' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: '95.214.55.198:26706' - }, - { - id: 'f6e4a9bd29b8629dc93b813ec784114ca604dff8', - address: '65.108.238.219:23956' - }, - { - id: 'f7111587af92ebe3c57c6080d68755dd74e13a3b', - address: '104.196.120.61:26656' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg" }, - apis: { - rpc: [ + "description": "The Sentinel ecosystem is a global network of autonomous dVPN applications that enable private and censorship resistant internet access.", + "apis": { + "rpc": [ { - address: 'https://rpc-sentinel-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-sentinel-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc-sentinel.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-sentinel.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://rpc.sentinel.chaintools.tech/', - provider: 'ChainTools' + "address": "https://rpc.sentinel.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://rpc.sentinel.quokkastake.io', - provider: '🐹 Quokka Stake' + "address": "https://rpc.sentinel.quokkastake.io", + "provider": "🐹 Quokka Stake" }, { - address: 'https://rpc.dvpn.roomit.xyz', - provider: 'RoomIT' + "address": "https://rpc.dvpn.roomit.xyz", + "provider": "RoomIT" }, { - address: 'https://sentinel-rpc.badgerbite.io/', - provider: 'BadgerBite' + "address": "https://sentinel-rpc.badgerbite.io/", + "provider": "BadgerBite" }, { - address: 'https://sentinel-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://sentinel-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://sentinel-rpc.validatornode.com/', - provider: 'ValidatorNode' + "address": "https://sentinel-rpc.validatornode.com/", + "provider": "ValidatorNode" }, { - address: 'https://rpc.trinityvalidator.com', - provider: 'Trinity Validator' + "address": "https://rpc.trinityvalidator.com", + "provider": "Trinity Validator" }, { - address: 'https://rpc.sentinelgrowthdao.com', - provider: 'Sentinel Growth DAO' + "address": "https://rpc.sentinelgrowthdao.com", + "provider": "Sentinel Growth DAO" } ], - rest: [ + "rest": [ { - address: 'https://api-sentinel-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-sentinel-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://lcd-sentinel.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-sentinel.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://api.sentinel.quokkastake.io', - provider: '🐹 Quokka Stake' + "address": "https://api.sentinel.quokkastake.io", + "provider": "🐹 Quokka Stake" }, { - address: 'https://api.dvpn.roomit.xyz', - provider: 'RoomIT' + "address": "https://api.dvpn.roomit.xyz", + "provider": "RoomIT" }, { - address: 'https://sentinel-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://sentinel-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://sentinel-api.validatornode.com', - provider: 'ValidatorNode' + "address": "https://sentinel-api.validatornode.com", + "provider": "ValidatorNode" }, { - address: 'https://api.trinityvalidator.com', - provider: 'Trinity Validator' + "address": "https://api.trinityvalidator.com", + "provider": "Trinity Validator" }, { - address: 'https://api.sentinelgrowthdao.com', - provider: 'Sentinel Growth DAO' + "address": "https://api.sentinelgrowthdao.com", + "provider": "Sentinel Growth DAO" } ], - grpc: [ + "grpc": [ { - address: 'grpc-sentinel-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-sentinel-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'sentinel.grpcui.chaintools.host:443', - provider: 'ChainTools' + "address": "sentinel.grpcui.chaintools.host:443", + "provider": "ChainTools" }, { - address: 'sentinel-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "sentinel-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc.dvpn.roomit.xyz:8443', - provider: 'RoomIT' + "address": "grpc.dvpn.roomit.xyz:8443", + "provider": "RoomIT" }, { - address: 'sentinel-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "sentinel-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/sentinel', - tx_page: 'https://www.mintscan.io/sentinel/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/sentinel/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/sentinel", + "tx_page": "https://www.mintscan.io/sentinel/transactions/${txHash}", + "account_page": "https://www.mintscan.io/sentinel/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/sentinel', - tx_page: 'https://atomscan.com/sentinel/transactions/${txHash}', - account_page: 'https://atomscan.com/sentinel/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/sentinel", + "tx_page": "https://atomscan.com/sentinel/transactions/${txHash}", + "account_page": "https://atomscan.com/sentinel/accounts/${accountAddress}" }, { - kind: 'RoomIT', - url: 'https://explorer.tendermint.roomit.xyz/sentinel-mainnet', - tx_page: - 'https://explorer.tendermint.roomit.xyz/sentinel-mainnet/transactions/${txHash}', - account_page: - 'https://explorer.tendermint.roomit.xyz/sentinel-mainnet/accounts/${accountAddress}' + "kind": "RoomIT", + "url": "https://explorer.tendermint.roomit.xyz/sentinel-mainnet", + "tx_page": "https://explorer.tendermint.roomit.xyz/sentinel-mainnet/transactions/${txHash}", + "account_page": "https://explorer.tendermint.roomit.xyz/sentinel-mainnet/accounts/${accountAddress}" }, { - kind: 'ValidatorNode', - url: 'https://explorer.validatornode.com/sentinel', - tx_page: 'https://explorer.validatornode.com/sentinel/tx/${txHash}' + "kind": "ValidatorNode", + "url": "https://explorer.validatornode.com/sentinel", + "tx_page": "https://explorer.validatornode.com/sentinel/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'sge', - status: 'live', - network_type: 'mainnet', - pretty_name: 'SGE', - chain_id: 'sgenet-1', - bech32_prefix: 'sge', - daemon_name: 'sged', - node_home: '$HOME/.sge', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'usge', - fixed_min_gas_price: 0.001, - low_gas_price: 0.1, - average_gas_price: 0.25, - high_gas_price: 0.5 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'usge' - } - ] - }, - codebase: { - git_repo: 'https://github.com/sge-network/sge', - recommended_version: 'v1.3.1', - compatible_versions: ['v1.3.1'], - cosmos_sdk_version: 'v0.46.17-0.20231114190313-b9164dd660b6', - ibc_go_version: 'v5.3.1', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/sge-network/networks/master/mainnet/sgenet-1/genesis.json' - }, - versions: [ - { - name: 'v1.1.0', - recommended_version: 'v1.1.0', - compatible_versions: ['v1.1.0'], - cosmos_sdk_version: 'v0.46.14', - ibc_go_version: 'v5.2.1', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - next_version_name: 'v1.1.1' - }, - { - name: 'v1.1.1', - recommended_version: 'v1.1.1', - compatible_versions: ['v1.1.1'], - proposal: 1, - height: 1097000, - cosmos_sdk_version: 'v0.46.14', - ibc_go_version: 'v5.3.1', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - next_version_name: 'v1.2.0' - }, - { - name: 'v1.2.0', - recommended_version: 'v1.2.0', - compatible_versions: ['v1.2.0'], - proposal: 3, - height: 1564215, - cosmos_sdk_version: 'v0.46.14', - ibc_go_version: 'v5.3.1', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - next_version_name: 'v1.3.0' - }, - { - name: 'v1.3.0', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'], - proposal: 4, - height: 1887954, - cosmos_sdk_version: 'v0.46.14', - ibc_go_version: 'v5.3.1', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - next_version_name: 'v1.3.1' - }, + "$schema": "../chain.schema.json", + "chain_name": "sge", + "status": "live", + "network_type": "mainnet", + "pretty_name": "SGE", + "chain_id": "sgenet-1", + "bech32_prefix": "sge", + "daemon_name": "sged", + "node_home": "$HOME/.sge", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v1.3.1', - recommended_version: 'v1.3.1', - compatible_versions: ['v1.3.1'], - proposal: 5, - height: 1911750, - cosmos_sdk_version: 'v0.46.17-0.20231114190313-b9164dd660b6', - ibc_go_version: 'v5.3.1', - consensus: { - type: 'cometbft', - version: 'v0.34.29' - }, - next_version_name: '' + "denom": "usge", + "fixed_min_gas_price": 0.001, + "low_gas_price": 0.1, + "average_gas_price": 0.25, + "high_gas_price": 0.5 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' - }, - peers: { - seeds: [ - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:17756', - provider: 'rhinostake.com' - }, - { - id: 'a973f744ec9b00cd387f62fc8d69ae1d753c060e', - address: 'seed.sge.cros-nest.com:26656', - provider: 'cros-nest.com' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:17756', - provider: 'lavenderfive.com' - }, - { - id: 'df949a46ae6529ae1e09b034b49716468d5cc7e9', - address: 'seeds.stakerhouse.com:11156', - provider: 'stakerhouse.com' - }, - { - id: 'b7f6da1a8aea371206b4d234398c4888c0564066', - address: 'p2p-pve01.roomit.xyz:16605', - provider: 'RoomIT' - }, - { - id: 'af9d9bd15ca597eb77dab73c56b0ae51bafcbb28', - address: 'sge.ramuchi.tech:16656', - provider: 'ramuchi.tech' - }, - { - id: '6a727128f427d166d90a1185c7965b178235aaee', - address: 'rpc.sge.nodestake.top:666', - provider: 'nodestake.top' - } - ], - persistent_peers: [ - { - id: 'd09a5df7a13c758928ab1de0dc7342cab2e7b686', - address: '74.50.74.98:36656', - provider: 'jayjay' - }, - { - id: '401a4986e78fe74dd7ead9363463ba4c704d8759', - address: '38.146.3.183:17756', - provider: 'RHINO' - }, - { - id: '88f341a9670494c3d529934dc578eec1b00f4aa1', - address: '141.94.168.85:26656', - provider: 'NodeStake' - }, - { - id: '5dcd45e5e1c49b87179993651abe04df01001159', - address: 'sge.peers.stavr.tech:1156', - provider: '🔥STAVR🔥' - }, - { - id: 'af9d9bd15ca597eb77dab73c56b0ae51bafcbb28', - address: '142.132.202.86:16656', - provider: 'ramuchi.tech' - }, - { - id: '8cb8fecf6470ceaba3f2e7b7c3442b19bd692dea', - address: '34.168.149.213:26656', - provider: 'BlissDynamics' - }, - { - id: '17da9d2fea9d6d431d390c3b9575547d8881da2b', - address: '185.16.39.190:11156', - provider: 'StakerHouse' - }, + "staking": { + "staking_tokens": [ { - id: '7e82897f6fa112e11f0b8defda1a9290f90a5320', - address: 'p2p.sge.safeblock.space:33656', - provider: 'Safe Block' - }, - { - id: 'b7f6da1a8aea371206b4d234398c4888c0564066', - address: 'p2p-pve01.roomit.xyz:16605', - provider: 'RoomIT' - }, - { - id: '26238cbb6bf285816bd06ca946b190e7248c389c', - address: 'mainnet-sge.konsortech.xyz:22656', - provider: 'KonsorTech' + "denom": "usge" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.46.17-0.20231114190313-b9164dd660b6" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg" + }, + "apis": { + "rpc": [ { - address: 'https://sge-rpc.lavenderfive.com/', - provider: 'Lavenderfive' + "address": "https://sge-rpc.lavenderfive.com/", + "provider": "Lavenderfive" }, { - address: 'https://sge-rpc.polkachu.com/', - provider: 'Polkachu' + "address": "https://sge-rpc.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://rpc.sge.nodestake.top/', - provider: 'Nodestake' + "address": "https://rpc.sge.nodestake.top/", + "provider": "Nodestake" }, { - address: 'https://rpc.sge.roomit.xyz/', - provider: 'RoomIT' + "address": "https://rpc.sge.roomit.xyz/", + "provider": "RoomIT" }, { - address: 'https://sge.rpc.m.stavr.tech:443', - provider: '🔥STAVR🔥' + "address": "https://sge.rpc.m.stavr.tech:443", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc-sge.nodeist.net/', - provider: 'Nodeist' + "address": "https://rpc-sge.nodeist.net/", + "provider": "Nodeist" }, { - address: 'https://sge-rpc.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://sge-rpc.ramuchi.tech", + "provider": "ramuchi.tech" }, { - address: 'https://sge-rpc.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://sge-rpc.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://rpc.sge.tcnetwork.io', - provider: 'TC Network' + "address": "https://rpc.sge.tcnetwork.io", + "provider": "TC Network" }, { - address: 'https://sge-rpc.sr20de.xyz', - provider: 'Sr20de' + "address": "https://sge-rpc.sr20de.xyz", + "provider": "Sr20de" }, { - address: 'https://rpc.sge.safeblock.space', - provider: 'Safe Block' + "address": "https://rpc.sge.safeblock.space", + "provider": "Safe Block" }, { - address: 'https://mainnet-sge-rpc.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-sge-rpc.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://sge-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://sge-rpc.genznodes.dev", + "provider": "genznodes" } ], - rest: [ + "rest": [ { - address: 'https://sge-api.lavenderfive.com/', - provider: 'Lavenderfive' + "address": "https://sge-api.lavenderfive.com/", + "provider": "Lavenderfive" }, { - address: 'https://sge-api.polkachu.com/', - provider: 'Polkachu' + "address": "https://sge-api.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://api.sge.nodestake.top/', - provider: 'Nostake' + "address": "https://api.sge.nodestake.top/", + "provider": "Nostake" }, { - address: 'https://api-sge.nodeist.net/', - provider: 'Nodeist' + "address": "https://api-sge.nodeist.net/", + "provider": "Nodeist" }, { - address: 'https://sge.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://sge.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://sge-api.ramuchi.tech/', - provider: 'ramuchi.tech' + "address": "https://sge-api.ramuchi.tech/", + "provider": "ramuchi.tech" }, { - address: 'https://sge-rest.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://sge-rest.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://rest.sge.tcnetwork.io', - provider: 'TC Network' + "address": "https://rest.sge.tcnetwork.io", + "provider": "TC Network" }, { - address: 'https://sge-api.sr20de.xyz', - provider: 'Sr20de' + "address": "https://sge-api.sr20de.xyz", + "provider": "Sr20de" }, { - address: 'https://api.sge.safeblock.space', - provider: 'Safe Block' + "address": "https://api.sge.safeblock.space", + "provider": "Safe Block" }, { - address: 'https://mainnet-sge-api.konsortech.xyz', - provider: 'KonsorTech' + "address": "https://mainnet-sge-api.konsortech.xyz", + "provider": "KonsorTech" }, { - address: 'https://sge-api.genznodes.dev', - provider: 'genznodes' + "address": "https://sge-api.genznodes.dev", + "provider": "genznodes" }, { - address: 'https://api.sge.roomit.xyz/', - provider: 'RoomIT' + "address": "https://api.sge.roomit.xyz/", + "provider": "RoomIT" } ], - grpc: [ + "grpc": [ { - address: 'sge-grpc.lavenderfive.com:443', - provider: 'Lavenderfive' + "address": "sge-grpc.lavenderfive.com:443", + "provider": "Lavenderfive" }, { - address: 'https://grpc.sge.nodestake.top/', - provider: 'Nodestake' + "address": "https://grpc.sge.nodestake.top/", + "provider": "Nodestake" }, { - address: 'https://grpc-sge.nodeist.net/', - provider: 'Nodeist' + "address": "https://grpc-sge.nodeist.net/", + "provider": "Nodeist" }, { - address: 'https://sge-grpc.ramuchi.tech:443', - provider: 'ramuchi.tech' + "address": "https://sge-grpc.ramuchi.tech:443", + "provider": "ramuchi.tech" }, { - address: 'http://sge.grpc.m.stavr.tech:543', - provider: '🔥STAVR🔥' + "address": "http://sge.grpc.m.stavr.tech:543", + "provider": "🔥STAVR🔥" }, { - address: 'sge-grpc.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "sge-grpc.stakerhouse.com:443", + "provider": "StakerHouse" }, { - address: 'https://sge-grpc.sr20de.xyz', - provider: 'Sr20de' + "address": "https://sge-grpc.sr20de.xyz", + "provider": "Sr20de" }, { - address: 'mainnet-sge.konsortech.xyz:22090', - provider: 'KonsorTech' + "address": "mainnet-sge.konsortech.xyz:22090", + "provider": "KonsorTech" }, { - address: 'sge-grpc.genznodes.dev:5090', - provider: 'genznodes' + "address": "sge-grpc.genznodes.dev:5090", + "provider": "genznodes" }, { - address: 'grpc.sge.roomit.xyz:8443', - provider: 'RoomIT' + "address": "grpc.sge.roomit.xyz:8443", + "provider": "RoomIT" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://blockexplorer.sgenetwork.io/sge', - tx_page: 'https://blockexplorer.sgenetwork.io/sge/tx/${txHash}' + "kind": "ping.pub", + "url": "https://blockexplorer.sgenetwork.io/sge", + "tx_page": "https://blockexplorer.sgenetwork.io/sge/tx/${txHash}" }, { - kind: 'nodestake.top', - url: 'https://explorer.nodestake.top/sge', - tx_page: 'https://explorer.nodestake.top/sge/tx/${txHash}' + "kind": "nodestake.top", + "url": "https://explorer.nodestake.top/sge", + "tx_page": "https://explorer.nodestake.top/sge/tx/${txHash}" }, { - kind: 'stakerhouse', - url: 'https://cosmotracker.com/sge', - tx_page: 'https://cosmotracker.com/sge/tx/${txHash}' + "kind": "stakerhouse", + "url": "https://cosmotracker.com/sge", + "tx_page": "https://cosmotracker.com/sge/tx/${txHash}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Sge-Mainnet', - tx_page: - 'https://explorer.stavr.tech/Sge-Mainnet/transaction/${txHash}', - account_page: - 'https://explorer.stavr.tech/Sge-Mainnet/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Sge-Mainnet", + "tx_page": "https://explorer.stavr.tech/Sge-Mainnet/transaction/${txHash}", + "account_page": "https://explorer.stavr.tech/Sge-Mainnet/account/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/sge', - tx_page: 'https://explorer.tcnetwork.io/sge/transaction/${txHash}', - account_page: - 'https://explorer.tcnetwork.io/sge/account/${accountAddress}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/sge", + "tx_page": "https://explorer.tcnetwork.io/sge/transaction/${txHash}", + "account_page": "https://explorer.tcnetwork.io/sge/account/${accountAddress}" }, { - kind: 'Safe Block', - url: 'https://explorer.safeblock.space/sge', - tx_page: 'https://explorer.safeblock.space/sge/tx/${txHash}', - account_page: - 'https://explorer.safeblock.space/sge/account/${accountAddress}' + "kind": "Safe Block", + "url": "https://explorer.safeblock.space/sge", + "tx_page": "https://explorer.safeblock.space/sge/tx/${txHash}", + "account_page": "https://explorer.safeblock.space/sge/account/${accountAddress}" }, { - kind: 'KonsorTech', - url: 'https://explorer.konsortech.xyz/sge', - tx_page: 'https://explorer.konsortech.xyz/sge/tx/${txHash}', - account_page: - 'https://explorer.konsortech.xyz/sge/account/${accountAddress}' + "kind": "KonsorTech", + "url": "https://explorer.konsortech.xyz/sge", + "tx_page": "https://explorer.konsortech.xyz/sge/tx/${txHash}", + "account_page": "https://explorer.konsortech.xyz/sge/account/${accountAddress}" }, { - kind: 'RoomIT', - url: 'https://explorer.tendermint.roomit.xyz/sge-mainnet', - tx_page: - 'https://explorer.tendermint.roomit.xyz/sge-mainnet/tx/${txHash}', - account_page: - 'https://explorer.tendermint.roomit.xyz/sge-mainnet/account/${accountAddress}' + "kind": "RoomIT", + "url": "https://explorer.tendermint.roomit.xyz/sge-mainnet", + "tx_page": "https://explorer.tendermint.roomit.xyz/sge-mainnet/tx/${txHash}", + "account_page": "https://explorer.tendermint.roomit.xyz/sge-mainnet/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'shareledger', - status: 'live', - network_type: 'mainnet', - website: 'https://www.sharering.network/', - pretty_name: 'Shareledger', - chain_id: 'ShareRing-VoyagerNet', - bech32_prefix: 'shareledger', - daemon_name: 'shareledger', - node_home: '$HOME/.shareledger', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'nshr', - fixed_min_gas_price: 0, - low_gas_price: 2000, - average_gas_price: 3000, - high_gas_price: 4000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'nshr' - } - ] - }, - codebase: { - git_repo: 'https://github.com/ShareRing/Shareledger/', - recommended_version: '1.4.1', - compatible_versions: ['1.4.1'], - binaries: { - 'linux/amd64': - 'https://github.com/ShareRing/Shareledger/releases/download/v1.4.1/shareledger' - }, - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.27', - cosmwasm_enabled: true, - ibc_go_version: '3.0.0', - ics_enabled: ['ics20-1'], - genesis: { - name: 'v1', - genesis_url: - 'https://github.com/ShareRing/Shareledger/releases/download/v1.2.0/genesis.json' - }, - versions: [ - { - name: 'v1', - tag: 'v1.2.0', - height: 4382920, - next_version_name: 'v2' - }, - { - name: 'v2', - tag: 'v1.3.0', - height: 6905000, - next_version_name: 'v3' - }, - { - name: 'v3', - tag: 'v1.4.0', - height: 7325550, - next_version_name: 'v4' - }, - { - name: 'v4', - tag: 'v1.4.1', - height: 7507600, - next_version_name: 'v5', - recommended_version: '1.4.1', - compatible_versions: ['1.4.1'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.27', - cosmwasm_enabled: true, - ibc_go_version: '3.0.0', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/amd64': - 'https://github.com/ShareRing/Shareledger/releases/download/v1.4.1/shareledger' - } + "$schema": "../chain.schema.json", + "chain_name": "shareledger", + "status": "live", + "network_type": "mainnet", + "website": "https://www.sharering.network/", + "pretty_name": "Shareledger", + "chain_id": "ShareRing-VoyagerNet", + "bech32_prefix": "shareledger", + "daemon_name": "shareledger", + "node_home": "$HOME/.shareledger", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "nshr", + "fixed_min_gas_price": 0, + "low_gas_price": 2000, + "average_gas_price": 3000, + "high_gas_price": 4000 + } + ] + }, + "staking": { + "staking_tokens": [ + { + "denom": "nshr" } ] }, - peers: { - seeds: [] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.27" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.explorer.shareri.ng', - provider: 'ShareRing' + "address": "https://rpc.explorer.shareri.ng", + "provider": "ShareRing" } ], - rest: [ + "rest": [ { - address: 'https://lcd.explorer.shareri.ng/', - provider: 'ShareRing' + "address": "https://lcd.explorer.shareri.ng/", + "provider": "ShareRing" } ], - grpc: [ + "grpc": [ { - address: 'rpc.explorer.shareri.ng:443', - provider: 'ShareRing' + "address": "rpc.explorer.shareri.ng:443", + "provider": "ShareRing" } ] }, - explorers: [ + "explorers": [ { - kind: 'big dipper', - url: 'https://explorer.shareri.ng', - tx_page: 'https://explorer.shareri.ng/transactions/${txHash}', - account_page: 'https://explorer.shareri.ng/accounts/${accountAddress}' + "kind": "big dipper", + "url": "https://explorer.shareri.ng", + "tx_page": "https://explorer.shareri.ng/transactions/${txHash}", + "account_page": "https://explorer.shareri.ng/accounts/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.svg" }, - keywords: ['id'], - images: [ + "keywords": [ + "id" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'shentu', - status: 'live', - network_type: 'mainnet', - website: 'https://www.shentu.technology/', - pretty_name: 'Shentu', - chain_id: 'shentu-2.2', - bech32_prefix: 'shentu', - daemon_name: 'shentud', - node_home: '$HOME/.shentud', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uctk', - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uctk' - } - ] - }, - codebase: { - git_repo: 'https://github.com/ShentuChain/shentu', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/ShentuChain/mainnet/main/shentu-2.2/genesis.json' - }, - recommended_version: 'v2.8.0', - compatible_versions: ['v2.8.0'], - ibc_go_version: 'v4.2.1', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_linux_amd64', - 'darwin/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_arm64_macos', - 'windows/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_win_x86_64.exe' - }, - versions: [ - { - name: 'v2.6.0', - height: 10485430, - proposal: 14, - tag: 'v2.6.0', - ibc_go_version: 'v4.2.0', - recommended_version: 'v2.6.0', - compatible_versions: ['v2.6.0'], - binaries: { - 'linux/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.6.0/shentud_2.6.0_linux_amd64', - 'darwin/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.6.0/shentud_2.6.0_arm64_macos', - 'windows/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.6.0/shentud_2.6.0_win_x86_64.exe' - }, - next_version_name: 'v2.7.0' - }, - { - name: 'v2.7.0', - height: 12926000, - proposal: 17, - tag: 'v2.7.0', - ibc_go_version: 'v4.2.1', - ics_enabled: ['ics20-1'], - recommended_version: 'v2.7.0', - compatible_versions: ['v2.7.0'], - binaries: { - 'linux/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.7.1/shentud_2.7.1_linux_amd64', - 'darwin/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.7.1/shentud_2.7.1_arm64_macos', - 'windows/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.7.1/shentud_2.7.1_win_x86_64.exe' - }, - next_version_name: 'v2.7.2' - }, - { - name: 'v2.7.2', - height: 14875800, - proposal: 21, - tag: 'v2.7.2', - ibc_go_version: 'v4.2.1', - ics_enabled: ['ics20-1'], - recommended_version: 'v2.7.2', - compatible_versions: ['v2.7.2'], - binaries: { - 'linux/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.7.2/shentud_2.7.2_linux_amd64', - 'darwin/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.7.2/shentud_2.7.2_arm64_macos', - 'windows/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.7.2/shentud_2.7.2_win_x86_64.exe' - }, - next_version_name: 'v2.8.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "shentu", + "status": "live", + "network_type": "mainnet", + "website": "https://www.shentu.technology/", + "pretty_name": "Shentu", + "chain_id": "shentu-2.2", + "bech32_prefix": "shentu", + "daemon_name": "shentud", + "node_home": "$HOME/.shentud", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v2.8.0', - height: 15094300, - proposal: 23, - tag: 'v2.8.0', - ibc_go_version: 'v4.2.1', - ics_enabled: ['ics20-1'], - recommended_version: 'v2.8.0', - compatible_versions: ['v2.8.0'], - binaries: { - 'linux/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_linux_amd64', - 'darwin/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_arm64_macos', - 'windows/amd64': - 'https://github.com/shentufoundation/shentu/releases/download/v2.8.0/shentud_2.8.0_win_x86_64.exe' - }, - next_version_name: '' + "denom": "uctk", + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' - }, - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:14056', - provider: 'Polkachu' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'f97807210f9547b8a5016fb18000b46072ca5e30', - address: 'seed-shentu-01.stakeflow.io:2407', - provider: 'Stakeflow' - } - ], - persistent_peers: [ - { - id: '8f91d396e3395210ef3a8394d48d1888af6d01cd', - address: 'shentu.ramuchi.tech:56656', - provider: 'ramuchi.tech' - }, + "staking": { + "staking_tokens": [ { - id: 'f97807210f9547b8a5016fb18000b46072ca5e30', - address: 'peer-shentu-01.stakeflow.io:2407', - provider: 'Stakeflow' + "denom": "uctk" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg" + }, + "apis": { + "rpc": [ { - address: 'https://shenturpc.noopsbycertik.com/', - provider: 'Shentu' + "address": "https://shenturpc.noopsbycertik.com/", + "provider": "Shentu" }, { - address: 'https://shentu-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://shentu-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://shentu-rpc.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://shentu-rpc.ramuchi.tech", + "provider": "ramuchi.tech" }, { - address: 'https://rpc-shentu-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-shentu-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://shentu-rpc.tienthuattoan.ventures', - provider: 'TienThuatToan' + "address": "https://shentu-rpc.tienthuattoan.ventures", + "provider": "TienThuatToan" }, { - address: 'https://shentu-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://shentu-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://shentu-rpc.highstakes.ch:26657/', - provider: 'High Stakes 🇨🇭' + "address": "https://shentu-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" } ], - rest: [ + "rest": [ { - address: 'https://rest.noopsbycertik.com/', - provider: 'Shentu' + "address": "https://rest.noopsbycertik.com/", + "provider": "Shentu" }, { - address: 'https://shentu-api.polkachu.com', - provider: 'Polkachu' + "address": "https://shentu-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://shentu-api.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://shentu-api.ramuchi.tech", + "provider": "ramuchi.tech" }, { - address: 'https://api-shentu-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-shentu-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://shentu-api.tienthuattoan.ventures', - provider: 'TienThuatToan' + "address": "https://shentu-api.tienthuattoan.ventures", + "provider": "TienThuatToan" }, { - address: 'https://shentu-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://shentu-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://shentu-api.highstakes.ch:1317/', - provider: 'High Stakes 🇨🇭' + "address": "https://shentu-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" } ], - grpc: [ + "grpc": [ { - address: 'shentu-grpc.polkachu.com:14090', - provider: 'Polkachu' + "address": "shentu-grpc.polkachu.com:14090", + "provider": "Polkachu" }, { - address: 'https://shentu-grpc.ramuchi.tech:12090', - provider: 'ramuchi.tech' + "address": "https://shentu-grpc.ramuchi.tech:12090", + "provider": "ramuchi.tech" }, { - address: 'grpc-shentu-01.stakeflow.io:2402', - provider: 'Stakeflow' + "address": "grpc-shentu-01.stakeflow.io:2402", + "provider": "Stakeflow" }, { - address: 'shentu-grpc.tienthuattoan.ventures:9490', - provider: 'TienThuatToan' + "address": "shentu-grpc.tienthuattoan.ventures:9490", + "provider": "TienThuatToan" }, { - address: 'shentu-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "shentu-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/shentu', - tx_page: 'https://app.ezstaking.io/shentu/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/shentu/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/shentu", + "tx_page": "https://app.ezstaking.io/shentu/txs/${txHash}", + "account_page": "https://app.ezstaking.io/shentu/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/shentu', - tx_page: 'https://www.mintscan.io/shentu/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/shentu/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/shentu", + "tx_page": "https://www.mintscan.io/shentu/transactions/${txHash}", + "account_page": "https://www.mintscan.io/shentu/accounts/${accountAddress}" }, { - 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/shentu', - tx_page: 'https://atomscan.com/shentu/transactions/${txHash}', - account_page: 'https://atomscan.com/shentu/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/shentu", + "tx_page": "https://atomscan.com/shentu/transactions/${txHash}", + "account_page": "https://atomscan.com/shentu/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/shentu', - tx_page: 'https://bigdipper.live/shentu/transactions/${txHash}', - account_page: 'https://bigdipper.live/shentu/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/shentu", + "tx_page": "https://bigdipper.live/shentu/transactions/${txHash}", + "account_page": "https://bigdipper.live/shentu/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/shentu', - account_page: 'https://stakeflow.io/shentu/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/shentu", + "account_page": "https://stakeflow.io/shentu/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'sifchain', - status: 'live', - network_type: 'mainnet', - website: 'https://sifchain.finance/', - pretty_name: 'Sifchain', - chain_id: 'sifchain-1', - bech32_prefix: 'sif', - daemon_name: 'sifnoded', - node_home: '$HOME/.sifnoded', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'rowan', - low_gas_price: 1000000000000, - average_gas_price: 1500000000000, - high_gas_price: 2000000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'rowan' - } - ] - }, - codebase: { - git_repo: 'https://github.com/Sifchain/sifnode.git', - recommended_version: 'v1.0.14-beta', - compatible_versions: ['v1.0.14-beta'], - binaries: { - 'linux/amd64': - 'https://github.com/Sifchain/sifnode/releases/download/v1.0.14-beta/sifnoded-v1.0.14-beta-linux-amd64.zip' - }, - genesis: { - genesis_url: - 'https://github.com/Sifchain/networks/blob/master/betanet/sifchain-1/genesis.json.gz?raw=true' - }, - versions: [ - { - name: 'v1.0.14-beta', - recommended_version: 'v1.0.14-beta', - compatible_versions: ['v1.0.14-beta'], - binaries: { - 'linux/amd64': - 'https://github.com/Sifchain/sifnode/releases/download/v1.0.14-beta/sifnoded-v1.0.14-beta-linux-amd64.zip' - } + "$schema": "../chain.schema.json", + "chain_name": "sifchain", + "status": "live", + "network_type": "mainnet", + "website": "https://sifchain.finance/", + "pretty_name": "Sifchain", + "chain_id": "sifchain-1", + "bech32_prefix": "sif", + "daemon_name": "sifnoded", + "node_home": "$HOME/.sifnoded", + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "rowan", + "low_gas_price": 1000000000000, + "average_gas_price": 1500000000000, + "high_gas_price": 2000000000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' - }, - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'sifchain-mainnet-seed.autostake.com:26686', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:13256', - provider: 'Polkachu' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: '0d4981bdaf4d5d73bad00af3b1fa9d699e4d3bc0', - address: '44.235.108.41:26656' - }, - { - id: 'bcc2d07a14a8a0b3aa202e9ac106dec0bef91fda', - address: '13.55.247.60:26656' - }, - { - id: '663dec65b754aceef5fcccb864048305208e7eb2', - address: '34.248.110.88:26656' - }, - { - id: '0120f0a48e7e81cc98829ef4f5b39480f11ecd5a', - address: '52.76.185.17:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'sifchain-mainnet-peer.autostake.com:26686', - provider: 'AutoStake 🛡️ Slash Protected' + "denom": "rowan" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg" + }, + "apis": { + "rpc": [ { - address: 'https://sifchain-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://sifchain-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc-sifchain-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-sifchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://sifchain-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://sifchain-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://sifchain-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://sifchain-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - rest: [ + "rest": [ { - address: 'https://api-sifchain-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-sifchain-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://sifchain-api.polkachu.com', - provider: 'Polkachu' + "address": "https://sifchain-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://sifchain-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://sifchain-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://sifchain-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://sifchain-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ + "grpc": [ { - address: 'grpc-sifchain-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-sifchain-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'sifchain-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "sifchain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'sifchain-grpc.polkachu.com:13290', - provider: 'Polkachu' + "address": "sifchain-grpc.polkachu.com:13290", + "provider": "Polkachu" }, { - address: 'sifchain-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "sifchain-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/sifchain', - tx_page: 'https://app.ezstaking.io/sifchain/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/sifchain/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/sifchain", + "tx_page": "https://app.ezstaking.io/sifchain/txs/${txHash}", + "account_page": "https://app.ezstaking.io/sifchain/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/sifchain', - tx_page: 'https://ping.pub/sifchain/tx/${txHash}' + "kind": "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: 'atomscan', - url: 'https://atomscan.com/sifchain', - tx_page: 'https://atomscan.com/sifchain/transactions/${txHash}', - account_page: 'https://atomscan.com/sifchain/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/sifchain", + "tx_page": "https://atomscan.com/sifchain/transactions/${txHash}", + "account_page": "https://atomscan.com/sifchain/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'six', - status: 'live', - network_type: 'mainnet', - pretty_name: 'SIX Protocol', - chain_id: 'sixnet', - bech32_prefix: '6x', - daemon_name: 'sixd', - node_home: '$HOME/.six', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'usix', - fixed_min_gas_price: 1.25, - low_gas_price: 1.25, - average_gas_price: 1.5, - high_gas_price: 1.75 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'usix' - } - ] - }, - codebase: { - git_repo: 'https://github.com/thesixnetwork/six-protocol', - recommended_version: 'v3.1.1-fn', - compatible_versions: ['v3.1.1-fn'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - genesis: { - genesis_url: 'https://github.com/thesixnetwork/chain-info/genesis.json' - }, - versions: [ - { - name: 'v3.1.1-fn', - recommended_version: 'v3.1.1-fn', - compatible_versions: ['v3.1.1-fn'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - } + "$schema": "../chain.schema.json", + "chain_name": "six", + "status": "live", + "network_type": "mainnet", + "pretty_name": "SIX Protocol", + "chain_id": "sixnet", + "bech32_prefix": "6x", + "daemon_name": "sixd", + "node_home": "$HOME/.six", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "usix", + "fixed_min_gas_price": 1.25, + "low_gas_price": 1.25, + "average_gas_price": 1.5, + "high_gas_price": 1.75 } ] }, - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: 'b1ea86f31de4e38c9b6b2b5a62404c59fadcf82e', - address: '34.143.194.56:26656', - provider: '' + "denom": "usix" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.45" + }, + "apis": { + "rpc": [ { - address: 'https://sixnet-rpc.sixprotocol.net:443', - provider: '' + "address": "https://sixnet-rpc.sixprotocol.net:443", + "provider": "" } ], - rest: [ + "rest": [ { - address: 'https://sixnet-api.sixprotocol.net:443', - provider: '' + "address": "https://sixnet-api.sixprotocol.net:443", + "provider": "" } ] }, - explorers: [ + "explorers": [ { - kind: 'sixscan', - url: 'https://sixscan.io/sixnet', - tx_page: 'https://sixscan.io/sixnet/tx/${txHash}' + "kind": "sixscan", + "url": "https://sixscan.io/sixnet", + "tx_page": "https://sixscan.io/sixnet/tx/${txHash}" } ], - keywords: ['sixprotocol', 'sixnetwork', 'sixnet', 'six'] + "keywords": [ + "sixprotocol", + "sixnetwork", + "sixnet", + "six" + ] }, { - $schema: '../chain.schema.json', - chain_name: 'sommelier', - status: 'live', - network_type: 'mainnet', - website: 'https://sommelier.finance/', - pretty_name: 'Sommelier', - chain_id: 'sommelier-3', - bech32_prefix: 'somm', - daemon_name: 'sommelier', - node_home: '$HOME/.sommelier', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'usomm', - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'usomm' - } - ] - }, - codebase: { - git_repo: 'https://github.com/PeggyJV/sommelier', - recommended_version: 'v6.0.0', - compatible_versions: ['v6.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/PeggyJV/sommelier/releases/download/v6.0.0/sommelier_6.0.0_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/PeggyJV/sommelier/releases/download/v6.0.0/sommelier_6.0.0_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/PeggyJV/sommelier/releases/download/v6.0.0/sommelier_6.0.0_darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/PeggyJV/sommelier/releases/download/v6.0.0/sommelier_6.0.0_darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/PeggyJV/sommelier/releases/download/v6.0.0/sommelier_6.0.0_windows_amd64.tar.gz' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/PeggyJV/sommelier/main/contrib/mainnet/sommelier-2/genesis.json' - }, - versions: [ - { - name: 'v5.0.0', - recommended_version: 'v5.0.0', - compatible_versions: ['v5.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/PeggyJV/sommelier/releases/download/v5.0.0/sommelier_5.0.0_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/PeggyJV/sommelier/releases/download/v5.0.0/sommelier_5.0.0_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/PeggyJV/sommelier/releases/download/v5.0.0/sommelier_5.0.0_darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/PeggyJV/sommelier/releases/download/v5.0.0/sommelier_5.0.0_darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/PeggyJV/sommelier/releases/download/v5.0.0/sommelier_5.0.0_windows_amd64.tar.gz' - } - }, + "$schema": "../chain.schema.json", + "chain_name": "sommelier", + "status": "live", + "network_type": "mainnet", + "website": "https://sommelier.finance/", + "pretty_name": "Sommelier", + "chain_id": "sommelier-3", + "bech32_prefix": "somm", + "daemon_name": "sommelier", + "node_home": "$HOME/.sommelier", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v6.0.0', - recommended_version: 'v6.0.0', - compatible_versions: ['v6.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/PeggyJV/sommelier/releases/download/v6.0.0/sommelier_6.0.0_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/PeggyJV/sommelier/releases/download/v6.0.0/sommelier_6.0.0_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/PeggyJV/sommelier/releases/download/v6.0.0/sommelier_6.0.0_darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/PeggyJV/sommelier/releases/download/v6.0.0/sommelier_6.0.0_darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/PeggyJV/sommelier/releases/download/v6.0.0/sommelier_6.0.0_windows_amd64.tar.gz' - } + "denom": "usomm", + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - 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' - }, - description: - 'Automated vaults find best-in-class yields while mitigating risk.', - peers: { - seeds: [ - { - id: 'c94fd60124e3656df54ff965d178e36c760c195d', - address: '65.108.57.224:26656' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:14156', - provider: 'Polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:14156', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'sommelier-mainnet-seed.autostake.com:27176', - provider: 'AutoStake 🛡️ Slash Protected' - } - ], - persistent_peers: [ - { - id: '6533beebc826f84376e503bbc3265b07b26b9ad5', - address: 'sommelier.standardcryptovc.com:26656', - provider: 'standardcrypto' - }, + "staking": { + "staking_tokens": [ { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'sommelier-mainnet-peer.autostake.com:27176', - provider: 'AutoStake 🛡️ Slash Protected' + "denom": "usomm" } ] }, - apis: { - rpc: [ + "codebase": {}, + "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" + }, + "description": "Automated vaults find best-in-class yields while mitigating risk.", + "apis": { + "rpc": [ { - 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" }, { - address: 'https://sommelier-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://sommelier-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://sommelier-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://sommelier-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rpc-sommelier.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-sommelier.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://somm-rpc.kleomedes.network', - provider: 'Kleomedes' + "address": "https://somm-rpc.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://sommelier-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://sommelier-rpc.w3coins.io", + "provider": "w3coins" } ], - rest: [ + "rest": [ { - address: 'https://api-sommelier.pupmos.network', - provider: 'PUPMØS' + "address": "https://api-sommelier.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://sommelier-api.polkachu.com', - provider: 'Polkachu' + "address": "https://sommelier-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://sommelier-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://sommelier-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api-sommelier.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-sommelier.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://sommelier-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://sommelier-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://somm-api.kleomedes.network', - provider: 'Kleomedes' + "address": "https://somm-api.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://sommelier-api.w3coins.io', - provider: 'w3coins' + "address": "https://sommelier-api.w3coins.io", + "provider": "w3coins" } ], - grpc: [ + "grpc": [ { - address: 'sommelier-grpc.polkachu.com:14190', - provider: 'Polkachu' + "address": "sommelier-grpc.polkachu.com:14190", + "provider": "Polkachu" }, { - address: 'sommelier-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "sommelier-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'sommelier-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "sommelier-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-sommelier.cosmos-spaces.cloud:2310', - provider: 'Cosmos Spaces' + "address": "grpc-sommelier.cosmos-spaces.cloud:2310", + "provider": "Cosmos Spaces" }, { - address: 'https://grpc.sommelier.nodexcapital.com', - provider: '⚡NodeX Validator⚡' + "address": "https://grpc.sommelier.nodexcapital.com", + "provider": "⚡NodeX Validator⚡" }, { - address: 'sommelier-grpc.w3coins.io:14190', - provider: 'w3coins' + "address": "sommelier-grpc.w3coins.io:14190", + "provider": "w3coins" } ] }, - explorers: [ + "explorers": [ { - kind: 'sommscan', - url: 'https://sommscan.io', - tx_page: 'https://sommscan.io' + "kind": "sommscan", + "url": "https://sommscan.io", + "tx_page": "https://sommscan.io" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/sommelier', - tx_page: 'https://www.mintscan.io/sommelier/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/sommelier/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/sommelier", + "tx_page": "https://www.mintscan.io/sommelier/transactions/${txHash}", + "account_page": "https://www.mintscan.io/sommelier/accounts/${accountAddress}" }, { - kind: 'NODEXPLORER', - url: 'https://explorer.nodexcapital.com/sommelier', - tx_page: 'https://explorer.nodexcapital.com/sommelier/tx/${txHash}', - account_page: - 'https://explorer.nodexcapital.com/sommelier/account/${accountAddress}' + "kind": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com/sommelier", + "tx_page": "https://explorer.nodexcapital.com/sommelier/tx/${txHash}", + "account_page": "https://explorer.nodexcapital.com/sommelier/account/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/sommelier', - tx_page: 'https://atomscan.com/sommelier/transactions/${txHash}', - account_page: - 'https://atomscan.com/sommelier/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/sommelier", + "tx_page": "https://atomscan.com/sommelier/transactions/${txHash}", + "account_page": "https://atomscan.com/sommelier/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'source', - status: 'live', - network_type: 'mainnet', - website: 'https://www.sourceprotocol.io/', - pretty_name: 'Source', - chain_id: 'source-1', - bech32_prefix: 'source', - daemon_name: 'sourced', - node_home: '$HOME/.source', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'usource', - fixed_min_gas_price: 0.05, - low_gas_price: 0.05, - average_gas_price: 0.075, - high_gas_price: 0.1 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "source", + "status": "live", + "network_type": "mainnet", + "website": "https://www.sourceprotocol.io/", + "pretty_name": "Source", + "chain_id": "source-1", + "bech32_prefix": "source", + "daemon_name": "sourced", + "node_home": "$HOME/.source", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'usource' + "denom": "usource", + "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/Source-Protocol-Cosmos/source', - recommended_version: 'v3.0.0', - compatible_versions: ['v3.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/Source-Protocol-Cosmos/mainnet/master/source-1/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v3.0.0', - recommended_version: 'v3.0.0', - compatible_versions: ['v3.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true + "denom": "usource" } ] }, - peers: { - seeds: [ - { - id: '7347b05f140e4ed5d3da7b26c754a486dc1d2ecd', - address: 'source-mainnet-seed.itrocket.net:32656', - provider: 'ITRocket' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'source-mainnet-seed.autostake.com:27446', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '738be29546d9504b3845d781b9dc35bc6f996c5f', - address: 'rpc.source.nodestake.top:666', - provider: 'NodeStake' - } - ], - persistent_peers: [ - { - id: '96d63849a529a15f037a28c276ea6e3ac2449695', - address: '34.222.1.252:26656' - }, - { - id: '8a812024b8a5b4539878b03ac2f822655831ca5f', - address: 'source-mainnet-peer.itrocket.net:32656', - provider: 'ITRocket' - }, - { - id: '79adf04741f4a019684efc73e42467cb7d6d3a69', - address: '148.251.19.41:25656', - provider: '[NODERS]TEAM' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'source-mainnet-peer.autostake.com:27446', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: ' 3c729ffe80393abd430a7c723fab2e8aa60ffa46', - address: 'source.peers.stavr.tech:20056', - provider: '🔥STAVR🔥' - }, - { - id: 'bf1a4f212727debe13519362322d06d03a5d395b', - address: '95.217.160.123:26656', - provider: 'NodeStake' - }, - { - id: 'afc8fa287e2b6b46bbeba57dfcb4bd6dcab6b6a3', - address: '138.201.21.197:28656', - provider: 'StakeTown' - }, - { - id: '7e153e83fbe2f5618fffbdfd803f70ee78ad797d', - address: 'rpc.source.indonode.net:12656', - provider: 'Indonode' - } - ] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.source.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.source.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://source.rpc.moonbridge.team/', - provider: 'MoonBridge' + "address": "https://source.rpc.moonbridge.team/", + "provider": "MoonBridge" }, { - address: 'https://source.rpc.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://source.rpc.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc-source.nodeist.net', - provider: 'Nodeist' + "address": "https://rpc-source.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://source-mainnet-rpc.itrocket.net:443', - provider: 'ITRocket' + "address": "https://source-mainnet-rpc.itrocket.net:443", + "provider": "ITRocket" }, { - address: 'https://rpc-source.sr20de.xyz:443', - provider: 'Sr20de' + "address": "https://rpc-source.sr20de.xyz:443", + "provider": "Sr20de" }, { - address: 'https://source-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://source-rpc.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://rpc.source.tcnetwork.io', - provider: 'TC Network' + "address": "https://rpc.source.tcnetwork.io", + "provider": "TC Network" }, { - address: 'https://rpc.source.indonode.net', - provider: 'Indonode' + "address": "https://rpc.source.indonode.net", + "provider": "Indonode" }, { - address: 'https://source.rpc.skynodejs.net/', - provider: 'skynodejs' + "address": "https://source.rpc.skynodejs.net/", + "provider": "skynodejs" } ], - rest: [ + "rest": [ { - address: 'https://api.source.nodestake.top', - provider: 'NodeStake' + "address": "https://api.source.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://api-source.nodeist.net', - provider: 'Nodeist' + "address": "https://api-source.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://source.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://source.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://source-mainnet-api.itrocket.net:443', - provider: 'ITRocket' + "address": "https://source-mainnet-api.itrocket.net:443", + "provider": "ITRocket" }, { - address: 'https://source.api.moonbridge.team/', - provider: 'MoonBridge' + "address": "https://source.api.moonbridge.team/", + "provider": "MoonBridge" }, { - address: 'https://api-source.sr20de.xyz', - provider: 'Sr20de' + "address": "https://api-source.sr20de.xyz", + "provider": "Sr20de" }, { - address: 'https://source-api.stake-town.com', - provider: 'StakeTown' + "address": "https://source-api.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://rest.source.tcnetwork.io', - provider: 'TC Network' + "address": "https://rest.source.tcnetwork.io", + "provider": "TC Network" }, { - address: 'https://api.source.indonode.net', - provider: 'Indonode' + "address": "https://api.source.indonode.net", + "provider": "Indonode" } ], - grpc: [ + "grpc": [ { - address: 'source-mainnet-grpc.itrocket.net:32090', - provider: 'ITRocket' + "address": "source-mainnet-grpc.itrocket.net:32090", + "provider": "ITRocket" }, { - address: 'http://source.grpc.m.stavr.tech:9590', - provider: '🔥STAVR🔥' + "address": "http://source.grpc.m.stavr.tech:9590", + "provider": "🔥STAVR🔥" }, { - address: 'https://grpc-source.nodeist.net:443', - provider: 'Nodeist' + "address": "https://grpc-source.nodeist.net:443", + "provider": "Nodeist" }, { - address: 'https://grpc.source.nodestake.top:443', - provider: 'NodeStake' + "address": "https://grpc.source.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://grpc-source.sr20de.xyz:443', - provider: 'Sr20de' + "address": "https://grpc-source.sr20de.xyz:443", + "provider": "Sr20de" }, { - address: 'source-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "source-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'https://source.grpc.skynodejs.net', - provider: 'skynodejs' + "address": "https://source.grpc.skynodejs.net", + "provider": "skynodejs" } ] }, - explorers: [ + "explorers": [ { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Source-Mainnet/', - tx_page: 'https://explorer.stavr.tech/Source-Mainnet/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Source-Mainnet/accounts/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Source-Mainnet/", + "tx_page": "https://explorer.stavr.tech/Source-Mainnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Source-Mainnet/accounts/${accountAddress}" }, { - kind: 'Nodeist', - url: 'https://exp.nodeist.net/source/', - tx_page: 'https://exp.nodeist.net/source/tx/${txHash}', - account_page: - 'https://exp.nodeist.net/source/accounts/${accountAddress}' + "kind": "Nodeist", + "url": "https://exp.nodeist.net/source/", + "tx_page": "https://exp.nodeist.net/source/tx/${txHash}", + "account_page": "https://exp.nodeist.net/source/accounts/${accountAddress}" }, { - kind: 'MoonBridge', - url: 'https://explorer.moonbridge.team/source', - tx_page: 'https://explorer.moonbridge.team/source/tx/${txHash}', - account_page: - 'https://explorer.moonbridge.team/source/accounts/${accountAddress}' + "kind": "MoonBridge", + "url": "https://explorer.moonbridge.team/source", + "tx_page": "https://explorer.moonbridge.team/source/tx/${txHash}", + "account_page": "https://explorer.moonbridge.team/source/accounts/${accountAddress}" }, { - kind: 'NodeStake', - url: 'https://explorer.nodestake.top/source', - tx_page: 'https://explorer.nodestake.top/source/tx/${txHash}', - account_page: - 'https://explorer.nodestake.top/source/accounts/${accountAddress}' + "kind": "NodeStake", + "url": "https://explorer.nodestake.top/source", + "tx_page": "https://explorer.nodestake.top/source/tx/${txHash}", + "account_page": "https://explorer.nodestake.top/source/accounts/${accountAddress}" }, { - kind: 'Sr20de', - url: 'https://explorer.sr20de.xyz/Source-mainnet', - tx_page: 'https://explorer.sr20de.xyz/Source-mainnet/tx/${txHash}', - account_page: - 'https://explorer.sr20de.xyz/Source-mainnet/accounts/${accountAddress}' + "kind": "Sr20de", + "url": "https://explorer.sr20de.xyz/Source-mainnet", + "tx_page": "https://explorer.sr20de.xyz/Source-mainnet/tx/${txHash}", + "account_page": "https://explorer.sr20de.xyz/Source-mainnet/accounts/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/source', - tx_page: 'https://explorer.tcnetwork.io/source/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/source", + "tx_page": "https://explorer.tcnetwork.io/source/transaction/${txHash}" }, { - kind: 'Indonode', - url: 'https://explorer.indonode.net/source', - tx_page: 'https://explorer.indonode.net/source/tx/${txHash}' + "kind": "Indonode", + "url": "https://explorer.indonode.net/source", + "tx_page": "https://explorer.indonode.net/source/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg" } }, { - $schema: '../chain.schema.json', - chain_name: 'stafihub', - chain_id: 'stafihub-1', - website: 'https://stafihub.io/', - pretty_name: 'StaFi Hub', - status: 'live', - network_type: 'mainnet', - bech32_prefix: 'stafi', - daemon_name: 'stafihubd', - node_home: '$HOME/.stafihub', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "stafihub", + "chain_id": "stafihub-1", + "website": "https://stafihub.io/", + "pretty_name": "StaFi Hub", + "status": "live", + "network_type": "mainnet", + "bech32_prefix": "stafi", + "daemon_name": "stafihubd", + "node_home": "$HOME/.stafihub", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ufis', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0.025, - high_gas_price: 0.04 + "denom": "ufis", + "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: 'ufis' + "denom": "ufis" } ], - lock_duration: { - time: '1209600s' + "lock_duration": { + "time": "1209600s" } }, - codebase: { - git_repo: 'https://github.com/stafihub/stafihub', - recommended_version: 'v0.5.0', - compatible_versions: ['v0.5.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '5.2.1', - ics_enabled: ['ics20-1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/stafihub/network/main/mainnets/stafihub-1(dragonberry)/genesis.json' - }, - versions: [ - { - name: 'v020', - tag: 'v0.2.3', - height: 0, - next_version_name: 'v030' - }, - { - name: 'v030', - tag: 'v0.3.0', - height: 2626590, - proposal: 1, - next_version_name: 'v040' - }, - { - name: 'v040', - tag: 'v0.4.0', - height: 3766566, - proposal: 2, - next_version_name: 'v050' - }, - { - name: 'v050', - tag: 'v0.5.0', - height: 5868372, - proposal: 4, - recommended_version: 'v0.5.0', - compatible_versions: ['v0.5.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '5.2.1', - ics_enabled: ['ics20-1'], - next_version_name: 'v060' - } - ] - }, - peers: { - persistent_peers: [ - { - id: 'bed296dfadd972ed07cab82c87a0ee5c182dea43', - address: '18.136.189.120:26656' - }, - { - id: '045fe6e054a5abe35f5433bd333f0a1b18aa28cf', - address: '45.136.28.11:26656' - }, - { - id: '20c0b45c47426c51b3187aa5dca82d9900c2fb36', - address: '5.161.88.157:26656' - }, - { - id: '70230067eb1e668d2566329e727c72c930e54de3', - address: '116.202.30.7:26656' - }, - { - id: '03f3cb61c7c472044c37aeededde2ffe8884fa02', - address: '159.69.108.86:26656' - } - ] + "codebase": { + "cosmos_sdk_version": "0.46" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://public-rpc1.stafihub.io:443', - provider: 'StaFiHub' + "address": "https://public-rpc1.stafihub.io:443", + "provider": "StaFiHub" }, { - address: 'https://public-rpc2.stafihub.io:443', - provider: 'StaFiHub' + "address": "https://public-rpc2.stafihub.io:443", + "provider": "StaFiHub" }, { - address: 'https://rpc.stafihub.nodestake.top:443', - provider: 'NodeStake' + "address": "https://rpc.stafihub.nodestake.top:443", + "provider": "NodeStake" } ], - rest: [ + "rest": [ { - address: 'https://public-rest-rpc1.stafihub.io', - provider: 'StaFiHub' + "address": "https://public-rest-rpc1.stafihub.io", + "provider": "StaFiHub" }, { - address: 'https://public-rest-rpc2.stafihub.io', - provider: 'StaFiHub' + "address": "https://public-rest-rpc2.stafihub.io", + "provider": "StaFiHub" }, { - address: 'https://api.stafihub.nodestake.top', - provider: 'NodeStake' + "address": "https://api.stafihub.nodestake.top", + "provider": "NodeStake" } ], - grpc: [ + "grpc": [ { - address: 'public-grpc-rpc1.stafihub.io:443', - provider: 'StaFiHub' + "address": "public-grpc-rpc1.stafihub.io:443", + "provider": "StaFiHub" }, { - address: 'public-grpc-rpc2.stafihub.io:443', - provider: 'StaFiHub' + "address": "public-grpc-rpc2.stafihub.io:443", + "provider": "StaFiHub" }, { - address: 'grpc.stafihub.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.stafihub.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'stafihub.nodejumper.io:9090', - provider: 'NODEJUMPER' + "address": "stafihub.nodejumper.io:9090", + "provider": "NODEJUMPER" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/stafi', - tx_page: 'https://www.mintscan.io/stafi/transactions/${txHash}', - account_page: 'https://www.mintscan.io/stafi/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/stafi", + "tx_page": "https://www.mintscan.io/stafi/transactions/${txHash}", + "account_page": "https://www.mintscan.io/stafi/accounts/${accountAddress}" }, { - kind: 'ping-pub', - url: 'https://ping.pub/stafihub', - tx_page: 'https://ping.pub/stafihub/tx/${txHash}' + "kind": "ping-pub", + "url": "https://ping.pub/stafihub", + "tx_page": "https://ping.pub/stafihub/tx/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/stafihub', - tx_page: 'https://atomscan.com/stafihub/transactions/${txHash}', - account_page: 'https://atomscan.com/stafihub/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/stafihub", + "tx_page": "https://atomscan.com/stafihub/transactions/${txHash}", + "account_page": "https://atomscan.com/stafihub/accounts/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub-chain-logo.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub-chain-logo.png" }, - keywords: ['liquid staking'], - images: [ + "keywords": [ + "liquid staking" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub-chain-logo.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub-chain-logo.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'stargaze', - status: 'live', - network_type: 'mainnet', - website: 'https://stargaze.zone/', - pretty_name: 'Stargaze', - chain_id: 'stargaze-1', - bech32_prefix: 'stars', - daemon_name: 'starsd', - node_home: '$HOME/.starsd', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ustars', - fixed_min_gas_price: 1, - low_gas_price: 1, - average_gas_price: 1.1, - high_gas_price: 1.2 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "stargaze", + "status": "live", + "network_type": "mainnet", + "website": "https://stargaze.zone/", + "pretty_name": "Stargaze", + "chain_id": "stargaze-1", + "bech32_prefix": "stars", + "daemon_name": "starsd", + "node_home": "$HOME/.starsd", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ustars' + "denom": "ustars", + "fixed_min_gas_price": 1, + "low_gas_price": 1, + "average_gas_price": 1.1, + "high_gas_price": 1.2 } ] }, - codebase: { - git_repo: 'https://github.com/public-awesome/stargaze', - recommended_version: 'v12.0.0', - compatible_versions: ['v12.0.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/public-awesome/mainnet/main/stargaze-1/genesis.tar.gz' - }, - versions: [ - { - name: 'v9', - recommended_version: 'v9.1.0', - compatible_versions: ['v9.1.0', 'v9.0.0'], - next_version_name: 'v10' - }, - { - name: 'v10', - recommended_version: 'v10.0.1', - compatible_versions: ['v10.0.1', 'v10.0.0'], - next_version_name: 'v11' - }, - { - name: 'v11', - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - next_version_name: 'v12' - }, + "staking": { + "staking_tokens": [ { - name: 'v12', - recommended_version: 'v12.0.0', - compatible_versions: ['v12.0.0'], - next_version_name: '' + "denom": "ustars" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' - }, - description: - 'The premier community-focused blockchain for NFTs. Stargaze empowers creators, developers, collectors, and traders to participate on the platform. The Stargaze chain consists of various NFT-related apps such as a Launchpad, and a Marketplace with offers and auctions.', - peers: { - seeds: [ - { - id: '70ed826888f102c7c1ceb4d07287956628a53508', - address: '174.138.124.7:36656' - }, - { - id: '722079345d941cd2da3daedea548c909d9b83ec5', - address: '104.248.101.113:36656' - }, - { - id: 'd5fc4f479c4e212c96dff5704bb2468ea03b8ae3', - address: 'sg-seed.blockpane.com:26656', - provider: '[ block pane ]' - }, - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:13756', - provider: 'RHINO' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:13756', - provider: 'Polkachu' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'stargaze-mainnet-seed.autostake.com:26986', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:13756', - provider: 'WhisperNode 🤐' - }, - { - id: '96e0040d44a2f0b59d2a07e128369363d8535b67', - address: 'seed-stargaze.ibs.team:16658', - provider: 'Inter Blockchain Services' - }, - { - id: 'df949a46ae6529ae1e09b034b49716468d5cc7e9', - address: 'seeds.stakerhouse.com:10356', - provider: 'StakerHouse' - } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'stargaze-mainnet-peer.autostake.com:26986', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '344c62c700a59de6137ccd6cade56721cb1e9777', - address: 'stargaze.ramuchi.tech:26656', - provider: 'ramuchi.tech' - }, - { - id: 'f132374f5e70088e855c81df98dd8bb28ea7491d', - address: '65.21.91.99:46656', - provider: 'Staketab' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" }, - apis: { - rpc: [ + "description": "The premier community-focused blockchain for NFTs. Stargaze empowers creators, developers, collectors, and traders to participate on the platform. The Stargaze chain consists of various NFT-related apps such as a Launchpad, and a Marketplace with offers and auctions.", + "apis": { + "rpc": [ { - address: 'https://rpc.stargaze-apis.com/', - provider: 'Stargaze Foundation' + "address": "https://rpc.stargaze-apis.com/", + "provider": "Stargaze Foundation" }, { - address: 'https://rpc-stargaze.pupmos.network', - provider: 'PUPMØS' + "address": "https://rpc-stargaze.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://rpc-stargaze.ezstaking.dev', - provider: 'EZStaking.io' + "address": "https://rpc-stargaze.ezstaking.dev", + "provider": "EZStaking.io" }, { - address: 'https://stargaze-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://stargaze-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc-stargaze-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-stargaze-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://stargaze.c29r3.xyz:443/rpc/', - provider: 'c29r3' + "address": "https://stargaze.c29r3.xyz:443/rpc/", + "provider": "c29r3" }, { - address: 'https://rpc-stargaze.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-stargaze.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://stargaze-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://stargaze-rpc.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://rpc-stargaze.d-stake.xyz', - provider: 'D-stake' + "address": "https://rpc-stargaze.d-stake.xyz", + "provider": "D-stake" }, { - address: 'https://rpc.stargaze.silentvalidator.com/', - provider: 'silent' + "address": "https://rpc.stargaze.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://rpc-stargaze.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-stargaze.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://stargaze-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://stargaze-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://stargaze-rpc.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://stargaze-rpc.ramuchi.tech", + "provider": "ramuchi.tech" }, { - address: 'https://stargaze-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://stargaze-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://stargaze-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://stargaze-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://stargaze-rpc.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://stargaze-rpc.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://stargaze-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://stargaze-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://stargaze-rpc.reece.sh:443', - provider: 'Reecepbcups' + "address": "https://stargaze-rpc.reece.sh:443", + "provider": "Reecepbcups" }, { - address: 'https://rpc.stargaze.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.stargaze.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ + "rest": [ { - address: 'https://rest.stargaze-apis.com/', - provider: 'Stargaze Foundation' + "address": "https://rest.stargaze-apis.com/", + "provider": "Stargaze Foundation" }, { - address: 'https://api-stargaze.pupmos.network', - provider: 'PUPMØS' + "address": "https://api-stargaze.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://api-stargaze.ezstaking.dev', - provider: 'EZStaking.io' + "address": "https://api-stargaze.ezstaking.dev", + "provider": "EZStaking.io" }, { - address: 'https://api-stargaze-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-stargaze-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://stargaze.c29r3.xyz:443/api/', - provider: 'c29r3' + "address": "https://stargaze.c29r3.xyz:443/api/", + "provider": "c29r3" }, { - address: 'https://stargaze-api.polkachu.com', - provider: 'Polkachu' + "address": "https://stargaze-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://stargaze-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://stargaze-api.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://api-stargaze.d-stake.xyz', - provider: 'D-stake' + "address": "https://api-stargaze.d-stake.xyz", + "provider": "D-stake" }, { - address: 'https://api-stargaze.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-stargaze.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://api.stargaze.silentvalidator.com/', - provider: 'silent' + "address": "https://api.stargaze.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://stargaze-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://stargaze-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://lcd-stargaze.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-stargaze.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://stargaze-api.ramuchi.tech', - provider: 'ramuchi.tech' + "address": "https://stargaze-api.ramuchi.tech", + "provider": "ramuchi.tech" }, { - address: 'https://stargaze-rest.staketab.org', - provider: 'Staketab' + "address": "https://stargaze-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://stargaze-api.w3coins.io', - provider: 'w3coins' + "address": "https://stargaze-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://stargaze-rest.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://stargaze-rest.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://stargaze-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://stargaze-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://stargaze-api.reece.sh:443', - provider: 'Reecepbcups' + "address": "https://stargaze-api.reece.sh:443", + "provider": "Reecepbcups" }, { - address: 'https://lcd.stargaze.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.stargaze.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'grpc-stargaze-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-stargaze-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'stargaze-grpc.polkachu.com:13790', - provider: 'Polkachu' + "address": "stargaze-grpc.polkachu.com:13790", + "provider": "Polkachu" }, { - address: 'stargaze-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "stargaze-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-stargaze.cosmos-spaces.cloud:1150', - provider: 'Cosmos Spaces' + "address": "grpc-stargaze.cosmos-spaces.cloud:1150", + "provider": "Cosmos Spaces" }, { - address: 'https://stargaze-grpc.ramuchi.tech:9090', - provider: 'ramuchi.tech' + "address": "https://stargaze-grpc.ramuchi.tech:9090", + "provider": "ramuchi.tech" }, { - address: 'services.staketab.com:9092', - provider: 'Staketab' + "address": "services.staketab.com:9092", + "provider": "Staketab" }, { - address: 'stargaze-grpc.w3coins.io:13790', - provider: 'w3coins' + "address": "stargaze-grpc.w3coins.io:13790", + "provider": "w3coins" }, { - address: 'stargaze-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "stargaze-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'stargaze-grpc.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "stargaze-grpc.stakerhouse.com:443", + "provider": "StakerHouse" }, { - address: 'https://grpc.stargaze.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.stargaze.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/stargaze', - tx_page: 'https://app.ezstaking.io/stargaze/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/stargaze/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/stargaze", + "tx_page": "https://app.ezstaking.io/stargaze/txs/${txHash}", + "account_page": "https://app.ezstaking.io/stargaze/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/stargaze/', - tx_page: 'https://www.mintscan.io/stargaze/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/stargaze/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/stargaze/", + "tx_page": "https://www.mintscan.io/stargaze/transactions/${txHash}", + "account_page": "https://www.mintscan.io/stargaze/accounts/${accountAddress}" }, { - 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}', - account_page: 'https://atomscan.com/stargaze/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/stargaze", + "tx_page": "https://atomscan.com/stargaze/transactions/${txHash}", + "account_page": "https://atomscan.com/stargaze/accounts/${accountAddress}" }, { - kind: 'Starscan', - url: 'https://starscan.net/', - tx_page: 'https://starscan.net/stargaze-1/tx/${txHash}', - account_page: - 'https://starscan.net/stargaze-1/address/${accountAddress}' + "kind": "Starscan", + "url": "https://starscan.net/", + "tx_page": "https://starscan.net/stargaze-1/tx/${txHash}", + "account_page": "https://starscan.net/stargaze-1/address/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'starname', - status: 'live', - network_type: 'mainnet', - website: 'https://www.starname.me/', - pretty_name: 'Starname', - chain_id: 'iov-mainnet-ibc', - bech32_prefix: 'star', - slip44: 234, - alternative_slip44s: [118], - fees: { - fee_tokens: [ - { - denom: 'uiov', - low_gas_price: 1, - average_gas_price: 2, - high_gas_price: 3 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "starname", + "status": "live", + "network_type": "mainnet", + "website": "https://www.starname.me/", + "pretty_name": "Starname", + "chain_id": "iov-mainnet-ibc", + "bech32_prefix": "star", + "slip44": 234, + "alternative_slip44s": [ + 118 + ], + "fees": { + "fee_tokens": [ { - denom: 'uiov' + "denom": "uiov", + "low_gas_price": 1, + "average_gas_price": 2, + "high_gas_price": 3 } ] }, - codebase: { - git_repo: 'https://github.com/iov-one/starnamed', - recommended_version: 'v0.11.7', - compatible_versions: ['v0.11.7'], - genesis: { - genesis_url: - 'https://gist.githubusercontent.com/davepuchyr/6bea7bf369064d118195e9b15ea08a0f/raw/genesis.json' - }, - versions: [ - { - name: 'v0.10', - recommended_version: 'v0.10.18', - compatible_versions: ['v0.10.17', 'v0.10.18'], - next_version_name: 'v0.11' - }, + "staking": { + "staking_tokens": [ { - name: 'v0.11', - recommended_version: 'v0.11.7', - compatible_versions: ['v0.11.7'] + "denom": "uiov" } ] }, - 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' - }, - description: - 'Starname is the best way to claim your part of the blockchain. You can use it for decentralized identification, payments, ownership and applications. Starname can be integrated into digital wallets, dapps and exchanges.', - peers: { - persistent_peers: [ - { - id: '9aabe0ac122f3104d8fc098e19c66714c6f1ace9', - address: '3.37.140.5:26656' - }, - { - id: '68d03f2594a4d7ae2aa9d27f208dbea4de77b048', - address: '34.65.26.71:26656' - } - ] + "codebase": {}, + "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" }, - apis: { - rpc: [ + "description": "Starname is the best way to claim your part of the blockchain. You can use it for decentralized identification, payments, ownership and applications. Starname can be integrated into digital wallets, dapps and exchanges.", + "apis": { + "rpc": [ { - address: 'https://rpc.starname.cosmos.iov.one', - provider: 'Starname' + "address": "https://rpc.starname.cosmos.iov.one", + "provider": "Starname" }, { - address: 'https://rpc-starname-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-starname-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://rpc.starname.cosmos.iov.one', - provider: 'starname.me' + "address": "https://rpc.starname.cosmos.iov.one", + "provider": "starname.me" } ], - rest: [ + "rest": [ { - address: 'https://api.starname.cosmos.iov.one', - provider: 'Starname' + "address": "https://api.starname.cosmos.iov.one", + "provider": "Starname" }, { - address: 'https://api-starname-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-starname-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://api.starname.cosmos.iov.one', - provider: 'starname.me' + "address": "https://api.starname.cosmos.iov.one", + "provider": "starname.me" } ], - grpc: [ + "grpc": [ { - address: 'grpc-starname-ia.cosmosia.notional.ventures:443', - provider: 'starname' + "address": "grpc-starname-ia.cosmosia.notional.ventures:443", + "provider": "starname" } ] }, - explorers: [ + "explorers": [ { - 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}', - account_page: 'https://atomscan.com/starname/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/starname", + "tx_page": "https://atomscan.com/starname/transactions/${txHash}", + "account_page": "https://atomscan.com/starname/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'stratos', - status: 'live', - network_type: 'mainnet', - website: 'https://www.thestratos.org', - pretty_name: 'Stratos', - chain_id: 'stratos-1', - bech32_prefix: 'st', - daemon_name: 'stchaind', - node_home: '$HOME/.stchaind', - key_algos: ['ethsecp256k1'], - extra_codecs: [], - slip44: 606, - fees: { - fee_tokens: [ - { - denom: 'wei' - } - ] - }, - codebase: { - git_repo: 'https://github.com/stratosnet/stratos-chain', - recommended_version: 'v0.11.2', - compatible_versions: ['v0.11.2'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/stratosnet/mainnet/main/genesis/genesis.json' - }, - versions: [ + "$schema": "../chain.schema.json", + "chain_name": "stratos", + "status": "live", + "network_type": "mainnet", + "website": "https://www.thestratos.org", + "pretty_name": "Stratos", + "chain_id": "stratos-1", + "bech32_prefix": "st", + "daemon_name": "stchaind", + "node_home": "$HOME/.stchaind", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [], + "slip44": 606, + "fees": { + "fee_tokens": [ { - name: 'v0.11.2', - recommended_version: 'v0.11.2', - compatible_versions: ['v0.11.2'] + "denom": "wei" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg' - }, - peers: { - seeds: [ - { - id: 'cdbd7ce27584e699d9b9e6d72a1551666c750e4d', - address: '35.86.41.142:26656', - provider: 'thestratos.org' - }, - { - id: 'ce225e67f7a383b50c91aeb902a86dd3ecb70d65', - address: '34.84.212.13:26656', - provider: 'thestratos.org' - }, - { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:21856', - provider: 'WhisperNode 🤐' - } - ], - persistent_peers: [ - { - id: '8a57d4701e87096c9bf151c376aafa97f9f516c7', - address: '78.46.174.39:25656', - provider: '[NODERS]TEAM' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.thestratos.org', - provider: 'thestratos.org' + "address": "https://rpc.thestratos.org", + "provider": "thestratos.org" }, { - address: 'https://rpc.stratos.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.stratos.nodestake.top", + "provider": "NodeStake" }, { - address: 'http://stratos.rpc.nodersteam.com:26657/', - provider: '[NODERS]TEAM' + "address": "http://stratos.rpc.nodersteam.com:26657/", + "provider": "[NODERS]TEAM" }, { - address: 'https://rpc-stratos.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-stratos.whispernode.com:443", + "provider": "WhisperNode 🤐" } ], - rest: [ + "rest": [ { - address: 'https://rest.thestratos.org', - provider: 'thestratos.org' + "address": "https://rest.thestratos.org", + "provider": "thestratos.org" }, { - address: 'https://api.stratos.nodestake.top', - provider: 'NodeStake' + "address": "https://api.stratos.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://lcd-stratos.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-stratos.whispernode.com:443", + "provider": "WhisperNode 🤐" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.thestratos.org', - provider: 'thestratos.org' + "address": "https://grpc.thestratos.org", + "provider": "thestratos.org" }, { - address: 'https://grpc.stratos.nodestake.top', - provider: 'NodeStake' + "address": "https://grpc.stratos.nodestake.top", + "provider": "NodeStake" }, { - address: 'stratos.grpc.nodersteam.com:9090', - provider: '[NODERS]TEAM' + "address": "stratos.grpc.nodersteam.com:9090", + "provider": "[NODERS]TEAM" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://web3-rpc.thestratos.org', - provider: 'thestratos.org' + "address": "https://web3-rpc.thestratos.org", + "provider": "thestratos.org" }, { - address: 'https://jsonrpc.stratos.nodestake.top', - provider: 'NodeStake' + "address": "https://jsonrpc.stratos.nodestake.top", + "provider": "NodeStake" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://explorer.thestratos.org', - tx_page: 'https://explorer.thestratos.org/transactions/${txHash}', - account_page: - 'https://explorer.thestratos.org/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://explorer.thestratos.org", + "tx_page": "https://explorer.thestratos.org/transactions/${txHash}", + "account_page": "https://explorer.thestratos.org/accounts/${accountAddress}" }, { - kind: 'blockscout', - url: 'https://web3-explorer.thestratos.org', - tx_page: 'https://web3-explorer.thestratos.org/tx/${txHash}', - account_page: - 'https://web3-explorer.thestratos.org/address/${accountAddress}' + "kind": "blockscout", + "url": "https://web3-explorer.thestratos.org", + "tx_page": "https://web3-explorer.thestratos.org/tx/${txHash}", + "account_page": "https://web3-explorer.thestratos.org/address/${accountAddress}" }, { - kind: 'NodeStake', - url: 'https://explorer.nodestake.top/stratos', - tx_page: 'https://explorer.nodestake.top/stratos/tx/${txHash}', - account_page: - 'https://explorer.nodestake.top/stratos/accounts/${accountAddress}' + "kind": "NodeStake", + "url": "https://explorer.nodestake.top/stratos", + "tx_page": "https://explorer.nodestake.top/stratos/tx/${txHash}", + "account_page": "https://explorer.nodestake.top/stratos/accounts/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/stratos', - tx_page: 'https://explorer.tcnetwork.io/stratos/transaction/${txHash}', - account_page: - 'https://explorer.tcnetwork.io/stratos/account/${accountAddress}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/stratos", + "tx_page": "https://explorer.tcnetwork.io/stratos/transaction/${txHash}", + "account_page": "https://explorer.tcnetwork.io/stratos/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'stride', - status: 'live', - network_type: 'mainnet', - website: 'https://stride.zone/', - pretty_name: 'Stride', - chain_id: 'stride-1', - bech32_prefix: 'stride', - daemon_name: 'strided', - node_home: '$HOME/.stride', - key_algos: ['ed25519'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ustrd', - fixed_min_gas_price: 0.0005, - low_gas_price: 0.0005, - average_gas_price: 0.001, - high_gas_price: 0.002 - }, - { - denom: 'stuatom', - fixed_min_gas_price: 0.0001, - low_gas_price: 0.0001, - average_gas_price: 0.0002, - high_gas_price: 0.0005 - }, - { - denom: 'stuosmo', - fixed_min_gas_price: 0.001, - low_gas_price: 0.001, - average_gas_price: 0.002, - high_gas_price: 0.004 - }, - { - denom: 'stustars', - fixed_min_gas_price: 1, - low_gas_price: 1, - average_gas_price: 1.1, - high_gas_price: 1.2 - }, - { - denom: 'stujuno', - fixed_min_gas_price: 0.075, - low_gas_price: 0.075, - average_gas_price: 0.1, - high_gas_price: 0.125 - }, - { - denom: 'stuluna', - fixed_min_gas_price: 0.0125, - low_gas_price: 0.0125, - average_gas_price: 0.015, - high_gas_price: 0.04 - }, - { - denom: 'staevmos', - fixed_min_gas_price: 250000000, - low_gas_price: 20000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - }, - { - denom: 'stinj', - fixed_min_gas_price: 500000000, - low_gas_price: 500000000, - average_gas_price: 700000000, - high_gas_price: 900000000 - }, - { - denom: 'stucmdx', - fixed_min_gas_price: 0.02, - low_gas_price: 0.02, - average_gas_price: 0.025, - high_gas_price: 0.04 - }, - { - denom: 'stuumee', - fixed_min_gas_price: 0.1, - low_gas_price: 0.1, - average_gas_price: 0.12, - high_gas_price: 0.2 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ustrd' - } - ] - }, - codebase: { - git_repo: 'https://github.com/Stride-Labs/stride', - recommended_version: 'v17.0.0', - compatible_versions: ['v17.0.0'], - cosmos_sdk_version: 'v0.47.5-stride-distribution-fix-0', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - ibc_go_version: '7.3.1', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/Stride-Labs/testnet/main/mainnet/genesis.json', - ics_ccv_url: - 'https://raw.githubusercontent.com/Stride-Labs/mainnet/main/ics-instructions/ccv.json' - }, - versions: [ - { - name: 'v8', - recommended_version: 'v8.0.0', - compatible_versions: ['v8.0.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '5.1.0', - next_version_name: 'v9' - }, - { - name: 'v9', - height: 3396933, - recommended_version: 'v9.2.1', - compatible_versions: ['v9.0.0', 'v9.2.1'], - proposal: 202, - next_version_name: 'v10' - }, - { - name: 'v10', - height: 4191914, - proposal: 206, - recommended_version: 'v10.0.0', - compatible_versions: ['v10.0.0'], - ibc_go_version: '7.1.0', - cosmos_sdk_version: '0.47.3', - next_version_name: 'v11' - }, - { - name: 'v11', - tag: 'v11.0.0', - height: 4291924, - proposal: 207, - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - ibc_go_version: '7.2.0', - next_version_name: 'v12' - }, - { - name: 'v12', - tag: 'v12.1.0', - height: 4616678, - proposal: 208, - recommended_version: 'v12.1.0', - compatible_versions: ['v12.1.0'], - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - ibc_go_version: '7.2.0', - next_version_name: 'v13' - }, - { - name: 'v13', - tag: 'v13.1.0', - height: 5044405, - proposal: 211, - recommended_version: 'v13.1.0', - compatible_versions: ['v13.1.0'], - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - ibc_go_version: '7.2.0', - next_version_name: 'v14' - }, - { - name: 'v14', - tag: 'v14.0.0', - height: 5223225, - proposal: 214, - recommended_version: 'v14.0.0', - compatible_versions: ['v14.0.0'], - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - ibc_go_version: '7.2.0', - next_version_name: 'v15' - }, - { - name: 'v15', - tag: 'v15.0.0', - height: 5532355, - proposal: 217, - recommended_version: 'v15.0.0', - compatible_versions: ['v15.0.0'], - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - ibc_go_version: '7.2.0', - next_version_name: 'v16' - }, - { - name: 'v16', - tag: 'v16.0.0', - recommended_version: 'v16.0.0', - compatible_versions: ['v16.0.0'], - proposal: 220, - height: 5932395, - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - ibc_go_version: '7.2.0', - next_version_name: 'v17' - }, - { - name: 'v17', - tag: 'v17.0.0', - recommended_version: 'v17.0.0', - compatible_versions: ['v17.0.0'], - proposal: 226, - height: 7244427, - cosmos_sdk_version: 'v0.47.5-stride-distribution-fix-0', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - ibc_go_version: '7.3.1', - next_version_name: '' - } - ] - }, - description: - 'Stride is a blockchain that provides liquidity for staked tokens. Using Stride, you can earn both taking and DeFi yields across the Cosmos IBC ecosystem.', - peers: { - seeds: [ + "$schema": "../chain.schema.json", + "chain_name": "stride", + "status": "live", + "network_type": "mainnet", + "website": "https://stride.zone/", + "pretty_name": "Stride", + "chain_id": "stride-1", + "bech32_prefix": "stride", + "daemon_name": "strided", + "node_home": "$HOME/.stride", + "key_algos": [ + "ed25519" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:12256', - provider: 'RHINO' + "denom": "ustrd", + "fixed_min_gas_price": 0.0005, + "low_gas_price": 0.0005, + "average_gas_price": 0.001, + "high_gas_price": 0.002 }, { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:12256', - provider: 'Polkachu' + "denom": "stuatom", + "fixed_min_gas_price": 0.0001, + "low_gas_price": 0.0001, + "average_gas_price": 0.0002, + "high_gas_price": 0.0005 }, { - id: 'cb91a11588d66cfd9c01f99541df4978a08e0e39', - address: 'seedv1.main.stridenet.co:26656', - provider: 'Stride' + "denom": "stuosmo", + "fixed_min_gas_price": 0.001, + "low_gas_price": 0.001, + "average_gas_price": 0.002, + "high_gas_price": 0.004 }, { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:12256', - provider: 'Lavender.Five Nodes 🐝' + "denom": "stustars", + "fixed_min_gas_price": 1, + "low_gas_price": 1, + "average_gas_price": 1.1, + "high_gas_price": 1.2 }, { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'stride-mainnet-seed.autostake.com:26886', - provider: 'AutoStake 🛡️ Slash Protected' + "denom": "stujuno", + "fixed_min_gas_price": 0.075, + "low_gas_price": 0.075, + "average_gas_price": 0.1, + "high_gas_price": 0.125 }, { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'stride.rpc.kjnodes.com:11659', - provider: 'kjnodes' + "denom": "stuluna", + "fixed_min_gas_price": 0.0125, + "low_gas_price": 0.0125, + "average_gas_price": 0.015, + "high_gas_price": 0.04 }, { - id: '86bd5cb6e762f673f1706e5889e039d5406b4b90', - address: 'stride.seed.node75.org:10456', - provider: 'Pro-Nodes75' + "denom": "staevmos", + "fixed_min_gas_price": 250000000, + "low_gas_price": 20000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 }, { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' + "denom": "stinj", + "fixed_min_gas_price": 500000000, + "low_gas_price": 500000000, + "average_gas_price": 700000000, + "high_gas_price": 900000000 }, { - id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6', - address: 'seeds.whispernode.com:12256', - provider: 'WhisperNode 🤐' + "denom": "stucmdx", + "fixed_min_gas_price": 0.02, + "low_gas_price": 0.02, + "average_gas_price": 0.025, + "high_gas_price": 0.04 }, { - id: 'ced7684f4d60399986cdbc1465ac00a420a14202', - address: 'seed-stride-01.stakeflow.io:1807', - provider: 'Stakeflow' + "denom": "stuumee", + "fixed_min_gas_price": 0.1, + "low_gas_price": 0.1, + "average_gas_price": 0.12, + "high_gas_price": 0.2 } - ], - persistent_peers: [ - { - id: 'df3f533e6b9776c11f08da804edcb810cbdd2080', - address: '65.108.234.23:12256', - provider: 'Polkachu-2' - }, - { - id: 'e821acdaf0c7a3c60ea3cd4eb4a98a62dad06f58', - address: '43.201.12.41:26656', - provider: 'Cosmostation-2' - }, - { - id: 'a7b4cf6f65138ba61518c2c45402da32dc8e28b7', - address: 'stride.peer.stavr.tech:21016', - provider: '🔥STAVR🔥' - }, - { - id: 'b5f9fa874781f975687018ae559f0d952d3a2e24', - address: '52.52.208.179:26656', - provider: 'Cosmostation-3' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'stride-mainnet-peer.autostake.com:26886', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'ced7684f4d60399986cdbc1465ac00a420a14202', - address: 'peer-stride-01.stakeflow.io:1807', - provider: 'Stakeflow' - }, + ] + }, + "staking": { + "staking_tokens": [ { - id: '4d17c6e85a1e6282efee950ff3dfe85b4b043f0f', - address: '148.251.51.144:26656', - provider: 'Stake-Take' + "denom": "ustrd" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.47.5-stride-distribution-fix-0" + }, + "description": "Stride is a blockchain that provides liquidity for staked tokens. Using Stride, you can earn both taking and DeFi yields across the Cosmos IBC ecosystem.", + "apis": { + "rpc": [ { - address: 'https://stride-rpc.polkachu.com/', - provider: 'Polkachu' + "address": "https://stride-rpc.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://stride-rpc.onivalidator.com', - provider: 'Oni Validator ⛩️' + "address": "https://stride-rpc.onivalidator.com", + "provider": "Oni Validator ⛩️" }, { - address: 'https://stride-rpc.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://stride-rpc.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://rpc.stride.silentvalidator.com/', - provider: 'silent' + "address": "https://rpc.stride.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://rpc-stride.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-stride.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://stride.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://stride.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://rpc-stride.pupmos.network', - provider: 'PUPMØS' + "address": "https://rpc-stride.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://rpc-stride.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rpc-stride.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://rpc-stride.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://rpc-stride.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://stride-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://stride-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rpc-stride-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-stride-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://stride-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://stride-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://stride-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://stride-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://community.nuxian-node.ch:6797/stride/trpc', - provider: 'PRO Delegators' + "address": "https://community.nuxian-node.ch:6797/stride/trpc", + "provider": "PRO Delegators" }, { - address: 'https://stride-rpc.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://stride-rpc.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://rpc.stride.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://rpc.stride.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - rest: [ + "rest": [ { - address: 'https://stride-api.polkachu.com/', - provider: 'Polkachu' + "address": "https://stride-api.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://api-stride.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-stride.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://stride.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://stride.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://stride-api.lavenderfive.com/', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://stride-api.lavenderfive.com/", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://api.stride.silentvalidator.com/', - provider: 'silent' + "address": "https://api.stride.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://stride.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://stride.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://api-stride.pupmos.network', - provider: 'PUPMØS' + "address": "https://api-stride.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://stride-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://stride-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rest-stride.architectnodes.com', - provider: 'Architect Nodes' + "address": "https://rest-stride.architectnodes.com", + "provider": "Architect Nodes" }, { - address: 'https://lcd-stride.whispernode.com:443', - provider: 'WhisperNode 🤐' + "address": "https://lcd-stride.whispernode.com:443", + "provider": "WhisperNode 🤐" }, { - address: 'https://api-stride-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-stride-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://stride-api.w3coins.io', - provider: 'w3coins' + "address": "https://stride-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://stride-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://stride-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://community.nuxian-node.ch:6797/stride/crpc', - provider: 'PRO Delegators' + "address": "https://community.nuxian-node.ch:6797/stride/crpc", + "provider": "PRO Delegators" }, { - address: 'https://stride-api.stakeandrelax.net', - provider: 'Stake&Relax 🦥' + "address": "https://stride-api.stakeandrelax.net", + "provider": "Stake&Relax 🦥" }, { - address: 'https://lcd.stride.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://lcd.stride.bronbro.io:443", + "provider": "Bro_n_Bro" } ], - grpc: [ + "grpc": [ { - address: 'stride.grpc.bccnodes.com:443', - provider: 'BccNodes' + "address": "stride.grpc.bccnodes.com:443", + "provider": "BccNodes" }, { - address: 'stride-grpc.polkachu.com:12290', - provider: 'Polkachu' + "address": "stride-grpc.polkachu.com:12290", + "provider": "Polkachu" }, { - address: 'stride-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "stride-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'http://stride.grpc.m.stavr.tech:9986', - provider: '🔥STAVR🔥' + "address": "http://stride.grpc.m.stavr.tech:9986", + "provider": "🔥STAVR🔥" }, { - address: 'grpc-stride.cosmos-spaces.cloud:1140', - provider: 'Cosmos Spaces' + "address": "grpc-stride.cosmos-spaces.cloud:1140", + "provider": "Cosmos Spaces" }, { - address: 'stride-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "stride-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'stride.grpc.kjnodes.com:11690', - provider: 'kjnodes' + "address": "stride.grpc.kjnodes.com:11690", + "provider": "kjnodes" }, { - address: 'grpc-stride-01.stakeflow.io:1802', - provider: 'Stakeflow' + "address": "grpc-stride-01.stakeflow.io:1802", + "provider": "Stakeflow" }, { - address: 'stride-grpc.w3coins.io:12290', - provider: 'w3coins' + "address": "stride-grpc.w3coins.io:12290", + "provider": "w3coins" }, { - address: 'stride-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "stride-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'stride-grpc.stakeandrelax.net:12290', - provider: 'Stake&Relax 🦥' + "address": "stride-grpc.stakeandrelax.net:12290", + "provider": "Stake&Relax 🦥" }, { - address: 'https://grpc.stride.bronbro.io:443', - provider: 'Bro_n_Bro' + "address": "https://grpc.stride.bronbro.io:443", + "provider": "Bro_n_Bro" } ] }, - explorers: [ + "explorers": [ { - kind: 'BccNodes', - url: 'https://explorer.bccnodes.com/stride-M', - tx_page: 'https://explorer.bccnodes.com/stride-M/tx/${txHash}', - account_page: - 'https://explorer.bccnodes.com/stride-M/account/${accountAddress}' + "kind": "BccNodes", + "url": "https://explorer.bccnodes.com/stride-M", + "tx_page": "https://explorer.bccnodes.com/stride-M/tx/${txHash}", + "account_page": "https://explorer.bccnodes.com/stride-M/account/${accountAddress}" }, { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/stride', - tx_page: 'https://app.ezstaking.io/stride/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/stride/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/stride", + "tx_page": "https://app.ezstaking.io/stride/txs/${txHash}", + "account_page": "https://app.ezstaking.io/stride/account/${accountAddress}" }, { - kind: 'Apollo', - url: 'https://apollo.chandrastation.com/stride', - tx_page: 'https://apollo.chandrastation.com/stride/tx/${txHash}', - account_page: - 'https://apollo.chandrastation.com/stride/account/${accountAddress}' + "kind": "Apollo", + "url": "https://apollo.chandrastation.com/stride", + "tx_page": "https://apollo.chandrastation.com/stride/tx/${txHash}", + "account_page": "https://apollo.chandrastation.com/stride/account/${accountAddress}" }, { - kind: 'Stride Ping Pub', - url: 'https://explorer.stride.zone/stride', - tx_page: 'https://explorer.stride.zone/stride/tx/${txHash}', - account_page: - 'https://explorer.stride.zone/stride/account/${accountAddress}' + "kind": "Stride Ping Pub", + "url": "https://explorer.stride.zone/stride", + "tx_page": "https://explorer.stride.zone/stride/tx/${txHash}", + "account_page": "https://explorer.stride.zone/stride/account/${accountAddress}" }, { - kind: '🔥STAVR🔥 Explorer', - url: 'https://explorer.stavr.tech/stride', - tx_page: 'https://explorer.stavr.tech/stride/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/stride/account/${accountAddress}' + "kind": "🔥STAVR🔥 Explorer", + "url": "https://explorer.stavr.tech/stride", + "tx_page": "https://explorer.stavr.tech/stride/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/stride/account/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/stride', - tx_page: 'https://www.mintscan.io/stride/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/stride/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/stride", + "tx_page": "https://www.mintscan.io/stride/transactions/${txHash}", + "account_page": "https://www.mintscan.io/stride/accounts/${accountAddress}" }, { - kind: 'bigdipper', - url: 'https://bigdipper.live/stride', - tx_page: 'https://bigdipper.live/stride/transactions/${txHash}', - account_page: 'https://bigdipper.live/stride/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://bigdipper.live/stride", + "tx_page": "https://bigdipper.live/stride/transactions/${txHash}", + "account_page": "https://bigdipper.live/stride/accounts/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/stride', - tx_page: 'https://atomscan.com/stride/transactions/${txHash}', - account_page: 'https://atomscan.com/stride/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/stride", + "tx_page": "https://atomscan.com/stride/transactions/${txHash}", + "account_page": "https://atomscan.com/stride/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/stride', - account_page: 'https://stakeflow.io/stride/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/stride", + "account_page": "https://stakeflow.io/stride/accounts/${accountAddress}" }, { - kind: 'Stake-Take', - url: 'https://explorer.stake-take.com/stride', - tx_page: 'https://explorer.stake-take.com/stride/tx/${txHash}', - account_page: - 'https://explorer.stake-take.com/stride/account/${accountAddress}' + "kind": "Stake-Take", + "url": "https://explorer.stake-take.com/stride", + "tx_page": "https://explorer.stake-take.com/stride/tx/${txHash}", + "account_page": "https://explorer.stake-take.com/stride/account/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stride-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stride-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stride-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stride-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'tenet', - status: 'live', - network_type: 'mainnet', - website: 'https://tenet.org/', - pretty_name: 'Tenet', - chain_id: 'tenet_1559-1', - bech32_prefix: 'tenet', - node_home: '$HOME/.tenetd', - daemon_name: 'tenetd', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'atenet', - fixed_min_gas_price: 250000000, - low_gas_price: 20000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'atenet' - } - ] - }, - codebase: { - git_repo: 'https://github.com/tenet-org/tenet-mainnet', - recommended_version: 'v11.2.1', - compatible_versions: ['v11.2.1'], - binaries: { - 'linux/amd64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Windows_amd64.zip' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '6.1.0', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/tenet-org/tenet-mainnet/master/config/genesis.json' - }, - versions: [ - { - name: 'v11', - recommended_version: 'v11.0.6', - compatible_versions: ['v11.0.6'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '6.1.0', - binaries: { - 'linux/amd64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.0.6/tenet-mainnet_11.0.6_Linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.0.6/tenet-mainnet_11.0.6_Darwin_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.0.6/tenet-mainnet_11.0.6_Darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.0.6/tenet-mainnet_11.0.6_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.0.6/tenet-mainnet_11.0.6_Windows_amd64.zip' - }, - next_version_name: 'multichain' - }, + "$schema": "../chain.schema.json", + "chain_name": "tenet", + "status": "live", + "network_type": "mainnet", + "website": "https://tenet.org/", + "pretty_name": "Tenet", + "chain_id": "tenet_1559-1", + "bech32_prefix": "tenet", + "node_home": "$HOME/.tenetd", + "daemon_name": "tenetd", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - name: 'multichain', - proposal: 2, - height: 2330000, - recommended_version: 'v11.2.1', - compatible_versions: ['v11.2.0', 'v11.2.1'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '6.1.0', - binaries: { - 'linux/amd64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/tenet-org/tenet-mainnet/releases/download/v11.2.1/tenet-mainnet_11.2.1_Windows_amd64.zip' - }, - next_version_name: '' + "denom": "atenet", + "fixed_min_gas_price": 250000000, + "low_gas_price": 20000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.svg' - }, - peers: { - seeds: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'tenet-mainnet-seed.autostake.com:27386', - provider: 'AutoStake 🛡️ Slash Protected' - } - ], - persistent_peers: [ - { - id: 'f8432cc5094870c96f34a0ebb36ffb0d38a53ad4', - address: '164.92.209.223:26656', - provider: 'tenet' - }, + "staking": { + "staking_tokens": [ { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'tenet-mainnet-peer.autostake.com:27386', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' + "denom": "atenet" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.svg" + }, + "apis": { + "rpc": [ { - address: 'https://tendermint-1.rpc.tenet.org', - provider: 'tenet' + "address": "https://tendermint-1.rpc.tenet.org", + "provider": "tenet" }, { - address: 'https://tenet-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://tenet-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://tenet-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://tenet-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - rest: [ + "rest": [ { - address: 'https://app.rpc.tenet.org', - provider: 'tenet' + "address": "https://app.rpc.tenet.org", + "provider": "tenet" }, { - address: 'https://tenet-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://tenet-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://tenet-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://tenet-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ + "grpc": [ { - address: 'tenet-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "tenet-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'kichain-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "kichain-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://rpc.tenet.org', - provider: 'tenet' + "address": "https://rpc.tenet.org", + "provider": "tenet" }, { - address: 'https://tenet-evm.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://tenet-evm.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://ping.pub/tenet', - tx_page: 'https://ping.pub/tenet/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/tenet", + "tx_page": "https://ping.pub/tenet/tx/${txHash}" }, { - kind: 'Nodeist Explorer', - url: 'https://exp.nodeist.net/Tenet', - tx_page: 'https://exp.nodeist.net/Tenet/tx/${txHash}' + "kind": "Nodeist Explorer", + "url": "https://exp.nodeist.net/Tenet", + "tx_page": "https://exp.nodeist.net/Tenet/tx/${txHash}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/tenet', - tx_page: 'https://explorer.tcnetwork.io/tenet/transaction/${txHash}', - account_page: - 'https://explorer.tcnetwork.io/tenet/account/${accountAddress}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/tenet", + "tx_page": "https://explorer.tcnetwork.io/tenet/transaction/${txHash}", + "account_page": "https://explorer.tcnetwork.io/tenet/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tenet/images/tenet.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'teritori', - status: 'live', - network_type: 'mainnet', - website: 'https://teritori.com/', - pretty_name: 'Teritori', - chain_id: 'teritori-1', - daemon_name: 'teritorid', - node_home: '$HOME/.teritorid', - bech32_prefix: 'tori', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'utori', - low_gas_price: 0, - average_gas_price: 0.25, - high_gas_price: 0.5 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "teritori", + "status": "live", + "network_type": "mainnet", + "website": "https://teritori.com/", + "pretty_name": "Teritori", + "chain_id": "teritori-1", + "daemon_name": "teritorid", + "node_home": "$HOME/.teritorid", + "bech32_prefix": "tori", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'utori' + "denom": "utori", + "low_gas_price": 0, + "average_gas_price": 0.25, + "high_gas_price": 0.5 } ] }, - codebase: { - git_repo: 'https://github.com/TERITORI/teritori-chain', - recommended_version: 'v1.4.0', - compatible_versions: ['v1.4.0'], - genesis: { - genesis_url: - 'https://github.com/TERITORI/teritori-chain/raw/mainnet/mainnet/teritori-1/genesis.json' - }, - versions: [ - { - name: 'v1.3.1', - recommended_version: 'v1.3.1', - compatible_versions: ['v1.3.1'], - next_version_name: 'v1.4.0' - }, + "staking": { + "staking_tokens": [ { - name: 'v1.4.0', - proposal: 34, - height: 3699425, - recommended_version: 'v1.4.0', - compatible_versions: ['v1.4.0'], - next_version_name: '' + "denom": "utori" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/chain.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/chain.svg' - }, - peers: { - seeds: [ - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:15956', - provider: 'RHINO' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:15956', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:15956', - provider: 'Polkachu' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'teritori.rpc.kjnodes.com:11959', - provider: 'kjnodes' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'teritori-mainnet-seed.autostake.com:27166', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '1ef268d56b79edbd0c32815f4bf9c362a0617ed4', - address: 'seed-teritori.ibs.team:16659', - provider: 'Inter Blockchain Services' - }, - { - id: '38d107de6a22ca6e1a6bafd2041e38f5d50a6945', - address: 'seed-node.mms.team:40656', - provider: 'MMS' - } - ], - persistent_peers: [ - { - id: '8f28518afd31a42ea81bb3232a50ab0cec4dcdf7', - address: '10.201.190.1:26656', - provider: 'teritori-core-1 ⛩' - }, - { - id: '6046cec27c36f0a7596cb9fa9f2c5decbd4e87cb', - address: '10.193.255.1:26656', - provider: 'teritori-core-2 ⛩⛩' - }, - { - id: '29c218fb6d31d2316b854c1178327157fbce8aa7', - address: 'teritori.peers.stavr.tech:38026', - provider: '🔥STAVR🔥' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'teritori-mainnet-peer.autostake.com:27166', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '669470aba9778ccccd07127115dcdc30e141d7ae', - address: 'peer-teritori.mms.team:33656', - provider: 'MMS' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/chain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/chain.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://teritori-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://teritori-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://teritori-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://teritori-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc.teritori.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.teritori.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://teritori.rpc.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://teritori.rpc.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc.teritori.silentvalidator.com/', - provider: 'silent' + "address": "https://rpc.teritori.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://teritori-rpc.brocha.in', - provider: 'Brochain' + "address": "https://teritori-rpc.brocha.in", + "provider": "Brochain" }, { - address: 'https://teritori-rpc.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://teritori-rpc.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://teritori.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://teritori.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://rpc.tori.bh.rocks', - provider: 'BlockHunters 🎯' + "address": "https://rpc.tori.bh.rocks", + "provider": "BlockHunters 🎯" }, { - address: 'https://teritori-rpc.kleomedes.network', - provider: 'Kleomedes' + "address": "https://teritori-rpc.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://m-teritori.rpc.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-teritori.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://teritori.rpc.silknodes.io', - provider: 'Silk Nodes' + "address": "https://teritori.rpc.silknodes.io", + "provider": "Silk Nodes" }, { - address: 'https://rpc-teritori.pupmos.network', - provider: 'PUPMØS' + "address": "https://rpc-teritori.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://teritori-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://teritori-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rpc-teritori.ecostake.com', - provider: 'ecostake' + "address": "https://rpc-teritori.ecostake.com", + "provider": "ecostake" }, { - address: 'https://teritori-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://teritori-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - rest: [ + "rest": [ { - address: 'https://teritori-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://teritori-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://teritori-api.polkachu.com', - provider: 'Polkachu' + "address": "https://teritori-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://api.teritori.nodestake.top', - provider: 'NodeStake' + "address": "https://api.teritori.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://teritori.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://teritori.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api.teritori.silentvalidator.com/', - provider: 'silent' + "address": "https://api.teritori.silentvalidator.com/", + "provider": "silent" }, { - address: 'https://teritori-api.ibs.team', - provider: 'Inter Blockchain Services' + "address": "https://teritori-api.ibs.team", + "provider": "Inter Blockchain Services" }, { - address: 'https://teritori.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://teritori.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://api.tori.bh.rocks', - provider: 'BlockHunters 🎯' + "address": "https://api.tori.bh.rocks", + "provider": "BlockHunters 🎯" }, { - address: 'https://teritori-api.kleomedes.network', - provider: 'Kleomedes' + "address": "https://teritori-api.kleomedes.network", + "provider": "Kleomedes" }, { - address: 'https://m-teritori.api.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-teritori.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://teritori.api.silknodes.io', - provider: 'Silk Nodes' + "address": "https://teritori.api.silknodes.io", + "provider": "Silk Nodes" }, { - address: 'https://api-teritori.pupmos.network', - provider: 'PUPMØS' + "address": "https://api-teritori.pupmos.network", + "provider": "PUPMØS" }, { - address: 'https://teritori-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://teritori-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://rest-teritori.ecostake.com', - provider: 'ecostake' + "address": "https://rest-teritori.ecostake.com", + "provider": "ecostake" }, { - address: 'https://teritori-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://teritori-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" } ], - grpc: [ + "grpc": [ { - address: 'teritori-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "teritori-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'grpc.teritori.nodestake.top:443', - provider: 'NodeStake' + "address": "grpc.teritori.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'teritori.grpc.m.stavr.tech:6705', - provider: '🔥STAVR🔥' + "address": "teritori.grpc.m.stavr.tech:6705", + "provider": "🔥STAVR🔥" }, { - address: 'teritori-grpc.brocha.in:443', - provider: 'Brochain' + "address": "teritori-grpc.brocha.in:443", + "provider": "Brochain" }, { - address: 'teritori-grpc.polkachu.com:15990', - provider: 'Polkachu' + "address": "teritori-grpc.polkachu.com:15990", + "provider": "Polkachu" }, { - address: 'teritori.grpc.silknodes.io:443', - provider: 'Silk Nodes' + "address": "teritori.grpc.silknodes.io:443", + "provider": "Silk Nodes" }, { - address: 'teritori-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "teritori-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'teritori.grpc.kjnodes.com:11990', - provider: 'kjnodes' + "address": "teritori.grpc.kjnodes.com:11990", + "provider": "kjnodes" }, { - address: 'teritori-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "teritori-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/teritori', - tx_page: 'https://app.ezstaking.io/teritori/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/teritori/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://app.ezstaking.io/teritori", + "tx_page": "https://app.ezstaking.io/teritori/txs/${txHash}", + "account_page": "https://app.ezstaking.io/teritori/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://explorer.teritori.com/teritori', - tx_page: 'https://explorer.teritori.com/teritori/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explorer.teritori.com/teritori", + "tx_page": "https://explorer.teritori.com/teritori/tx/${txHash}" }, { - kind: '🔥STAVR🔥 Explorer', - url: 'https://explorer.stavr.tech/teritori-main', - tx_page: 'https://explorer.stavr.tech/teritori-main/tx/${txHash}' + "kind": "🔥STAVR🔥 Explorer", + "url": "https://explorer.stavr.tech/teritori-main", + "tx_page": "https://explorer.stavr.tech/teritori-main/tx/${txHash}" }, { - kind: 'guru', - url: 'https://teritori.explorers.guru/', - tx_page: 'https://teritori.explorers.guru/transaction/${txHash}' + "kind": "guru", + "url": "https://teritori.explorers.guru/", + "tx_page": "https://teritori.explorers.guru/transaction/${txHash}" }, { - kind: 'Brochain', - url: 'https://explorer.brocha.in/teritori', - tx_page: 'https://explorer.brocha.in/teritori/tx/${txHash}' + "kind": "Brochain", + "url": "https://explorer.brocha.in/teritori", + "tx_page": "https://explorer.brocha.in/teritori/tx/${txHash}" }, { - kind: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀', - url: 'https://exp.utsa.tech/teritori', - tx_page: 'https://exp.utsa.tech/teritori/tx/${txHash}' + "kind": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀", + "url": "https://exp.utsa.tech/teritori", + "tx_page": "https://exp.utsa.tech/teritori/tx/${txHash}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/teritori', - tx_page: 'https://www.mintscan.io/teritori/transactions/${txHash}', - account_page: - 'https://www.mintscan.io/teritori/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/teritori", + "tx_page": "https://www.mintscan.io/teritori/transactions/${txHash}", + "account_page": "https://www.mintscan.io/teritori/accounts/${accountAddress}" }, { - kind: 'TC Network', - url: 'https://explorer.tcnetwork.io/teritori', - tx_page: 'https://explorer.tcnetwork.io/teritori/transaction/${txHash}' + "kind": "TC Network", + "url": "https://explorer.tcnetwork.io/teritori", + "tx_page": "https://explorer.tcnetwork.io/teritori/transaction/${txHash}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/teritori', - tx_page: 'https://atomscan.com/teritori/transactions/${txHash}', - account_page: 'https://atomscan.com/teritori/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/teritori", + "tx_page": "https://atomscan.com/teritori/transactions/${txHash}", + "account_page": "https://atomscan.com/teritori/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/chain.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/chain.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/chain.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/chain.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'terpnetwork', - status: 'live', - network_type: 'mainnet', - pretty_name: 'Terp-Network', - chain_id: 'morocco-1', - bech32_prefix: 'terp', - daemon_name: 'terp', - node_home: '$HOME/.terp', - codebase: { - git_repo: 'https://github.com/terpnetwork/terp-core.git', - recommended_version: 'v4.1.0', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - compatible_versions: ['v4.1.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/terpnetwork/mainnet/main/morocco-1/genesis.json' - }, - binaries: { - 'linux/amd64': - 'https://github.com/terpnetwork/terp-core/releases/download/v4.1.0/terpd-linux-amd64', - 'linux/arm64': - 'https://github.com/terpnetwork/terp-core/releases/download/v4.1.0/terpd-linux-arm64' - }, - versions: [ - { - name: 'v1.0.0-stable', - recommended_version: 'v1.0.0-stable', - compatible_versions: ['v1.0.0', 'v1.0.0-stable'], - consensus: { - type: 'cometbft', - version: '0.37.0' - } - }, + "$schema": "../chain.schema.json", + "chain_name": "terpnetwork", + "status": "live", + "network_type": "mainnet", + "pretty_name": "Terp-Network", + "chain_id": "morocco-1", + "bech32_prefix": "terp", + "daemon_name": "terp", + "node_home": "$HOME/.terp", + "codebase": {}, + "fees": { + "fee_tokens": [ { - name: 'huckleberry', - recommended_version: 'huckleberry', - compatible_versions: ['huckleberry'], - consensus: { - type: 'cometbft', - version: '0.37.0' - } - }, + "denom": "uthiol", + "fixed_min_gas_price": 0.05 + } + ] + }, + "staking": { + "staking_tokens": [ { - name: 'barberry', - recommended_version: 'barberry', - compatible_versions: ['barberry'], - consensus: { - type: 'cometbft', - version: '0.37.1' - } - }, + "denom": "uterp" + } + ] + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/logo.png" + }, + "apis": { + "rpc": [ { - name: 'v2.0.0', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - consensus: { - type: 'cometbft', - version: '0.37.2' - } + "address": "https://rpc-terp.zenchainlabs.io/", + "provider": "ZenChainLabs" }, { - name: 'v3.0.0', - recommended_version: 'v3.0.0', - compatible_versions: ['v3.0.0'], - consensus: { - type: 'cometbft', - version: '0.37.2' - } + "address": "https://rpc.terp.nodestake.top:443", + "provider": "NodeStake" }, { - name: 'v2-pigeonfall', - recommended_version: 'v2-pigeonfall', - compatible_versions: ['v2-pigeonfall'], - consensus: { - type: 'cometbft', - version: '0.37.2' - } + "address": "https://terp-mainnet-rpc.itrocket.net:443", + "provider": "itrocket.net" }, { - name: 'v3-pigeonfall', - recommended_version: 'v3-pigeonfall', - compatible_versions: ['v3-pigeonfall'], - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - next_version_name: 'v4.1.0' - }, - { - name: 'v4.1.0', - proposal: 30, - height: 3698609, - recommended_version: 'v4.1.0', - compatible_versions: ['v4.1.0'], - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - next_version_name: '' - } - ] - }, - fees: { - fee_tokens: [ - { - denom: 'uthiol', - fixed_min_gas_price: 0.05 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uterp' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/logo.png' - }, - peers: { - seeds: [ - { - id: 'd8256642afae77264bcce1631d51233a9d00249b', - address: 'terp-mainnet-seed.itrocket.net:13656', - provider: 'itrocket.net' - }, - { - id: '5f5cfac5c38506fbb4275c19e87c4107ec48808d', - address: 'seeds.nodex.one:10410', - provider: 'nodex.one' - } - ], - persistent_peers: [ - { - id: 'a81dc3bf1bb1c3837b768eeb82659eecc971890b', - address: 'terp-mainnet-peer.itrocket.net:13656', - provider: 'itrocket.net' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://rpc-terp.zenchainlabs.io/', - provider: 'ZenChainLabs' - }, - { - address: 'https://rpc.terp.nodestake.top:443', - provider: 'NodeStake' - }, - { - address: 'https://terp-mainnet-rpc.itrocket.net:443', - provider: 'itrocket.net' - }, - { - address: ' https://terp.rpc.nodex.one:443', - provider: 'nodex.one' + "address": " https://terp.rpc.nodex.one:443", + "provider": "nodex.one" } ], - rest: [ + "rest": [ { - address: 'https://api-terp.zenchainlabs.io:443', - provider: 'ZenChainLabs' + "address": "https://api-terp.zenchainlabs.io:443", + "provider": "ZenChainLabs" }, { - address: 'https://rpc.terp.nodestake.top:443', - provider: 'NodeStake' + "address": "https://rpc.terp.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://terp-mainnet-api.itrocket.net:443', - provider: 'itrocket.net' + "address": "https://terp-mainnet-api.itrocket.net:443", + "provider": "itrocket.net" }, { - address: ' https://terp.api.nodex.one:443', - provider: 'nodex.one' + "address": " https://terp.api.nodex.one:443", + "provider": "nodex.one" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.terp.nodestake.top:443', - provider: 'NodeStake' + "address": "https://grpc.terp.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'terp-mainnet-grpc.itrocket.net:13090', - provider: 'itrocket.net' + "address": "terp-mainnet-grpc.itrocket.net:13090", + "provider": "itrocket.net" }, { - address: ' https://terp.grpc.nodex.one:443', - provider: 'nodex.one' + "address": " https://terp.grpc.nodex.one:443", + "provider": "nodex.one" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://ping.pub/terp', - tx_page: 'https://ping.pub/terp/tx/${txHash}', - account_page: 'https://ping.pub/terp/account/{$accountAddress}' + "kind": "ping.pub", + "url": "https://ping.pub/terp", + "tx_page": "https://ping.pub/terp/tx/${txHash}", + "account_page": "https://ping.pub/terp/account/{$accountAddress}" }, { - kind: 'ping.pub', - url: 'https://explorer.nodestake.top', - tx_page: 'https://explorer.nodestake.top/terp/tx/${txHash}', - account_page: - 'https://explorer.nodestake.top/terp/account/{$accountAddress}' + "kind": "ping.pub", + "url": "https://explorer.nodestake.top", + "tx_page": "https://explorer.nodestake.top/terp/tx/${txHash}", + "account_page": "https://explorer.nodestake.top/terp/account/{$accountAddress}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Terp-Mainnet', - tx_page: 'https://explorer.stavr.tech/Terp-Mainnet/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Terp-Mainnet/account/{$accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Terp-Mainnet", + "tx_page": "https://explorer.stavr.tech/Terp-Mainnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Terp-Mainnet/account/{$accountAddress}" }, { - kind: 'ZenChainLabs', - url: 'https://terp.zenscan.io/', - tx_page: 'https://terp.zenscan.io/transaction.php?hash=${txHash}', - account_page: - 'https://terp.zenscan.io/address.php?address=${accountAddress}' + "kind": "ZenChainLabs", + "url": "https://terp.zenscan.io/", + "tx_page": "https://terp.zenscan.io/transaction.php?hash=${txHash}", + "account_page": "https://terp.zenscan.io/address.php?address=${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/logo.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/logo.png" } ], - slip44: 118 + "slip44": 118 }, { - $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', - slip44: 330, - fees: { - fee_tokens: [ + "$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", + "slip44": 330, + "fees": { + "fee_tokens": [ { - denom: 'uluna', - low_gas_price: 28.325, - average_gas_price: 28.325, - high_gas_price: 50 + "denom": "uluna", + "low_gas_price": 28.325, + "average_gas_price": 28.325, + "high_gas_price": 50 }, { - denom: 'usdr', - low_gas_price: 0.52469, - average_gas_price: 0.52469, - high_gas_price: 0.52469 + "denom": "usdr", + "low_gas_price": 0.52469, + "average_gas_price": 0.52469, + "high_gas_price": 0.52469 }, { - denom: 'uusd', - low_gas_price: 0.75, - average_gas_price: 0.75, - high_gas_price: 0.75 + "denom": "uusd", + "low_gas_price": 0.75, + "average_gas_price": 0.75, + "high_gas_price": 0.75 }, { - denom: 'ukrw', - low_gas_price: 850, - average_gas_price: 850, - high_gas_price: 850 + "denom": "ukrw", + "low_gas_price": 850, + "average_gas_price": 850, + "high_gas_price": 850 }, { - denom: 'umnt', - low_gas_price: 2142.855, - average_gas_price: 2142.855, - high_gas_price: 2142.855 + "denom": "umnt", + "low_gas_price": 2142.855, + "average_gas_price": 2142.855, + "high_gas_price": 2142.855 }, { - denom: 'ueur', - low_gas_price: 0.625, - average_gas_price: 0.625, - high_gas_price: 0.625 + "denom": "ueur", + "low_gas_price": 0.625, + "average_gas_price": 0.625, + "high_gas_price": 0.625 }, { - denom: 'ucny', - low_gas_price: 4.9, - average_gas_price: 4.9, - high_gas_price: 4.9 + "denom": "ucny", + "low_gas_price": 4.9, + "average_gas_price": 4.9, + "high_gas_price": 4.9 }, { - denom: 'ujpy', - low_gas_price: 81.85, - average_gas_price: 81.85, - high_gas_price: 81.85 + "denom": "ujpy", + "low_gas_price": 81.85, + "average_gas_price": 81.85, + "high_gas_price": 81.85 }, { - denom: 'ugbp', - low_gas_price: 0.55, - average_gas_price: 0.55, - high_gas_price: 0.55 + "denom": "ugbp", + "low_gas_price": 0.55, + "average_gas_price": 0.55, + "high_gas_price": 0.55 }, { - denom: 'uinr', - low_gas_price: 54.4, - average_gas_price: 54.4, - high_gas_price: 54.4 + "denom": "uinr", + "low_gas_price": 54.4, + "average_gas_price": 54.4, + "high_gas_price": 54.4 }, { - denom: 'ucad', - low_gas_price: 0.95, - average_gas_price: 0.95, - high_gas_price: 0.95 + "denom": "ucad", + "low_gas_price": 0.95, + "average_gas_price": 0.95, + "high_gas_price": 0.95 }, { - denom: 'uchf', - low_gas_price: 0.7, - average_gas_price: 0.7, - high_gas_price: 0.7 + "denom": "uchf", + "low_gas_price": 0.7, + "average_gas_price": 0.7, + "high_gas_price": 0.7 }, { - denom: 'uaud', - low_gas_price: 0.95, - average_gas_price: 0.95, - high_gas_price: 0.95 + "denom": "uaud", + "low_gas_price": 0.95, + "average_gas_price": 0.95, + "high_gas_price": 0.95 }, { - denom: 'usgd', - low_gas_price: 1, - average_gas_price: 1, - high_gas_price: 1 + "denom": "usgd", + "low_gas_price": 1, + "average_gas_price": 1, + "high_gas_price": 1 }, { - denom: 'uthb', - low_gas_price: 23.1, - average_gas_price: 23.1, - high_gas_price: 23.1 + "denom": "uthb", + "low_gas_price": 23.1, + "average_gas_price": 23.1, + "high_gas_price": 23.1 }, { - denom: 'usek', - low_gas_price: 6.25, - average_gas_price: 6.25, - high_gas_price: 6.25 + "denom": "usek", + "low_gas_price": 6.25, + "average_gas_price": 6.25, + "high_gas_price": 6.25 }, { - denom: 'unok', - low_gas_price: 6.25, - average_gas_price: 6.25, - high_gas_price: 6.25 + "denom": "unok", + "low_gas_price": 6.25, + "average_gas_price": 6.25, + "high_gas_price": 6.25 }, { - denom: 'udkk', - low_gas_price: 4.5, - average_gas_price: 4.5, - high_gas_price: 4.5 + "denom": "udkk", + "low_gas_price": 4.5, + "average_gas_price": 4.5, + "high_gas_price": 4.5 }, { - denom: 'uidr', - low_gas_price: 10900, - average_gas_price: 10900, - high_gas_price: 10900 + "denom": "uidr", + "low_gas_price": 10900, + "average_gas_price": 10900, + "high_gas_price": 10900 }, { - denom: 'uphp', - low_gas_price: 38, - average_gas_price: 38, - high_gas_price: 38 + "denom": "uphp", + "low_gas_price": 38, + "average_gas_price": 38, + "high_gas_price": 38 }, { - denom: 'uhkd', - low_gas_price: 5.85, - average_gas_price: 5.85, - high_gas_price: 5.85 + "denom": "uhkd", + "low_gas_price": 5.85, + "average_gas_price": 5.85, + "high_gas_price": 5.85 }, { - denom: 'umyr', - low_gas_price: 3, - average_gas_price: 3, - high_gas_price: 3 + "denom": "umyr", + "low_gas_price": 3, + "average_gas_price": 3, + "high_gas_price": 3 }, { - denom: 'utwd', - low_gas_price: 20, - average_gas_price: 20, - high_gas_price: 20 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uluna' + "denom": "utwd", + "low_gas_price": 20, + "average_gas_price": 20, + "high_gas_price": 20 } ] }, - codebase: { - git_repo: 'https://github.com/classic-terra/core', - recommended_version: 'v2.1.1', - compatible_versions: ['v2.1.1'], - genesis: { - name: '1.0.5', - genesis_url: 'https://tfl-columbus-5.s3.amazonaws.com/genesis.json' - }, - versions: [ - { - name: '1.0.5', - tag: 'v1.0.5-full-archive', - height: 0, - next_version_name: '1.1.0', - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/classic-core/releases/download/v1.0.5-full-archive/terra_1.0.5_Linux_x86_64.tar.gz?checksum=sha256:af3ee3bd99bd719d6d9a93a40af9f0bc49bb3866c68e923e284876784126f38c' - } - }, - { - name: '1.1.0', - tag: 'v1.1.0', - height: 11734000, - recommended_version: 'v1.1.0', - compatible_versions: ['v1.1.0'], - next_version_name: '2.0.1', - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/classic-core/releases/download/v1.1.0/terra_1.1.0_Linux_x86_64.tar.gz?checksum=sha256:fd83c14bcfadea36ad444c219ab557b9d65d2f74be0684498a5c41e3df7cb535' - } - }, - { - name: '2.0.1', - tag: 'v2.0.1', - height: 12815210, - cosmos_sdk_version: '0.45.13', - cosmwasm_enabled: true, - cosmwasm_version: '0.16.7', - ibc_go_version: '1.3.1', - consensus: { - type: 'tendermint', - version: '0.34.24' - }, - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/classic-core/releases/download/v2.0.1/terra_2.0.1_Linux_x86_64.tar.gz?checksum=sha256:b9edfd51080c9c9ae16b30afd1b8490d7278e51d521ccc0f2afcbb7e3b389b8d' - } - }, + "staking": { + "staking_tokens": [ { - name: '2.1.1', - tag: 'v2.1.1', - height: 13215800, - cosmos_sdk_version: '0.45.14', - cosmwasm_enabled: true, - cosmwasm_version: '0.30.0', - ibc_go_version: '4.3.1', - consensus: { - type: 'tendermint', - version: '0.34.24' - }, - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/classic-core/releases/download/v2.1.1/terra_2.1.1_Linux_x86_64.tar.gz?checksum=sha256:9bf91be244af95f1afcf7fc1ddb1852aa96651adf94e9668c16c7df5596100d6' - } + "denom": "uluna" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' - }, - peers: { - seeds: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'terraclassic-mainnet-seed.autostake.com:26676', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'b1bdf6249fb58b4c8284aff8a9c5b2804d822261', - address: 'seed.terra.synergynodes.com:26656', - provider: 'www.synergynodes.com' - }, - { - id: '65d86ab6024153286b823a3950e9055478effb04', - address: 'terra.inotel.ro:26656', - provider: 'www.inotel.ro' - }, - { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - } - ], - persistent_peers: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'terraclassic-mainnet-peer.autostake.com:26676', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: 'b1bdf6249fb58b4c8284aff8a9c5b2804d822261', - address: 'seed.terra.synergynodes.com:26656', - provider: 'www.synergynodes.com' - }, - { - id: '65d86ab6024153286b823a3950e9055478effb04', - address: 'terra.inotel.ro:26656', - provider: 'www.inotel.ro' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.terrarebels.net', - provider: 'Terra Rebels' + "address": "https://rpc.terrarebels.net", + "provider": "Terra Rebels" }, { - address: 'https://terra-classic-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://terra-classic-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://rpc-terra-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-terra-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://terraclassic-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://terraclassic-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://terraclassic-rpc-server-01.stakely.io', - provider: 'Stakely' + "address": "https://terraclassic-rpc-server-01.stakely.io", + "provider": "Stakely" } ], - rest: [ + "rest": [ { - address: 'https://lcd.terrarebels.net', - provider: 'Terra Rebels' + "address": "https://lcd.terrarebels.net", + "provider": "Terra Rebels" }, { - address: 'https://terra-classic-lcd.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://terra-classic-lcd.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://api-terra-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-terra-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://terraclassic-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://terraclassic-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://terraclassic-lcd-server-01.stakely.io', - provider: 'Stakely' + "address": "https://terraclassic-lcd-server-01.stakely.io", + "provider": "Stakely" } ], - grpc: [ + "grpc": [ { - address: 'grpc.terrarebels.net', - provider: 'Terra Rebels' + "address": "grpc.terrarebels.net", + "provider": "Terra Rebels" }, { - address: 'terra-classic-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "terra-classic-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'grpc-terra-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-terra-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'terraclassic-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "terraclassic-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" } ] }, - 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}', - account_page: 'https://atomscan.com/terra/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/terra", + "tx_page": "https://atomscan.com/terra/transactions/${txHash}", + "account_page": "https://atomscan.com/terra/accounts/${accountAddress}" }, { - kind: 'finder', - url: 'https://finder.terra.money/classic', - tx_page: 'https://finder.terra.money/classic/tx/${txHash}', - account_page: - 'https://finder.terra.money/classic/address/${accountAddress}' + "kind": "finder", + "url": "https://finder.terra.money/classic", + "tx_page": "https://finder.terra.money/classic/tx/${txHash}", + "account_page": "https://finder.terra.money/classic/address/${accountAddress}" }, { - kind: 'finder', - url: 'https://finder.terrarebels.net/classic', - tx_page: 'https://finder.terrarebels.net/classic/tx/${txHash}', - account_page: - 'https://finder.terrarebels.net/classic/address/${accountAddress}' + "kind": "finder", + "url": "https://finder.terrarebels.net/classic", + "tx_page": "https://finder.terrarebels.net/classic/tx/${txHash}", + "account_page": "https://finder.terrarebels.net/classic/address/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'terra2', - status: 'live', - network_type: 'mainnet', - website: 'https://www.terra.money/', - pretty_name: 'Terra', - chain_id: 'phoenix-1', - daemon_name: 'terrad', - node_home: '$HOME/.terra', - bech32_prefix: 'terra', - slip44: 330, - fees: { - fee_tokens: [ - { - denom: 'uluna', - fixed_min_gas_price: 0.015, - low_gas_price: 0.015, - average_gas_price: 0.015, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uluna' - } - ] - }, - codebase: { - git_repo: 'https://github.com/terra-money/core/', - recommended_version: 'v2.6.4', - compatible_versions: ['v2.6.3', 'v2.6.4'], - binaries: { - 'linux/arm64': - 'https://github.com/terra-money/core/releases/download/v2.6.4/terra_2.6.4_Linux_arm64.tar.gz', - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.6.4/terra_2.6.4_Linux_x86_64.tar.gz' - }, - genesis: { - name: 'v2.0', - genesis_url: 'https://tfl-phoenix-1.s3.amazonaws.com/genesis.json' - }, - versions: [ - { - name: 'v2.0', - tag: 'v2.0.1', - recommended_version: 'v2.0.1', - cosmos_sdk_version: '0.45.4', - cosmwasm_enabled: true, - cosmwasm_version: '0.27.0', - ibc_go_version: '3.0.0', - consensus: { - type: 'tendermint', - version: '0.34.19' - }, - height: 1, - next_version_name: 'v2.1', - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.0.1/terra_2.0.1_Linux_x86_64.tar.gz?checksum=sha256:eae23aad59b36ea2adaa541a7662a6119569279d2e6c4013e3deee96e9263b30', - 'darwin/amd64': - 'https://github.com/terra-money/core/releases/download/v2.0.1/terra_2.0.1_Darwin_x86_64.tar.gz?checksum=sha256:c2a6b1bff922b127a31757bdb0c8f05a34f3b1f879dee1e862f9f8b748e15a54' - } - }, + "$schema": "../chain.schema.json", + "chain_name": "terra2", + "status": "live", + "network_type": "mainnet", + "website": "https://www.terra.money/", + "pretty_name": "Terra", + "chain_id": "phoenix-1", + "daemon_name": "terrad", + "node_home": "$HOME/.terra", + "bech32_prefix": "terra", + "slip44": 330, + "fees": { + "fee_tokens": [ { - name: 'v2.1', - tag: 'v2.1.4', - recommended_version: 'v2.1.4', - cosmos_sdk_version: '0.46.9', - cosmwasm_enabled: true, - cosmwasm_version: '0.27.0', - ibc_go_version: '3.0.0', - consensus: { - type: 'tendermint', - version: '0.34.21' - }, - height: 890000, - next_version_name: 'v2.2', - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.1.4/terra_2.1.4_Linux_x86_64.tar.gz?checksum=sha256:e05b85ae2eac5df886f4f9d0ecf719b82ebe4da4fc59cae93a34af7c3e89ddfb', - 'darwin/amd64': - 'https://github.com/terra-money/core/releases/download/v2.1.4/terra_2.1.4_Darwin_x86_64.tar.gz?checksum=sha256:4b66ebf800cb903f7b6c07686636eff43e686f5956c9fadc307f077afd7f23bb' - } - }, - { - name: 'v2.2', - tag: 'v2.2.1', - height: 2979805, - recommended_version: 'v2.2.1', - compatible_versions: ['v2.2.0', 'v2.2.1'], - cosmos_sdk_version: 'v0.46.11', - cosmwasm_enabled: true, - cosmwasm_version: 'v0.27.0', - ibc_go_version: 'v3.4.0', - consensus: { - type: 'tendermint', - version: 'v0.34.21' - }, - next_version_name: 'v2.3', - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.2.1/terra_2.2.1_Linux_x86_64.tar.gz?checksum=sha256:8a9353ae3c33a750ce2a9d236f00c12c5449c41fad96e9885a5c0b8678fcf8bc' - } - }, - { - name: 'v2.3', - tag: 'v2.3.5', - height: 4711800, - recommended_version: 'v2.3.5', - compatible_versions: [ - 'v2.3.0', - 'v2.3.1', - 'v2.3.2', - 'v2.3.4', - 'v2.3.5' - ], - cosmos_sdk_version: 'v0.46.11', - cosmwasm_enabled: true, - cosmwasm_version: 'v0.30.0', - ibc_go_version: 'v6.1.1', - consensus: { - type: 'tendermint', - version: 'v0.34.27' - }, - binaries: { - 'linux/arm64': - 'https://github.com/terra-money/core/releases/download/v2.3.5/terra_2.3.5_Linux_arm64.tar.gz?checksum=sha256:93b0c508e16f779b93f0e76629ab247ddaf5fa0db96573405b3b2b11e3eb6859', - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.3.5/terra_2.3.5_Linux_x86_64.tar.gz?checksum=sha256:8c3ac7392436b102dcdd63fd275fa73b1e0201e65e420af71954782cee682ac6' - }, - next_version_name: 'v2.4' - }, - { - name: 'v2.4', - tag: 'v2.4.1', - proposal: 4737, - height: 5994365, - cosmos_sdk_version: 'v0.46.11', - cosmwasm_enabled: true, - cosmwasm_version: 'v0.30.0', - ibc_go_version: 'v6.1.1', - consensus: { - type: 'tendermint', - version: 'v0.34.27' - }, - binaries: { - 'linux/arm64': - 'https://github.com/terra-money/core/releases/download/v2.4.1/terra_2.4.1_Linux_arm64.tar.gz', - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.4.1/terra_2.4.1_Linux_x86_64.tar.gz' - }, - next_version_name: 'v2.5' - }, - { - name: 'v2.5', - tag: 'v2.5.2', - proposal: 4785, - height: 7316000, - cosmos_sdk_version: 'v0.47.5-terra.2', - cosmwasm_enabled: true, - cosmwasm_version: 'v0.41.0', - ibc_go_version: 'v7.3.1', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - binaries: { - 'linux/arm64': - 'https://github.com/terra-money/core/releases/download/v2.5.2/terra_2.5.2_Linux_arm64.tar.gz', - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.5.2/terra_2.5.2_Linux_x86_64.tar.gz' - }, - next_version_name: 'v2.6' - }, - { - name: 'v2.6', - tag: 'v2.6.4', - recommended_version: 'v2.6.4', - compatible_versions: ['v2.6.3', 'v2.6.4'], - proposal: 4792, - height: 7722000, - cosmos_sdk_version: 'v0.47.5-terra.2', - cosmwasm_enabled: true, - cosmwasm_version: 'v0.43.0', - ibc_go_version: 'v7.3.0', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - binaries: { - 'linux/arm64': - 'https://github.com/terra-money/core/releases/download/v2.6.4/terra_2.6.4_Linux_arm64.tar.gz', - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.6.4/terra_2.6.4_Linux_x86_64.tar.gz' - }, - next_version_name: '' + "denom": "uluna", + "fixed_min_gas_price": 0.015, + "low_gas_price": 0.015, + "average_gas_price": 0.015, + "high_gas_price": 0.04 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' - }, - description: - 'Fueled by a passionate community and deep developer talent pool, the Terra blockchain is built to enable the next generation of Web3 products and services.', - peers: { - seeds: [ - { - id: '406bcf90a7b29df6ae475a1f94abe04ebde805af', - address: 'phoenix.seed.stakebin.io:16656' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:11756', - provider: 'Polkachu' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:11756', - provider: 'Lavender.Five Nodes 🐝' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'terra-mainnet-seed.autostake.com:26676', - provider: 'AutoStake 🛡️ Slash Protected' - }, + "staking": { + "staking_tokens": [ { - id: '8542cd7e6bf9d260fef543bc49e59be5a3fa9074', - address: 'seed.publicnode.com:26656', - provider: 'Allnodes ⚡️ Nodes & Staking' - }, - { - id: 'a8d12536bdcc210ac35a9f092f3295360b97830d', - address: 'seed-terra-01.stakeflow.io:33007', - provider: 'Stakeflow' - } - ], - persistent_peers: [ - { - id: '0f1096278efafcf3f0d3bd5b6544e6b8dcc36a0e', - address: '206.189.129.195:26656' - }, - { - id: '9038d63588e0ab421fa71582720c1efb1ee867f6', - address: '45.34.1.114:27656' - }, - { - id: 'f2069012aec5ced4e88e7e4311391eabe72bb5a3', - address: 'node-phoenix.terra.lunastations.online:26656' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'terra-mainnet-peer.autostake.com:26676', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '86bd5cb6e762f673f1706e5889e039d5406b4b90', - address: 'terra.seed.node75.org:10856', - provider: 'Pro-Nodes75' - }, - { - id: 'a8d12536bdcc210ac35a9f092f3295360b97830d', - address: 'peer-terra-01.stakeflow.io:33007', - provider: 'Stakeflow' + "denom": "uluna" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" + }, + "description": "Fueled by a passionate community and deep developer talent pool, the Terra blockchain is built to enable the next generation of Web3 products and services.", + "apis": { + "rpc": [ { - address: 'https://terra2-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://terra2-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://terra-rpc.polkachu.com', - provider: 'polkachu' + "address": "https://terra-rpc.polkachu.com", + "provider": "polkachu" }, { - address: 'https://terra-rpc.stakely.io:443/', - provider: 'stakely' + "address": "https://terra-rpc.stakely.io:443/", + "provider": "stakely" }, { - address: 'https://terra-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://terra-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://phoenix-rpc.terra.dev:443', - provider: 'Terraform Labs' + "address": "https://phoenix-rpc.terra.dev:443", + "provider": "Terraform Labs" }, { - address: 'https://terra-rpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://terra-rpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://rpc-terra-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-terra-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://rpc-terra.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-terra.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://terra-phoenix-rpc.highstakes.ch:26657/', - provider: 'High Stakes 🇨🇭' + "address": "https://terra-phoenix-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://rpc-terra.wildsage.io', - provider: '🧙 WildSage Labs' + "address": "https://rpc-terra.wildsage.io", + "provider": "🧙 WildSage Labs" }, { - address: 'https://terra.interstellar-lounge.org', - provider: 'Interstellar Lounge 🍸' + "address": "https://terra.interstellar-lounge.org", + "provider": "Interstellar Lounge 🍸" }, { - address: 'https://terra2.tdrsys.com:2053', - provider: 'TdrSys' + "address": "https://terra2.tdrsys.com:2053", + "provider": "TdrSys" }, { - address: 'https://terra-rpc.cosmosrescue.dev:8443', - provider: 'cosmosrescue' + "address": "https://terra-rpc.cosmosrescue.dev:8443", + "provider": "cosmosrescue" } ], - rest: [ + "rest": [ { - address: 'https://lcd-terra.wildsage.io', - provider: '🧙 WildSage Labs' + "address": "https://lcd-terra.wildsage.io", + "provider": "🧙 WildSage Labs" }, { - address: 'https://terra-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://terra-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://phoenix-lcd.terra.dev:443', - provider: 'Terraform Labs' + "address": "https://phoenix-lcd.terra.dev:443", + "provider": "Terraform Labs" }, { - address: 'https://api-terra.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-terra.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://terra-rest.publicnode.com', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "https://terra-rest.publicnode.com", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'https://api-terra-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-terra-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://terra-phoenix-api.highstakes.ch:1317/', - provider: 'High Stakes 🇨🇭' + "address": "https://terra-phoenix-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://terra-rest.interstellar-lounge.org', - provider: 'Interstellar Lounge 🍸' + "address": "https://terra-rest.interstellar-lounge.org", + "provider": "Interstellar Lounge 🍸" }, { - address: 'https://terra2.tdrsys.com', - provider: 'TdrSys' + "address": "https://terra2.tdrsys.com", + "provider": "TdrSys" }, { - address: 'https://terra-api.cosmosrescue.dev:8443', - provider: 'cosmosrescue' + "address": "https://terra-api.cosmosrescue.dev:8443", + "provider": "cosmosrescue" } ], - grpc: [ + "grpc": [ { - address: 'terra2-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "terra2-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'terra-grpc.polkachu.com:11790', - provider: 'Polkachu' + "address": "terra-grpc.polkachu.com:11790", + "provider": "Polkachu" }, { - address: 'terra-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "terra-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'terra-grpc.publicnode.com:443', - provider: 'Allnodes ⚡️ Nodes & Staking' + "address": "terra-grpc.publicnode.com:443", + "provider": "Allnodes ⚡️ Nodes & Staking" }, { - address: 'grpc-terra.cosmos-spaces.cloud:2690', - provider: 'Cosmos Spaces' + "address": "grpc-terra.cosmos-spaces.cloud:2690", + "provider": "Cosmos Spaces" }, { - address: 'grpc-terra-01.stakeflow.io:1102', - provider: 'Stakeflow' + "address": "grpc-terra-01.stakeflow.io:1102", + "provider": "Stakeflow" }, { - address: 'https://terra2.tdrsys.com:2083', - provider: 'TdrSys' + "address": "https://terra2.tdrsys.com:2083", + "provider": "TdrSys" } ] }, - explorers: [ + "explorers": [ { - kind: 'atomscan', - url: 'https://atomscan.com/terra2', - tx_page: 'https://atomscan.com/terra2/transactions/${txHash}', - account_page: 'https://atomscan.com/terra2/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/terra2", + "tx_page": "https://atomscan.com/terra2/transactions/${txHash}", + "account_page": "https://atomscan.com/terra2/accounts/${accountAddress}" }, { - kind: 'finder', - url: 'http://finder.terra.money/', - tx_page: 'https://finder.terra.money/mainnet/tx/${txHash}', - account_page: - 'https://finder.terra.money/mainnet/address/${accountAddress}' + "kind": "finder", + "url": "http://finder.terra.money/", + "tx_page": "https://finder.terra.money/mainnet/tx/${txHash}", + "account_page": "https://finder.terra.money/mainnet/address/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/terra', - account_page: 'https://stakeflow.io/terra/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/terra", + "account_page": "https://stakeflow.io/terra/accounts/${accountAddress}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/terra', - tx_page: 'https://www.mintscan.io/terra/transactions/${txHash}', - account_page: 'https://www.mintscan.io/terra/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/terra", + "tx_page": "https://www.mintscan.io/terra/transactions/${txHash}", + "account_page": "https://www.mintscan.io/terra/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'akashtestnet', - status: 'live', - network_type: 'testnet', - website: 'https://akash.network/', - pretty_name: 'Sandbox', - chain_id: 'sandbox-01', - bech32_prefix: 'akash', - daemon_name: 'akash', - node_home: '$HOME/.akash', - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "akashtestnet", + "status": "live", + "network_type": "testnet", + "website": "https://akash.network/", + "pretty_name": "Sandbox", + "chain_id": "sandbox-01", + "bech32_prefix": "akash", + "daemon_name": "akash", + "node_home": "$HOME/.akash", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uakt', - fixed_min_gas_price: 0, - low_gas_price: 0.025, - average_gas_price: 0.025, - high_gas_price: 0.04 + "denom": "uakt", + "fixed_min_gas_price": 0, + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'uakt' + "denom": "uakt" } ] }, - codebase: { - git_repo: 'github.com/ovrclk/akash', - recommended_version: 'v0.22.0', - compatible_versions: ['v0.22.0'], - binaries: { - 'linux/amd64': - 'https://github.com/akash-network/node/releases/download/v0.22.0/akash_0.22.0_linux_amd64.zip', - 'linux/arm64': - 'https://github.com/akash-network/node/releases/download/v0.22.0/akash_0.22.0_linux_arm64.zip' - }, - versions: [ - { - name: 'v0', - recommended_version: 'v0.22.0', - compatible_versions: ['v0.22.0'] - } - ], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/akash-network/net/master/sandbox/genesis.json' - } - }, - 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' - }, - peers: { - seeds: [ - { - id: '865b21750f7fc5a2fa901192f7ccbe1212cd6d55', - address: 'p2p.sandbox-01.aksh.pw:26656' - } - ], - persistent_peers: [ - { - id: '865b21750f7fc5a2fa901192f7ccbe1212cd6d55', - address: 'p2p.sandbox-01.aksh.pw:26656' - } - ] + "codebase": {}, + "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" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.sandbox-01.aksh.pw:443', - provider: 'akash' + "address": "https://rpc.sandbox-01.aksh.pw:443", + "provider": "akash" } ], - rest: [ + "rest": [ { - address: 'https://api.sandbox-01.aksh.pw:443', - provider: 'akash' + "address": "https://api.sandbox-01.aksh.pw:443", + "provider": "akash" } ], - grpc: [ + "grpc": [ { - address: 'grpc.sandbox-01.aksh.pw:9090', - provider: 'akash' + "address": "grpc.sandbox-01.aksh.pw:9090", + "provider": "akash" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://explorer.sandbox-01.aksh.pw/akash', - tx_page: 'https://explorer.sandbox-01.aksh.pw/akash/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explorer.sandbox-01.aksh.pw/akash", + "tx_page": "https://explorer.sandbox-01.aksh.pw/akash/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'archwaytestnet', - chain_id: 'constantine-3', - pretty_name: 'Archway Testnet', - status: 'live', - network_type: 'testnet', - website: 'https://archway.io', - bech32_prefix: 'archway', - daemon_name: 'archwayd', - node_home: '$HOME/.archway', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "archwaytestnet", + "chain_id": "constantine-3", + "pretty_name": "Archway Testnet", + "status": "live", + "network_type": "testnet", + "website": "https://archway.io", + "bech32_prefix": "archway", + "daemon_name": "archwayd", + "node_home": "$HOME/.archway", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'aconst', - low_gas_price: 1000000000000, - average_gas_price: 1500000000000, - high_gas_price: 2000000000000 + "denom": "aconst", + "low_gas_price": 1000000000000, + "average_gas_price": 1500000000000, + "high_gas_price": 2000000000000 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'aconst' + "denom": "aconst" } ] }, - codebase: { - git_repo: 'https://github.com/archway-network/archway' + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/archwaytestnet/images/ArchwayBrandmark.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/archwaytestnet/images/ArchwayBrandmark.svg" }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/archwaytestnet/images/ArchwayBrandmark.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/archwaytestnet/images/ArchwayBrandmark.svg' - }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.constantine.archway.tech', - provider: 'Archway' + "address": "https://rpc.constantine.archway.tech", + "provider": "Archway" }, { - address: 'https://archway-testnet-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://archway-testnet-rpc.polkachu.com", + "provider": "Polkachu" } ], - rest: [ + "rest": [ { - address: 'https://api.constantine.archway.tech', - provider: 'Archway' + "address": "https://api.constantine.archway.tech", + "provider": "Archway" } ] }, - explorers: [ + "explorers": [ { - kind: 'archwayscan', - url: 'https://testnet.archway.explorers.guru', - tx_page: 'https://testnet.archway.explorers.guru/transaction/${txHash}' + "kind": "archwayscan", + "url": "https://testnet.archway.explorers.guru", + "tx_page": "https://testnet.archway.explorers.guru/transaction/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/archwaytestnet/images/ArchwayBrandmark.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/archwaytestnet/images/ArchwayBrandmark.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/archwaytestnet/images/ArchwayBrandmark.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/archwaytestnet/images/ArchwayBrandmark.svg" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'arkeonetworktestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Arkeo Network', - chain_id: 'arkeo', - bech32_prefix: 'tarkeo', - daemon_name: 'arkeod', - node_home: '$HOME/.arkeo', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uarkeo' - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "arkeonetworktestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Arkeo Network", + "chain_id": "arkeo", + "bech32_prefix": "tarkeo", + "daemon_name": "arkeod", + "node_home": "$HOME/.arkeo", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uarkeo' + "denom": "uarkeo" } ] }, - codebase: { - git_repo: 'https://github.com/arkeonetwork/arkeo' - }, - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:22856' + "denom": "uarkeo" } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://arkeonetwork-testnet.nodejumper.io:26657', - provider: 'NODEJUMPER' + "address": "https://arkeonetwork-testnet.nodejumper.io:26657", + "provider": "NODEJUMPER" }, { - address: 'https://test-arkeo-rpc.kynraze.com', - provider: 'kynraze' + "address": "https://test-arkeo-rpc.kynraze.com", + "provider": "kynraze" }, { - address: 'https://testnet-arkeo-rpc.lavenderfive.com', - provider: 'lavenderfive' + "address": "https://testnet-arkeo-rpc.lavenderfive.com", + "provider": "lavenderfive" }, { - address: 'https://arkeo-rpc.siriusnodes.uk', - provider: 'siriusnodes' + "address": "https://arkeo-rpc.siriusnodes.uk", + "provider": "siriusnodes" }, { - address: 'http://seed.arkeo.network:26657', - provider: 'arkeo' + "address": "http://seed.arkeo.network:26657", + "provider": "arkeo" } ], - rest: [ + "rest": [ { - address: 'https://arkeonetwork-testnet.nodejumper.io:1317', - provider: 'NODEJUMPER' + "address": "https://arkeonetwork-testnet.nodejumper.io:1317", + "provider": "NODEJUMPER" }, { - address: 'https://test-arkeo-api.kynraze.com', - provider: 'kynraze' + "address": "https://test-arkeo-api.kynraze.com", + "provider": "kynraze" }, { - address: 'https://testnet-arkeo-api.lavenderfive.com', - provider: 'lavenderfive' + "address": "https://testnet-arkeo-api.lavenderfive.com", + "provider": "lavenderfive" }, { - address: 'https://arkeo-api.siriusnodes.uk', - provider: 'siriusnodes' + "address": "https://arkeo-api.siriusnodes.uk", + "provider": "siriusnodes" }, { - address: 'http://seed.arkeo.network:1317', - provider: 'arkeo' + "address": "http://seed.arkeo.network:1317", + "provider": "arkeo" } ], - grpc: [ + "grpc": [ { - address: 'https://arkeonetwork-testnet.nodejumper.io:9090/', - provider: 'NODEJUMPER' + "address": "https://arkeonetwork-testnet.nodejumper.io:9090/", + "provider": "NODEJUMPER" } ] }, - explorers: [ + "explorers": [ { - url: 'https://explorer.nodexcapital.com/arkeo', - tx_page: 'https://explorer.nodexcapital.com/arkeo/tx/${txHash}' + "url": "https://explorer.nodexcapital.com/arkeo", + "tx_page": "https://explorer.nodexcapital.com/arkeo/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'artelatestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Artela Testnet', - chain_id: 'artela_11820-1', - bech32_prefix: 'art', - daemon_name: 'artelad', - node_home: '$HOME/.artelad', - key_algos: ['ethsecp256k1'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'uart', - low_gas_price: 20000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "artelatestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Artela Testnet", + "chain_id": "artela_11820-1", + "bech32_prefix": "art", + "daemon_name": "artelad", + "node_home": "$HOME/.artelad", + "key_algos": [ + "ethsecp256k1" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'uart' + "denom": "uart", + "low_gas_price": 20000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - codebase: { - git_repo: 'https://github.com/artela-network/artela', - recommended_version: 'v0.4.2-beta', - compatible_versions: ['v0.4.2-beta'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'cometbft', - version: '0.37' - }, - ibc_go_version: 'v7.1.0', - genesis: { - genesis_url: - 'https://docs.artela.network/assets/files/genesis-697a2db4ef7e20dbdb8bdc1cd9d1633a.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.4.2-beta', - recommended_version: 'v0.4.2-beta', - compatible_versions: ['v0.4.2-beta'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'cometbft', - version: '0.37' - }, - ibc_go_version: 'v7.1.0' - }, - { - name: 'v0.4.1-beta', - recommended_version: 'v0.4.1-beta', - compatible_versions: ['v0.4.1-beta'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'cometbft', - version: '0.37' - }, - ibc_go_version: 'v7.1.0' + "denom": "uart" } ] }, - peers: { - seeds: [], - persistent_peers: [ - { - id: '211536ab1414b5b9a2a759694902ea619b29c8b1', - address: '47.251.14.47:26656', - provider: 'Artela Foundation' - }, - { - id: 'd89e10d917f6f7472125aa4c060c05afa78a9d65', - address: '47.251.32.165:26656', - provider: 'Artela Foundation' - } - ] + "codebase": { + "cosmos_sdk_version": "0.47" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://testnet-rpc1.artela.network', - provider: 'Artela Foundation' + "address": "https://testnet-rpc1.artela.network", + "provider": "Artela Foundation" }, { - address: 'https://testnet-rpc2.artela.network', - provider: 'Artela Foundation' + "address": "https://testnet-rpc2.artela.network", + "provider": "Artela Foundation" } ], - rest: [ + "rest": [ { - address: 'https://testnet-rpc1.artela.network', - provider: 'Artela Foundation' + "address": "https://testnet-rpc1.artela.network", + "provider": "Artela Foundation" }, { - address: 'https://testnet-rpc2.artela.network', - provider: 'Artela Foundation' + "address": "https://testnet-rpc2.artela.network", + "provider": "Artela Foundation" } ], - grpc: [ + "grpc": [ { - address: 'https://testnet-rpc1.artela.network', - provider: 'Artela Foundation' + "address": "https://testnet-rpc1.artela.network", + "provider": "Artela Foundation" } ] }, - explorers: [ + "explorers": [ { - kind: 'Artela Network', - url: 'https://testnet-scan.artela.network', - tx_page: 'https://testnet-scan.artela.network/tx/${txHash}' + "kind": "Artela Network", + "url": "https://testnet-scan.artela.network", + "tx_page": "https://testnet-scan.artela.network/tx/${txHash}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'auratestnet', - status: 'live', - network_type: 'testnet', - website: 'https://aura.network/', - pretty_name: 'Aura Euphoria Network', - chain_id: 'euphoria-2', - bech32_prefix: 'aura', - daemon_name: 'aurad', - node_home: '$HOME/.aura', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "auratestnet", + "status": "live", + "network_type": "testnet", + "website": "https://aura.network/", + "pretty_name": "Aura Euphoria Network", + "chain_id": "euphoria-2", + "bech32_prefix": "aura", + "daemon_name": "aurad", + "node_home": "$HOME/.aura", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ueaura', - fixed_min_gas_price: 0.001, - low_gas_price: 0.001, - average_gas_price: 0.002, - high_gas_price: 0.0025 + "denom": "ueaura", + "fixed_min_gas_price": 0.001, + "low_gas_price": 0.001, + "average_gas_price": 0.002, + "high_gas_price": 0.0025 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'ueaura' + "denom": "ueaura" } ], - lock_duration: { - time: '172800s' + "lock_duration": { + "time": "172800s" } }, - codebase: { - git_repo: 'https://github.com/aura-nw/aura', - recommended_version: 'v0.7.2-euphoria', - compatible_versions: ['v0.7.2-euphoria'], - cosmos_sdk_version: '0.47.4', - ibc_go_version: 'v7.2.0', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.41.0', - cosmwasm_enabled: true, - genesis: { - genesis_url: - 'https://github.com/aura-nw/testnets/raw/main/euphoria-2/euphoria-2-genesis.tar.gz' - }, - versions: [ - { - name: 'v0.7.2-euphoria', - proposal: 25, - height: 7655365, - recommended_version: 'v0.7.2-euphoria', - compatible_versions: ['v0.7.2-euphoria'], - cosmos_sdk_version: '0.47.4', - ibc_go_version: 'v7.2.0', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.41.0', - cosmwasm_enabled: true, - next_version_name: '' - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg' + "codebase": { + "cosmos_sdk_version": "0.47.4", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.41.0" }, - peers: { - seeds: [ - { - id: '705e3c2b2b554586976ed88bb27f68e4c4176a33', - address: '52.76.203.126:26656' - } - ], - persistent_peers: [] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.euphoria.aura.network/', - provider: 'Aura Network Foundation' + "address": "https://rpc.euphoria.aura.network/", + "provider": "Aura Network Foundation" } ], - rest: [ + "rest": [ { - address: 'https://lcd.euphoria.aura.network/', - provider: 'Aura Network Foundation' + "address": "https://lcd.euphoria.aura.network/", + "provider": "Aura Network Foundation" } ], - grpc: [ + "grpc": [ { - address: 'http://grpc.euphoria.aura.network:9090', - provider: 'Aura Network Foundation' + "address": "http://grpc.euphoria.aura.network:9090", + "provider": "Aura Network Foundation" } ] }, - explorers: [ + "explorers": [ { - kind: 'aurascan', - url: 'https://euphoria.aurascan.io', - tx_page: 'https://euphoria.aurascan.io/transaction/${txHash}', - account_page: 'https://euphoria.aurascan.io/account/${accountAddress}' + "kind": "aurascan", + "url": "https://euphoria.aurascan.io", + "tx_page": "https://euphoria.aurascan.io/transaction/${txHash}", + "account_page": "https://euphoria.aurascan.io/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'axelartestnet', - chain_id: 'axelar-testnet-lisbon-3', - pretty_name: 'Axelar Testnet', - status: 'live', - network_type: 'testnet', - website: 'https://axelar.network/', - bech32_prefix: 'axelar', - daemon_name: 'axelard', - node_home: '$HOME/.axelard', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "axelartestnet", + "chain_id": "axelar-testnet-lisbon-3", + "pretty_name": "Axelar Testnet", + "status": "live", + "network_type": "testnet", + "website": "https://axelar.network/", + "bech32_prefix": "axelar", + "daemon_name": "axelard", + "node_home": "$HOME/.axelard", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uaxl', - low_gas_price: 0.007, - average_gas_price: 0.007, - high_gas_price: 0.01 + "denom": "uaxl", + "low_gas_price": 0.007, + "average_gas_price": 0.007, + "high_gas_price": 0.01 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'uaxl' + "denom": "uaxl" } ] }, - codebase: { - git_repo: 'https://github.com/axelarnetwork/axelar-core' - }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc-axelar-testnet.imperator.co:443', - provider: 'Imperator.co' + "address": "https://rpc-axelar-testnet.imperator.co:443", + "provider": "Imperator.co" }, { - address: 'https://axelartest-rpc.quickapi.com/', - provider: 'Quickapi' + "address": "https://axelartest-rpc.quickapi.com/", + "provider": "Quickapi" } ], - rest: [ + "rest": [ { - address: 'https://lcd-axelar-testnet.imperator.co:443', - provider: 'Imperator.co' + "address": "https://lcd-axelar-testnet.imperator.co:443", + "provider": "Imperator.co" }, { - address: 'https://axelartest-lcd.quickapi.com/', - provider: 'Quickapi' + "address": "https://axelartest-lcd.quickapi.com/", + "provider": "Quickapi" } ] }, - explorers: [ + "explorers": [ { - kind: 'axelarscan', - url: 'https://testnet.axelarscan.io', - tx_page: 'https://testnet.axelarscan.io/tx/${txHash}' + "kind": "axelarscan", + "url": "https://testnet.axelarscan.io", + "tx_page": "https://testnet.axelarscan.io/tx/${txHash}" }, { - kind: 'mintscan', - url: 'https://testnet.mintscan.io/axelar-testnet', - tx_page: 'https://testnet.mintscan.io/axelar-testnet/txs/${txHash}', - account_page: - 'https://testnet.mintscan.io/axelar-testnet/account/${accountAddress}' + "kind": "mintscan", + "url": "https://testnet.mintscan.io/axelar-testnet", + "tx_page": "https://testnet.mintscan.io/axelar-testnet/txs/${txHash}", + "account_page": "https://testnet.mintscan.io/axelar-testnet/account/${accountAddress}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'babylontestnet', - status: 'live', - website: 'https://www.babylonchain.io', - network_type: 'testnet', - pretty_name: 'Babylon Testnet', - chain_id: 'bbn-test1', - bech32_prefix: 'bbn', - daemon_name: 'babylond', - node_home: '$HOME/.babylond', - key_algos: ['secp256k1'], - fees: { - fee_tokens: [ - { - denom: 'ubbn' - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "babylontestnet", + "status": "live", + "website": "https://www.babylonchain.io", + "network_type": "testnet", + "pretty_name": "Babylon Testnet", + "chain_id": "bbn-test1", + "bech32_prefix": "bbn", + "daemon_name": "babylond", + "node_home": "$HOME/.babylond", + "key_algos": [ + "secp256k1" + ], + "fees": { + "fee_tokens": [ { - denom: 'ubbn' + "denom": "ubbn" } ] }, - codebase: { - git_repo: 'https://github.com/babylonchain/babylon', - recommended_version: 'v0.5.0', - compatible_versions: ['v0.5.0'], - genesis: { - genesis_url: - 'https://github.com/babylonchain/networks/raw/main/bbn-test1/genesis.tar.bz2' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.5.0', - recommended_version: 'v0.5.0', - compatible_versions: ['v0.5.0'] + "denom": "ubbn" } ] }, - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg' - }, - peers: { - seeds: [ - { - id: '03ce5e1b5be3c9a81517d415f65378943996c864', - address: '18.207.168.204:26656', - provider: 'Babylon foundation' - }, - { - id: 'a5fabac19c732bf7d814cf22e7ffc23113dc9606', - address: '34.238.169.221:26656', - provider: 'Babylon foundation' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'testnet-seeds.polkachu.com:20656', - provider: 'Polkachu' - } - ], - persistent_peers: [ - { - id: '03ce5e1b5be3c9a81517d415f65378943996c864', - address: '18.207.168.204:26656', - provider: 'Babylon foundation' - }, - { - id: 'a5fabac19c732bf7d814cf22e7ffc23113dc9606', - address: '34.238.169.221:26656', - provider: 'Babylon foundation' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'testnet-seeds.polkachu.com:20656', - provider: 'Polkachu' - } - ] + "codebase": {}, + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'rpc.testnet.babylonchain.io:26657', - provider: 'Babylon foundation' + "address": "rpc.testnet.babylonchain.io:26657", + "provider": "Babylon foundation" } ], - rest: [ + "rest": [ { - address: 'rpc.testnet.babylonchain.io:1317', - provider: 'Babylon foundation' + "address": "rpc.testnet.babylonchain.io:1317", + "provider": "Babylon foundation" } ], - grpc: [] + "grpc": [] }, - explorers: [ + "explorers": [ { - kind: 'babylonscan', - url: 'https://babylonscan.io' + "kind": "babylonscan", + "url": "https://babylonscan.io" }, { - kind: 'explorers.guru', - url: 'https://babylon.explorers.guru', - tx_page: 'https://babylon.explorers.guru/transaction/${txHash}' + "kind": "explorers.guru", + "url": "https://babylon.explorers.guru", + "tx_page": "https://babylon.explorers.guru/transaction/${txHash}" } ], - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg" } ], - slip44: 118 + "slip44": 118 }, { - $schema: '../../chain.schema.json', - chain_name: 'bitcannadevnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'BitCanna Devnet-1', - chain_id: 'bitcanna-dev-1', - bech32_prefix: 'bcna', - daemon_name: 'bcnad', - node_home: '$HOME/.bcna', - 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: 'v2.0.3', - compatible_versions: ['v2.0.1-rc6', 'v2.0.2-rc1', 'v2.0.3'], - binaries: { - 'linux/amd64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v2.0.3/bcna_linux_amd64.tar.gz' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/BitCannaGlobal/bcna/main/devnets/bitcanna-dev-1/genesis.json' - }, - versions: [ - { - name: 'vigorous-grow-fix', - recommended_version: 'v1.6.3', - compatible_versions: ['v1.6.3'], - binaries: { - 'linux/amd64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v1.6.3/bcna_linux_amd64.tar.gz' - } - }, - { - name: 'wakeandbake', - recommended_version: 'v2.0.3', - compatible_versions: ['v2.0.1-rc6', 'v2.0.2-rc1', 'v2.0.3'], - binaries: { - 'linux/amd64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v2.0.3/bcna_linux_amd64.tar.gz' - } - } - ] - }, - peers: { - seeds: [ - { - id: '471341f9befeab582e845d5e9987b7a4889c202f', - address: '144.91.89.66:26656' - } - ], - persistent_peers: [ - { - id: '80ee9ed689bfb329cf21b94aa12978e073226db4', - address: '212.227.151.143:26656' - }, - { - id: 'b0c7e5c69aaf00626baaf7c59370029b587a91a4', - address: '🔥STAVR🔥' - }, + "$schema": "../../chain.schema.json", + "chain_name": "bitcannadevnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "BitCanna Devnet-1", + "chain_id": "bitcanna-dev-1", + "bech32_prefix": "bcna", + "daemon_name": "bcnad", + "node_home": "$HOME/.bcna", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '20ca909b49106aacbf516ba28fa8a2409f825a82', - address: '212.227.151.106:26656' + "denom": "ubcna", + "fixed_min_gas_price": 0.001 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc-testnet.bitcanna.io', - provider: 'bitcanna' + "address": "https://rpc-testnet.bitcanna.io", + "provider": "bitcanna" }, { - address: 'https://bitcanna-testnet.rpc.kjnodes.com/', - provider: 'kjnodes.com' + "address": "https://bitcanna-testnet.rpc.kjnodes.com/", + "provider": "kjnodes.com" }, { - address: 'https://testnet-bitcanna-rpc.konsortech.xyz/', - provider: 'konsortech.xyz' + "address": "https://testnet-bitcanna-rpc.konsortech.xyz/", + "provider": "konsortech.xyz" }, { - address: 'https://rpc.bitcanna-dev-1.bitcanna.aviaone.com/', - provider: 'aviaone.com' + "address": "https://rpc.bitcanna-dev-1.bitcanna.aviaone.com/", + "provider": "aviaone.com" }, { - address: 'https://bitcanna-testnet.nodejumper.io:443', - provider: 'NODEJUMPER' + "address": "https://bitcanna-testnet.nodejumper.io:443", + "provider": "NODEJUMPER" } ], - rest: [ + "rest": [ { - address: 'https://lcd-testnet.bitcanna.io', - provider: 'bitcanna' + "address": "https://lcd-testnet.bitcanna.io", + "provider": "bitcanna" }, { - address: 'https://testnet-bitcanna-api.konsortech.xyz/', - provider: 'konsortech.xyz' + "address": "https://testnet-bitcanna-api.konsortech.xyz/", + "provider": "konsortech.xyz" }, { - address: 'https://bitcanna.api.dev.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://bitcanna.api.dev.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api.bitcanna-dev-1.bitcanna.aviaone.com/', - provider: 'aviaone.com' + "address": "https://api.bitcanna-dev-1.bitcanna.aviaone.com/", + "provider": "aviaone.com" }, { - address: 'https://bitcanna-testnet.api.kjnodes.com/', - provider: 'kjnodes.com' + "address": "https://bitcanna-testnet.api.kjnodes.com/", + "provider": "kjnodes.com" }, { - address: 'https://bitcanna-testnet.nodejumper.io:1317', - provider: 'NODEJUMPER' + "address": "https://bitcanna-testnet.nodejumper.io:1317", + "provider": "NODEJUMPER" } ], - grpc: [ + "grpc": [ { - address: 'http://devnet-1.bitcanna.io:9090/', - provider: 'bitcanna' + "address": "http://devnet-1.bitcanna.io:9090/", + "provider": "bitcanna" }, { - address: 'http://bitcanna-testnet.grpc.kjnodes.com:42090/', - provider: 'kjnodes.com' + "address": "http://bitcanna-testnet.grpc.kjnodes.com:42090/", + "provider": "kjnodes.com" }, { - address: 'http://bitcanna.grpc.dev.stavr.tech:2901', - provider: '🔥STAVR🔥' + "address": "http://bitcanna.grpc.dev.stavr.tech:2901", + "provider": "🔥STAVR🔥" }, { - address: 'https://bitcanna-testnet.nodejumper.io:9090', - provider: 'NODEJUMPER' + "address": "https://bitcanna-testnet.nodejumper.io:9090", + "provider": "NODEJUMPER" } ] }, - explorers: [ + "explorers": [ { - url: 'https://explorer.thesilverfox.pro/bitcanna', - tx_page: 'https://explorer.thesilverfox.pro/bitcanna/tx/${txHash}' + "url": "https://explorer.thesilverfox.pro/bitcanna", + "tx_page": "https://explorer.thesilverfox.pro/bitcanna/tx/${txHash}" }, { - url: 'https://testnets-cosmos.mintthemoon.xyz/bitcanna', - tx_page: 'https://testnets-cosmos.mintthemoon.xyz/bitcanna/tx/${txHash}' + "url": "https://testnets-cosmos.mintthemoon.xyz/bitcanna", + "tx_page": "https://testnets-cosmos.mintthemoon.xyz/bitcanna/tx/${txHash}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Bitcanna-DEV', - tx_page: 'https://explorer.stavr.tech/Bitcanna-DEV/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Bitcanna-DEV/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Bitcanna-DEV", + "tx_page": "https://explorer.stavr.tech/Bitcanna-DEV/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Bitcanna-DEV/account/${accountAddress}" }, { - url: 'https://explorer.kjnodes.com/bitcanna-testnet', - tx_page: 'https://explorer.kjnodes.com/bitcanna-testnet/tx/${txHash}' + "url": "https://explorer.kjnodes.com/bitcanna-testnet", + "tx_page": "https://explorer.kjnodes.com/bitcanna-testnet/tx/${txHash}" }, { - url: 'https://explorer.stavr.tech/bitcanna-dev', - tx_page: 'https://explorer.stavr.tech/bitcanna-dev/tx/${txHash}' + "url": "https://explorer.stavr.tech/bitcanna-dev", + "tx_page": "https://explorer.stavr.tech/bitcanna-dev/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'bitcannadevnet2', - status: 'live', - network_type: 'devnet', - pretty_name: 'BitCanna Devnet-6 SDK v0.46.x', - chain_id: 'bitcanna-dev-6', - bech32_prefix: 'bcna', - daemon_name: 'bcnad', - node_home: '$HOME/.bcna', - 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: 'v2.0.0-beta', - compatible_versions: ['v2.0.0-beta'], - binaries: { - 'linux/amd64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v2.0.0-beta/bcna_linux_amd64.tar.gz' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/BitCannaGlobal/testnet-bcna-cosmos/main/instructions/bitcanna-dev-6/genesis.json' - }, - versions: [ - { - name: 'v2.0.0-beta', - recommended_version: 'v2.0.0-beta', - compatible_versions: ['v2.0.0-beta'], - binaries: { - 'linux/amd64': - 'https://github.com/BitCannaGlobal/bcna/releases/download/v2.0.0-beta/bcna_linux_amd64.tar.gz' - } - } - ] - }, - peers: { - persistent_peers: [ - { - id: '85be53f499c803a10e73734018334049a7c4686d', - address: '212.227.151.105:26656' - }, + "$schema": "../../chain.schema.json", + "chain_name": "bitcannadevnet2", + "status": "live", + "network_type": "devnet", + "pretty_name": "BitCanna Devnet-6 SDK v0.46.x", + "chain_id": "bitcanna-dev-6", + "bech32_prefix": "bcna", + "daemon_name": "bcnad", + "node_home": "$HOME/.bcna", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: 'fb88f165477b7c7a4fbb47bb6b01448c732a0e88', - address: '164.68.119.233:26656' + "denom": "ubcna", + "fixed_min_gas_price": 0.001 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc-devnet-6.bitcanna.io/', - provider: 'bitcanna' + "address": "https://rpc-devnet-6.bitcanna.io/", + "provider": "bitcanna" } ], - grpc: [ + "grpc": [ { - address: 'http://devnet-6.bitcanna.io:9090', - provider: 'bitcanna' + "address": "http://devnet-6.bitcanna.io:9090", + "provider": "bitcanna" } ], - rest: [ + "rest": [ { - address: 'https://lcd-devnet-6.bitcanna.io/', - provider: 'bitcanna' + "address": "https://lcd-devnet-6.bitcanna.io/", + "provider": "bitcanna" } ] }, - explorers: [ + "explorers": [ { - url: 'https://explorer-devnet-6.bitcanna.io', - tx_page: 'https://explorer-devnet-6.bitcanna.io/tx/${txHash}' + "url": "https://explorer-devnet-6.bitcanna.io", + "tx_page": "https://explorer-devnet-6.bitcanna.io/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'cascadiatestnet', - status: 'live', - network_type: 'testnet', - website: 'https://cascadia.foundation/', - pretty_name: 'Cascadia', - chain_id: 'cascadia_6102-1', - bech32_prefix: 'cascadia', - daemon_name: 'cascadiad', - node_home: '$HOME/.cascadiad', - key_algos: ['ethsecp256k1'], - slip44: 60, - fees: { - fee_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "cascadiatestnet", + "status": "live", + "network_type": "testnet", + "website": "https://cascadia.foundation/", + "pretty_name": "Cascadia", + "chain_id": "cascadia_6102-1", + "bech32_prefix": "cascadia", + "daemon_name": "cascadiad", + "node_home": "$HOME/.cascadiad", + "key_algos": [ + "ethsecp256k1" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'aCC', - fixed_min_gas_price: 0, - low_gas_price: 7, - average_gas_price: 10, - high_gas_price: 15 + "denom": "aCC", + "fixed_min_gas_price": 0, + "low_gas_price": 7, + "average_gas_price": 10, + "high_gas_price": 15 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'aCC' + "denom": "aCC" } ], - lock_duration: { - time: '1814400s' + "lock_duration": { + "time": "1814400s" } }, - codebase: { - git_repo: 'https://github.com/CascadiaFoundation/cascadia', - recommended_version: 'v0.1.2', - compatible_versions: ['v0.1.1'], - cosmos_sdk_version: '0.46.10', - consensus: { - type: 'tendermint', - version: 'v0.34.26' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - genesis: { - name: 'v1', - genesis_url: - 'https://raw.githubusercontent.com/CascadiaFoundation/chain-configuration/master/testnet/genesis.json' - }, - versions: [] + "codebase": { + "cosmos_sdk_version": "0.46.10", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cascadiatestnet/images/cascadia.png', - theme: { - primary_color_hex: '#004A96' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cascadiatestnet/images/cascadia.png", + "theme": { + "primary_color_hex": "#004A96" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cascadiatestnet/images/cascadia.png' - }, - peers: { - seeds: [ - { - id: '42c4a78f39935df1c20b51c4b0d0a21db8f01c88', - address: 'cascadia-testnet-seed.itrocket.net:40656' - }, - { - id: 'af73a10430d389e7480ef01b10b763fe156a397d', - address: 'cscd-rpc.systemd.run:29656' - } - ], - persistent_peers: [ - { - id: 'dd225f803eb3ae4bba2eef4628bebd6fc52092c2', - address: '65.108.97.111:36656' - }, - { - id: 'e85f72848ba9586c6704445d1118fb35e2ca5804', - address: '65.109.84.33:38656' - }, - { - id: '23c3d082bd3a3102988c04085531461daa5a4b21', - address: '65.108.81.122:26656' - }, - { - id: 'eb3a413b8a2baf1f544d4129572919257d5db53b', - address: 'rpc-cascadia.nodeist.net:28656' - }, - { - id: 'bf183b5864e483eba4dbecd61c9cc78696d46fcc', - address: '85.10.193.246:34656' - }, - { - id: '796a6a0960d7366123f3a829ad917ae0a4f7e09d', - address: '91.223.3.190:55796' - }, - { - id: '7d63f71ab6356940c607d9d748262b5505b604b0', - address: '49.12.42.105:26656' - }, - { - id: 'c01481445ec6d3e6defa945ff1075e732efb3940', - address: '65.109.28.226' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/cascadiatestnet/images/cascadia.png" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.cascadia.foundation:443', - provider: 'cascadia' + "address": "https://rpc.cascadia.foundation:443", + "provider": "cascadia" }, { - address: 'https://cscd-rpc.systemd.run:443', - provider: 'systemd' + "address": "https://cscd-rpc.systemd.run:443", + "provider": "systemd" }, { - address: 'https://api.cascadia-t.indonode.net:443', - provider: 'Indonode' + "address": "https://api.cascadia-t.indonode.net:443", + "provider": "Indonode" }, { - address: 'https://rpc-test.cascadia.hexnodes.co:443', - provider: 'Hexnodes' + "address": "https://rpc-test.cascadia.hexnodes.co:443", + "provider": "Hexnodes" }, { - address: 'https://cascadia.rpc.liveraven.net:443', - provider: 'LiveRaveN' + "address": "https://cascadia.rpc.liveraven.net:443", + "provider": "LiveRaveN" } ], - grpc: [ + "grpc": [ { - address: 'grpc.cascadia.foundation:443', - provider: 'cascadia' + "address": "grpc.cascadia.foundation:443", + "provider": "cascadia" }, { - address: 'cscd-grpc.systemd.run:443', - provider: 'systemd' + "address": "cscd-grpc.systemd.run:443", + "provider": "systemd" }, { - address: 'grpc.cascadia-t.indonode.net:43090', - provider: 'Indonode' + "address": "grpc.cascadia-t.indonode.net:43090", + "provider": "Indonode" }, { - address: 'grpc-test.cascadia.hexnodes.co:19090', - provider: 'Hexnodes' + "address": "grpc-test.cascadia.hexnodes.co:19090", + "provider": "Hexnodes" }, { - address: 'cascadia.grpc.liveraven.net:443', - provider: 'LiveRaveN' + "address": "cascadia.grpc.liveraven.net:443", + "provider": "LiveRaveN" } ], - rest: [ + "rest": [ { - address: 'https://lcd.cascadia.foundation', - provider: 'cascadia' + "address": "https://lcd.cascadia.foundation", + "provider": "cascadia" }, { - address: 'https://cscd-api.systemd.run', - provider: 'systemd' + "address": "https://cscd-api.systemd.run", + "provider": "systemd" }, { - address: 'https://api.cascadia-t.indonode.net/', - provider: 'Indonode' + "address": "https://api.cascadia-t.indonode.net/", + "provider": "Indonode" }, { - address: 'https://lcd-test.cascadia.hexnodes.co', - provider: 'Hexnodes' + "address": "https://lcd-test.cascadia.hexnodes.co", + "provider": "Hexnodes" }, { - address: 'https://cascadia.api.liveraven.net:443', - provider: 'LiveRaveN' + "address": "https://cascadia.api.liveraven.net:443", + "provider": "LiveRaveN" } ] }, - explorers: [ + "explorers": [ { - kind: 'validator_explorer', - url: 'https://validator.cascadia.foundation/', - tx_page: 'https://validator.cascadia.foundation/transactions/${txHash}', - account_page: - 'https://validator.cascadia.foundation/accounts/${accountAddress}' + "kind": "validator_explorer", + "url": "https://validator.cascadia.foundation/", + "tx_page": "https://validator.cascadia.foundation/transactions/${txHash}", + "account_page": "https://validator.cascadia.foundation/accounts/${accountAddress}" }, { - kind: 'block_explorer', - url: 'https://explorer.cascadia.foundation/', - tx_page: 'https://explorer.cascadia.foundation/tx/${txHash}', - account_page: - 'https://explorer.cascadia.foundation/address/${accountAddress}' + "kind": "block_explorer", + "url": "https://explorer.cascadia.foundation/", + "tx_page": "https://explorer.cascadia.foundation/tx/${txHash}", + "account_page": "https://explorer.cascadia.foundation/address/${accountAddress}" } ], - keywords: ['cascadia', 'cosmos', 'evm', 'cybernetic'] + "keywords": [ + "cascadia", + "cosmos", + "evm", + "cybernetic" + ] }, { - $schema: '../../chain.schema.json', - chain_name: 'celestiatestnet', - chain_id: 'blockspacerace-0', - pretty_name: 'Blockspace Race Testnet', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'celestia', - daemon_name: 'celestia-appd', - node_home: '$HOME/.celestia-app', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'utia', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/celestiaorg/celestia-app', - recommended_version: 'v1.1.0', - compatible_versions: ['v1.1.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/celestiaorg/networks/master/blockspacerace/genesis.json' - }, - versions: [ - { - name: 'v1.1.0', - recommended_version: 'v1.1.0', - compatible_versions: ['v1.1.0'] - } - ] - }, - peers: { - seeds: [ + "$schema": "../../chain.schema.json", + "chain_name": "celestiatestnet", + "chain_id": "blockspacerace-0", + "pretty_name": "Blockspace Race Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "celestia", + "daemon_name": "celestia-appd", + "node_home": "$HOME/.celestia-app", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: 'f97a75fb69d3a5fe893dca7c8d238ccc0bd66a8f', - address: 'celestia-blockspacerace.seed.brocha.in:30583', - provider: 'Brochain' + "denom": "utia", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc-blockspacerace.pops.one/', - provider: 'P-OPs' + "address": "https://rpc-blockspacerace.pops.one/", + "provider": "P-OPs" } ], - rest: [ + "rest": [ { - address: 'https://celestia-blockspacerace-rest.brocha.in', - provider: 'Brochain' + "address": "https://celestia-blockspacerace-rest.brocha.in", + "provider": "Brochain" } ] }, - explorers: [ + "explorers": [ { - kind: 'Mintscan', - url: 'https://testnet.mintscan.io/celestia-incentivized-testnet', - tx_page: - 'https://testnet.mintscan.io/celestia-incentivized-testnet/txs/${txHash}' + "kind": "Mintscan", + "url": "https://testnet.mintscan.io/celestia-incentivized-testnet", + "tx_page": "https://testnet.mintscan.io/celestia-incentivized-testnet/txs/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'celestiatestnet2', - chain_id: 'arabica-10', - pretty_name: 'Arabica Testnet', - status: 'live', - network_type: 'devnet', - bech32_prefix: 'celestia', - daemon_name: 'celestia-appd', - node_home: '$HOME/.celestia-app', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "celestiatestnet2", + "chain_id": "arabica-10", + "pretty_name": "Arabica Testnet", + "status": "live", + "network_type": "devnet", + "bech32_prefix": "celestia", + "daemon_name": "celestia-appd", + "node_home": "$HOME/.celestia-app", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'utia', - fixed_min_gas_price: 0, - low_gas_price: 0.01, - average_gas_price: 0.02, - high_gas_price: 0.1 + "denom": "utia", + "fixed_min_gas_price": 0, + "low_gas_price": 0.01, + "average_gas_price": 0.02, + "high_gas_price": 0.1 } ] }, - codebase: { - git_repo: 'https://github.com/celestiaorg/celestia-app', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/celestiaorg/networks/master/arabica-9/genesis.json' - }, - versions: [ + "codebase": {}, + "apis": { + "rpc": [ + { + "address": "https://consensus-full.celestia-arabica-10.com/", + "provider": "Celestia Labs" + } + ], + "rest": [ { - name: 'v1.3.0', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'] + "address": "https://api.consensus.celestia-arabica-10.com/", + "provider": "Celestia Labs" } ] }, - peers: { - seeds: [ - { - id: 'ad8e16b0b78cd44239590c49da75ba074c02e1c4', - address: 'consensus-full.celestia-arabica-10.com', - provider: 'Celestia Labs' - }, - { - id: '4686b0b70a8d1a2b24cbe0f856ba2b52a38a02b1', - address: 'full.consensus.celestia-arabica-10.com', - provider: 'Celestia Labs' - }, + "explorers": [ + { + "kind": "Ping.Pub", + "url": "https://explorer.celestia-arabica-10.com/arabica-10", + "tx_page": "https://explorer.celestia-arabica-10.com/arabica-10/tx/${txHash}" + } + ] + }, + { + "$schema": "../../chain.schema.json", + "chain_name": "celestiatestnet3", + "chain_id": "mocha-4", + "pretty_name": "Mocha Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "celestia", + "daemon_name": "celestia-appd", + "node_home": "$HOME/.celestia-app", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '25c2e83bde060c51bb117c6526e14053bd4a83ec', - address: 'consensus-validator.celestia-arabica-10.com', - provider: 'Celestia Labs' + "denom": "utia", + "fixed_min_gas_price": 0, + "low_gas_price": 0.01, + "average_gas_price": 0.02, + "high_gas_price": 0.1 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://consensus-full.celestia-arabica-10.com/', - provider: 'Celestia Labs' + "address": "https://rpc-mocha.pops.one", + "provider": "P-OPs" } ], - rest: [ + "rest": [ { - address: 'https://api.consensus.celestia-arabica-10.com/', - provider: 'Celestia Labs' + "address": "https://api-mocha.pops.one", + "provider": "P-OPs" } ] }, - explorers: [ + "explorers": [ { - kind: 'Ping.Pub', - url: 'https://explorer.celestia-arabica-10.com/arabica-10', - tx_page: - 'https://explorer.celestia-arabica-10.com/arabica-10/tx/${txHash}' + "kind": "Mintscan", + "url": "https://testnet.mintscan.io/celestia-testnet", + "tx_page": "https://testnet.mintscan.io/celestia-testnet/txs/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'celestiatestnet3', - chain_id: 'mocha-4', - pretty_name: 'Mocha Testnet', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'celestia', - daemon_name: 'celestia-appd', - node_home: '$HOME/.celestia-app', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "chain4energytestnet", + "status": "live", + "network_type": "testnet", + "website": "https://c4e.io/", + "pretty_name": "Chain4Energy Testnet", + "chain_id": "babajaga-1", + "bech32_prefix": "c4e", + "daemon_name": "c4ed", + "node_home": "$HOME/.c4e-chain", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'utia', - fixed_min_gas_price: 0, - low_gas_price: 0.01, - average_gas_price: 0.02, - high_gas_price: 0.1 + "denom": "uc4e", + "fixed_min_gas_price": 0, + "low_gas_price": 0.02, + "average_gas_price": 0.03, + "high_gas_price": 0.06 } ] }, - codebase: { - git_repo: 'https://github.com/celestiaorg/celestia-app', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/celestiaorg/networks/master/mocha-3/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.3.0', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'] + "denom": "uc4e" } ] }, - peers: { - seeds: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" + }, + "apis": { + "rpc": [ { - id: '3314051954fc072a0678ec0cbac690ad8676ab98', - address: '65.108.66.220:26656', - provider: 'P-OPS' + "address": "https://rpc-testnet.c4e.io", + "provider": "C4E" } - ] - }, - apis: { - rpc: [ + ], + "rest": [ { - address: 'https://rpc-mocha.pops.one', - provider: 'P-OPs' + "address": "https://c4e.api.t.stavr.tech", + "provider": "🔥STAVR🔥" + }, + { + "address": "https://lcd-testnet.c4e.io", + "provider": "C4E" } ], - rest: [ + "grpc": [ { - address: 'https://api-mocha.pops.one', - provider: 'P-OPs' + "address": "grpc-testnet.c4e.io:8443", + "provider": "C4E" } ] }, - explorers: [ + "explorers": [ + { + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/C4E-Testnet", + "tx_page": "https://explorer.stavr.tech/C4E-Testnet/transactions/${txHash}" + }, { - kind: 'Mintscan', - url: 'https://testnet.mintscan.io/celestia-testnet', - tx_page: 'https://testnet.mintscan.io/celestia-testnet/txs/${txHash}' + "kind": "explorer", + "url": "https://explorer-testnet.c4e.io/", + "tx_page": "https://explorer-testnet.c4e.io/transactions/${txHash}" + } + ], + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'chain4energytestnet', - status: 'live', - network_type: 'testnet', - website: 'https://c4e.io/', - pretty_name: 'Chain4Energy Testnet', - chain_id: 'babajaga-1', - bech32_prefix: 'c4e', - daemon_name: 'c4ed', - node_home: '$HOME/.c4e-chain', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "cheqdtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "cheqd", + "chain_id": "cheqd-testnet-6", + "bech32_prefix": "cheqd", + "daemon_name": "cheqd-noded", + "node_home": "$HOME/.cheqdnode", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uc4e', - fixed_min_gas_price: 0, - low_gas_price: 0.02, - average_gas_price: 0.03, - high_gas_price: 0.06 + "denom": "ncheq", + "fixed_min_gas_price": 25, + "low_gas_price": 50, + "average_gas_price": 75, + "high_gas_price": 100 } ] }, - staking: { - staking_tokens: [ + "codebase": { + "cosmos_sdk_version": "0.46.10" + }, + "apis": { + "rpc": [ { - denom: 'uc4e' + "address": "https://rpc.cheqd.network", + "provider": "cheqd" } - ] - }, - codebase: { - git_repo: 'https://github.com/chain4energy/c4e-chain', - recommended_version: 'v1.2.0', - compatible_versions: ['v1.2.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/chain4energy/c4e-chains/main/babajaga-1/genesis.json' - }, - versions: [ + ], + "rest": [ { - name: 'v1.2.0', - recommended_version: 'v1.2.0', - compatible_versions: ['v1.2.0'] - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png' - }, - peers: { - seeds: [], - persistent_peers: [ - { - id: 'de18fc6b4a5a76bd30f65ebb28f880095b5dd58b', - address: '66.70.177.76:36656', - provider: 'C4E' - }, - { - id: '36656,33f90a0ac7e8f48305ea7e64610b789bbbb33224', - address: '151.80.19.186:36656', - provider: 'C4E' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://rpc-testnet.c4e.io', - provider: 'C4E' - } - ], - rest: [ - { - address: 'https://c4e.api.t.stavr.tech', - provider: '🔥STAVR🔥' - }, - { - address: 'https://lcd-testnet.c4e.io', - provider: 'C4E' - } - ], - grpc: [ - { - address: 'grpc-testnet.c4e.io:8443', - provider: 'C4E' - } - ] - }, - explorers: [ - { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/C4E-Testnet', - tx_page: - 'https://explorer.stavr.tech/C4E-Testnet/transactions/${txHash}' - }, - { - kind: 'explorer', - url: 'https://explorer-testnet.c4e.io/', - tx_page: 'https://explorer-testnet.c4e.io/transactions/${txHash}' - } - ], - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/chain4energytestnet/images/c4e.png' - } - ] - }, - { - $schema: '../../chain.schema.json', - chain_name: 'cheqdtestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'cheqd', - chain_id: 'cheqd-testnet-6', - bech32_prefix: 'cheqd', - daemon_name: 'cheqd-noded', - node_home: '$HOME/.cheqdnode', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ncheq', - fixed_min_gas_price: 25, - low_gas_price: 50, - average_gas_price: 75, - high_gas_price: 100 - } - ] - }, - codebase: { - git_repo: 'https://github.com/cheqd/cheqd-node', - recommended_version: 'v1.4.0', - compatible_versions: ['v1.2.5', 'v1.3.0', 'v1.4.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-arm64.tar.gz' - }, - cosmos_sdk_version: '0.46.10', - consensus: { - type: 'tendermint', - version: '0.34.26' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/testnet/genesis.json' - }, - versions: [ - { - name: 'v1.4.0', - recommended_version: 'v1.4.0', - compatible_versions: ['v1.2.5', 'v1.3.0', 'v1.4.0'], - cosmos_sdk_version: '0.46.10', - consensus: { - type: 'tendermint', - version: '0.34.26' - }, - binaries: { - 'linux/amd64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-linux-arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/cheqd/cheqd-node/releases/download/v1.4.0/cheqd-noded-1.4.0-darwin-arm64.tar.gz' - } - } - ] - }, - peers: { - seeds: [ - { - id: '658453f9578d82f0897f13205ca2e7ad37279f95', - address: 'seed1-eu.cheqd.network:26656', - provider: 'cheqd' - }, - { - id: '32d626260f74f3c824dfa15a624c078f27fc31a2', - address: 'seed1-ap.cheqd.network:26656', - provider: 'cheqd' + "address": "https://api.cheqd.network", + "provider": "cheqd" } ], - persistent_peers: [ - { - id: '8c45237d435247270b95edae33fd1a69341eb1bb', - address: 'sentry1-eu.cheqd.network:26656', - provider: 'cheqd' - }, + "grpc": [ { - id: '355d3e577b9b1eaadf438694e86364425cf4bb0e', - address: 'sentry1-ap.cheqd.network:26656', - provider: 'cheqd' + "address": "grpc.cheqd.network:443", + "provider": "cheqd" } ] }, - apis: { - rpc: [ - { - address: 'https://rpc.cheqd.network', - provider: 'cheqd' - } - ], - rest: [ - { - address: 'https://api.cheqd.network', - provider: 'cheqd' - } - ], - grpc: [ - { - address: 'grpc.cheqd.network:443', - provider: 'cheqd' - } - ] - }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://testnet-explorer.cheqd.io/', - tx_page: 'https://testnet-explorer.cheqd.io/transactions/${txHash}' + "kind": "bigdipper", + "url": "https://testnet-explorer.cheqd.io/", + "tx_page": "https://testnet-explorer.cheqd.io/transactions/${txHash}" } ], - 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' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'chimbatestnet', - status: 'live', - network_type: 'testnet', - website: 'https://chimba.ooo/', - pretty_name: 'Chimba', - chain_id: 'chimba-testnet', - bech32_prefix: 'chimba', - daemon_name: 'chimbad', - node_home: '$HOME/.chimbad', - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "chimbatestnet", + "status": "live", + "network_type": "testnet", + "website": "https://chimba.ooo/", + "pretty_name": "Chimba", + "chain_id": "chimba-testnet", + "bech32_prefix": "chimba", + "daemon_name": "chimbad", + "node_home": "$HOME/.chimbad", + "fees": { + "fee_tokens": [ { - denom: 'ucmba', - fixed_min_gas_price: 0.25, - low_gas_price: 1, - average_gas_price: 5, - high_gas_price: 10 + "denom": "ucmba", + "fixed_min_gas_price": 0.25, + "low_gas_price": 1, + "average_gas_price": 5, + "high_gas_price": 10 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'chimba' + "denom": "chimba" } ] }, - codebase: { - git_repo: 'https://github.com/ChimbaBlockchain/chimba', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - genesis: { - genesis_url: 'https://rpc.testnet.chimba.ooo/genesis' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'] - } - ] - }, - peers: { - persistent_peers: [] - }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.testnet.chimba.ooo', - provider: 'chimba' + "address": "https://rpc.testnet.chimba.ooo", + "provider": "chimba" } ], - rest: [ + "rest": [ { - address: 'https://testnet.chimba.ooo', - provider: 'chimba' + "address": "https://testnet.chimba.ooo", + "provider": "chimba" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://explorer.testnet.chimba.ooo/', - tx_page: 'https://explorer.testnet.chimba.ooo/transactions/${txHash}' + "kind": "bigdipper", + "url": "https://explorer.testnet.chimba.ooo/", + "tx_page": "https://explorer.testnet.chimba.ooo/transactions/${txHash}" } ], - slip44: 118 + "slip44": 118 }, { - $schema: '../chain.schema.json', - chain_name: 'composabletestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Composable Testnet', - chain_id: 'banksy-testnet-3', - bech32_prefix: 'centauri', - daemon_name: 'centaurid', - node_home: '$HOME/.banksy', - key_algos: ['secp256k1'], - slip44: 118, - staking: { - staking_tokens: [ - { - denom: 'ppica' - } - ] - }, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "composabletestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Composable Testnet", + "chain_id": "banksy-testnet-3", + "bech32_prefix": "centauri", + "daemon_name": "centaurid", + "node_home": "$HOME/.banksy", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "staking": { + "staking_tokens": [ { - denom: 'ppica', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0, - high_gas_price: 0 + "denom": "ppica" } ] }, - codebase: { - git_repo: 'https://github.com/notional-labs/composable-centauri', - recommended_version: 'v3.0.0', - compatible_versions: ['v3.0.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/notional-labs/composable-networks/main/banksy-testnet-3/genesis.json' - }, - versions: [ + "fees": { + "fee_tokens": [ { - name: 'v3.0.0', - recommended_version: 'v3.0.0', - compatible_versions: ['v3.0.0'] + "denom": "ppica", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0 } ] }, - peers: { - seeds: [], - persistent_peers: [ + "codebase": {}, + "apis": { + "rpc": [ { - id: '488f98949ba03931c433aaf12d799bb1cd6f3942', - address: '65.21.225.10:47656', - provider: 'Indonode' + "address": "https://rpc.composable-t.indonode.net:443", + "provider": "Indonode" }, { - id: '667703b3bdf291ec7774c0c46a54eddd2ccb6d36', - address: '46.17.250.108:61456', - provider: 'Sr20de' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://rpc.composable-t.indonode.net:443', - provider: 'Indonode' - }, - { - address: 'https://rpc-composable-testnet.sr20de.xyz:443', - provider: 'Sr20de' + "address": "https://rpc-composable-testnet.sr20de.xyz:443", + "provider": "Sr20de" } ], - rest: [ + "rest": [ { - address: 'https://api.composable-t.indonode.net', - provider: 'Indonode' + "address": "https://api.composable-t.indonode.net", + "provider": "Indonode" }, { - address: 'https://composable.api.t4.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://composable.api.t4.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api-composable-testnet.sr20de.xyz', - provider: 'Sr20de' + "address": "https://api-composable-testnet.sr20de.xyz", + "provider": "Sr20de" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.composable-t.indonode.net:47090', - provider: 'Indonode' + "address": "https://grpc.composable-t.indonode.net:47090", + "provider": "Indonode" }, { - address: 'https://grpc-composable-testnet.sr20de.xyz', - provider: 'Sr20de' + "address": "https://grpc-composable-testnet.sr20de.xyz", + "provider": "Sr20de" } ] }, - explorers: [ + "explorers": [ { - url: 'https://explorer.nodexcapital.com/composable-3', - tx_page: 'https://explorer.nodexcapital.com/composable-3/tx/${txHash}' + "url": "https://explorer.nodexcapital.com/composable-3", + "tx_page": "https://explorer.nodexcapital.com/composable-3/tx/${txHash}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Composable-Testnet4', - tx_page: 'https://explorer.stavr.tech/Composable-Testnet4/tx/${txHash}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Composable-Testnet4", + "tx_page": "https://explorer.stavr.tech/Composable-Testnet4/tx/${txHash}" }, { - url: 'https://explorer.indonode.net/composable-testnet-3', - tx_page: - 'https://explorer.indonode.net/composable-testnet-3/tx/${txHash}' + "url": "https://explorer.indonode.net/composable-testnet-3", + "tx_page": "https://explorer.indonode.net/composable-testnet-3/tx/${txHash}" }, { - url: 'https://explorer.sr20de.xyz/Composible-3', - tx_page: 'https://explorer.sr20de.xyz/Composible-3/tx/${txHash}' + "url": "https://explorer.sr20de.xyz/Composible-3", + "tx_page": "https://explorer.sr20de.xyz/Composible-3/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'coolcattestnet', - status: 'live', - network_type: 'testnet', - website: 'https://app.coolcat.space/', - pretty_name: 'CoolCat', - chain_id: 'kitten-04', - bech32_prefix: 'ccat', - key_algos: ['secp256k1'], - fees: { - fee_tokens: [ - { - denom: 'uccat', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 1, - high_gas_price: 2 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "coolcattestnet", + "status": "live", + "network_type": "testnet", + "website": "https://app.coolcat.space/", + "pretty_name": "CoolCat", + "chain_id": "kitten-04", + "bech32_prefix": "ccat", + "key_algos": [ + "secp256k1" + ], + "fees": { + "fee_tokens": [ { - denom: 'uccat' + "denom": "uccat", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 1, + "high_gas_price": 2 } ] }, - daemon_name: 'coolcat', - node_home: '$HOME/.coolcat', - slip44: 118, - codebase: { - git_repo: 'https://github.com/DigitalKitchenLabs/coolcat', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/DigitalKitchenLabs/testnets/main/kitten-04/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v2.0.0', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'] + "denom": "uccat" } ] }, - peers: { - seeds: [], - persistent_peers: [] - }, - apis: { - rpc: [ + "daemon_name": "coolcat", + "node_home": "$HOME/.coolcat", + "slip44": 118, + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.coolcat.space', - provider: 'Digital Kitchen' + "address": "https://rpc.coolcat.space", + "provider": "Digital Kitchen" } ], - rest: [ + "rest": [ { - address: 'https://lcd.coolcat.space', - provider: 'Digital Kitchen' + "address": "https://lcd.coolcat.space", + "provider": "Digital Kitchen" } ], - grpc: [] + "grpc": [] }, - explorers: [] + "explorers": [] }, { - $schema: '../../chain.schema.json', - chain_name: 'coreumtestnet', - status: 'live', - network_type: 'testnet', - website: 'https://www.coreum.com', - pretty_name: 'Coreum', - chain_id: 'coreum-testnet-1', - bech32_prefix: 'testcore', - daemon_name: 'cored', - node_home: '$HOME/.core/coreum-testnet-1', - key_algos: ['secp256k1'], - slip44: 990, - fees: { - fee_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "coreumtestnet", + "status": "live", + "network_type": "testnet", + "website": "https://www.coreum.com", + "pretty_name": "Coreum", + "chain_id": "coreum-testnet-1", + "bech32_prefix": "testcore", + "daemon_name": "cored", + "node_home": "$HOME/.core/coreum-testnet-1", + "key_algos": [ + "secp256k1" + ], + "slip44": 990, + "fees": { + "fee_tokens": [ { - denom: 'utestcore', - fixed_min_gas_price: 0.03125, - low_gas_price: 0.0625, - average_gas_price: 0.0625, - high_gas_price: 62.5 + "denom": "utestcore", + "fixed_min_gas_price": 0.03125, + "low_gas_price": 0.0625, + "average_gas_price": 0.0625, + "high_gas_price": 62.5 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'utestcore' + "denom": "utestcore" } ], - lock_duration: { - time: '168h' + "lock_duration": { + "time": "168h" } }, - codebase: { - git_repo: 'https://github.com/CoreumFoundation/coreum', - recommended_version: 'v0.1.1', - compatible_versions: ['v0.1.1'], - binaries: { - 'linux/amd64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v0.1.1/cored-linux-amd64?checksum=sha256:21db2ea1b31d9e8202e0d11f2bee0de78d2e677c07fd75a7db1f3958bf49146c', - 'linux/arm64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v0.1.1/cored-linux-arm64?checksum=sha256:7d383d1a1bc9185677b25c05ebbe01cf20dd6c779ca4301065359ea6e3bcefa3' - }, - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - genesis: { - name: 'v0', - genesis_url: - 'https://raw.githubusercontent.com/CoreumFoundation/coreum/master/genesis/coreum-testnet-1.json' - }, - versions: [ - { - name: 'v0', - tag: 'v0.1.1', - height: 0, - recommended_version: 'v0.1.1', - compatible_versions: ['v0.1.1'], - binaries: { - 'linux/amd64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v0.1.1/cored-linux-amd64?checksum=sha256:21db2ea1b31d9e8202e0d11f2bee0de78d2e677c07fd75a7db1f3958bf49146c', - 'linux/arm64': - 'https://github.com/CoreumFoundation/coreum/releases/download/v0.1.1/cored-linux-arm64?checksum=sha256:7d383d1a1bc9185677b25c05ebbe01cf20dd6c779ca4301065359ea6e3bcefa3' - }, - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true - } - ] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', - theme: { - primary_color_hex: '#25d695' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "theme": { + "primary_color_hex": "#25d695" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png" }, - peers: { - seeds: [ + "apis": { + "rpc": [ { - id: '64391878009b8804d90fda13805e45041f492155', - address: 'seed-sirius.testnet-1.coreum.dev:26656', - provider: 'Coreum Foundation' + "address": "https://full-node-pluto.testnet-1.coreum.dev:26657", + "provider": "Coreum Foundation" }, { - id: '53f2367d8f8291af8e3b6ca60efded0675ff6314', - address: 'seed-antares.mainnet-1.coreum.dev:26656', - provider: 'Coreum Foundation' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://full-node-pluto.testnet-1.coreum.dev:26657', - provider: 'Coreum Foundation' - }, - { - address: 'https://full-node-eris.testnet-1.coreum.dev:26657', - provider: 'Coreum Foundation' + "address": "https://full-node-eris.testnet-1.coreum.dev:26657", + "provider": "Coreum Foundation" } ], - grpc: [ + "grpc": [ { - address: 'https://full-node-pluto.testnet-1.coreum.dev:9090', - provider: 'Coreum Foundation' + "address": "https://full-node-pluto.testnet-1.coreum.dev:9090", + "provider": "Coreum Foundation" }, { - address: 'https://full-node-eris.testnet-1.coreum.dev:9090', - provider: 'Coreum Foundation' + "address": "https://full-node-eris.testnet-1.coreum.dev:9090", + "provider": "Coreum Foundation" } ], - rest: [ + "rest": [ { - address: 'https://full-node.testnet-1.coreum.dev:1317', - provider: 'Coreum' + "address": "https://full-node.testnet-1.coreum.dev:1317", + "provider": "Coreum" } ] }, - explorers: [ + "explorers": [ { - kind: 'Coreum', - url: 'https://explorer.testnet-1.coreum.dev/coreum', - tx_page: - 'https://explorer.testnet-1.coreum.dev/coreum/transactions/${txHash}', - account_page: - 'https://explorer.testnet-1.coreum.dev/coreum/account/${accountAddress}' + "kind": "Coreum", + "url": "https://explorer.testnet-1.coreum.dev/coreum", + "tx_page": "https://explorer.testnet-1.coreum.dev/coreum/transactions/${txHash}", + "account_page": "https://explorer.testnet-1.coreum.dev/coreum/account/${accountAddress}" } ], - keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'] + "keywords": [ + "dex", + "staking", + "wasm", + "assets", + "nft" + ] }, { - $schema: '../../chain.schema.json', - chain_name: 'cosmoshubtestnet', - chain_id: 'theta-testnet-001', - pretty_name: 'Cosmos Hub Public Testnet', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'cosmos', - daemon_name: 'gaiad', - node_home: '$HOME/.gaia', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uatom', - fixed_min_gas_price: 0.005, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.03 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uatom' - } - ] - }, - codebase: { - git_repo: 'https://github.com/cosmos/gaia', - recommended_version: 'v14.1.0', - compatible_versions: ['v14.1.0-rc0', 'v14.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-amd64.exe', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-arm64.exe' - }, - genesis: { - genesis_url: - 'https://github.com/cosmos/testnets/raw/master/public/genesis.json.gz' - }, - versions: [ - { - name: 'v9.0.1', - recommended_version: 'v9.0.1', - compatible_versions: ['v9.0.1'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v9.0.1/gaiad-v9.0.1-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v9.0.1/gaiad-v9.0.1-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v9.0.1/gaiad-v9.0.1-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v9.0.1/gaiad-v9.0.1-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v9.0.1/gaiad-v9.0.1-windows-amd64.exe' - } - }, - { - name: 'v10.0.1', - recommended_version: 'v10.0.1', - compatible_versions: ['v10.0.1'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v10.0.1/gaiad-v10.0.1-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v10.0.1/gaiad-v10.0.1-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v10.0.1/gaiad-v10.0.1-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v10.0.1/gaiad-v10.0.1-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v10.0.1/gaiad-v10.0.1-windows-amd64.exe' - } - }, - { - name: 'v11', - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-windows-amd64.exe', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v11.0.0/gaiad-v11.0.0-windows-arm64.exe' - } - }, - { - name: 'v12', - recommended_version: 'v12.0.0', - compatible_versions: ['v12.0.0-rc0', 'v12.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-windows-amd64.exe', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-windows-arm64.exe' - } - }, - { - name: 'v13', - recommended_version: 'v13.0.0', - compatible_versions: ['v13.0.0-rc0', 'v13.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-windows-amd64.exe', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-windows-arm64.exe' - } - }, + "$schema": "../../chain.schema.json", + "chain_name": "cosmoshubtestnet", + "chain_id": "theta-testnet-001", + "pretty_name": "Cosmos Hub Public Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "cosmos", + "daemon_name": "gaiad", + "node_home": "$HOME/.gaia", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v14', - recommended_version: 'v14.1.0', - compatible_versions: ['v14.1.0-rc0', 'v14.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-amd64.exe', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-arm64.exe' - } + "denom": "uatom", + "fixed_min_gas_price": 0.005, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } ] }, - peers: { - seeds: [ - { - id: '639d50339d7045436c756a042906b9a69970913f', - address: 'seed-01.theta-testnet.polypore.xyz:26656', - provider: 'Hypha' - }, + "staking": { + "staking_tokens": [ { - id: '3e506472683ceb7ed75c1578d092c79785c27857', - address: 'seed-02.theta-testnet.polypore.xyz:26656', - provider: 'Hypha' + "denom": "uatom" } - ], - persistent_peers: [] + ] }, - apis: { - rpc: [ + "codebase": {}, + "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" }, { - address: 'https://public-cosmos-theta.w3node.com', - provider: 'Interchain.FM' + "address": "https://public-cosmos-theta.w3node.com", + "provider": "Interchain.FM" }, { - address: 'https://rpc-theta.osmotest5.osmosis.zone/', - provider: 'Osmosis' + "address": "https://rpc-theta.osmotest5.osmosis.zone/", + "provider": "Osmosis" } ], - 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" }, { - address: 'https://public-cosmos-theta.w3node.com/rest/', - provider: 'Interchain.FM' + "address": "https://public-cosmos-theta.w3node.com/rest/", + "provider": "Interchain.FM" }, { - address: 'https://lcd-theta.osmotest5.osmosis.zone/', - provider: 'Osmosis' + "address": "https://lcd-theta.osmotest5.osmosis.zone/", + "provider": "Osmosis" } ], - 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: 'Mintscan', - url: 'https://testnet.mintscan.io/cosmoshub-testnet', - tx_page: 'https://testnet.mintscan.io/cosmoshub-testnet/txs/${txHash}' + "kind": "Mintscan", + "url": "https://testnet.mintscan.io/cosmoshub-testnet", + "tx_page": "https://testnet.mintscan.io/cosmoshub-testnet/txs/${txHash}" }, { - 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: 'cosmwasmtestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'CosmWasm Testnet', - chain_id: 'malaga-420', - bech32_prefix: 'wasm', - daemon_name: 'wasmd', - node_home: '$HOME/.wasmd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'umlg', - low_gas_price: 0.03, - average_gas_price: 0.04, - high_gas_price: 0.05 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "cosmwasmtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "CosmWasm Testnet", + "chain_id": "malaga-420", + "bech32_prefix": "wasm", + "daemon_name": "wasmd", + "node_home": "$HOME/.wasmd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uand' + "denom": "umlg", + "low_gas_price": 0.03, + "average_gas_price": 0.04, + "high_gas_price": 0.05 } ] }, - codebase: { - git_repo: 'https://github.com/CosmWasm/wasmd', - recommended_version: 'v0.27', - compatible_versions: ['v0.27'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.27', - cosmwasm_enabled: true, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/CosmosContracts/testnets/main/uni-5/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.27', - recommended_version: 'v0.27', - compatible_versions: ['v0.27'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.27', - cosmwasm_enabled: true + "denom": "uand" } ] }, - peers: { - seeds: [], - persistent_peers: [ - { - id: '3e3d0d09027dda13a1cd95b5146edc24da5ef872', - address: '142.132.236.229:26656', - provider: 'Confio' - } - ] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.27" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.malaga-420.cosmwasm.com:443', - provider: 'Confio' + "address": "https://rpc.malaga-420.cosmwasm.com:443", + "provider": "Confio" } ], - rest: [ + "rest": [ { - address: 'https://api.malaga-420.cosmwasm.com', - provider: 'Confio' + "address": "https://api.malaga-420.cosmwasm.com", + "provider": "Confio" } ] }, - explorers: [ + "explorers": [ { - kind: 'BIG DIPPER', - url: 'https://block-explorer.malaga-420.cosmwasm.com/', - tx_page: - 'https://block-explorer.malaga-420.cosmwasm.com/transactions/${txHash}' + "kind": "BIG DIPPER", + "url": "https://block-explorer.malaga-420.cosmwasm.com/", + "tx_page": "https://block-explorer.malaga-420.cosmwasm.com/transactions/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'cosstestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'COSS Testnet', - chain_id: 'coss-testnet-1', - bech32_prefix: 'coss', - daemon_name: 'cossd', - node_home: '$HOME/.cossd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "cosstestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "COSS Testnet", + "chain_id": "coss-testnet-1", + "bech32_prefix": "coss", + "daemon_name": "cossd", + "node_home": "$HOME/.cossd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ucgas', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0.025, - high_gas_price: 0.04 + "denom": "ucgas", + "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: 'ucgas' + "denom": "ucgas" } ] }, - codebase: { - git_repo: 'https://github.com/coss-inscription/coss', - recommended_version: '0.1.0-testnet', - compatible_versions: ['0.1.0-testnet'], - cosmos_sdk_version: '0.50.2', - consensus: { - type: 'tendermint', - version: '0.38.2' - }, - cosmwasm_enabled: false, - genesis: { - genesis_url: - 'https://github.com/coss-inscription/networks/blob/main/testnet/coss-testnet-1/genesis.json' - } + "codebase": { + "cosmos_sdk_version": "0.50.2", + "cosmwasm_enabled": false }, - peers: { - seeds: [ + "apis": { + "rpc": [ { - id: '4bf62eb8e9d65bb86751529ca233df574891602f', - address: '35.72.222.149:26656', - provider: 'COSS' - } - ], - persistent_peers: [ - { - id: '738698413b8afe09aa3724c884251db7fccf37c9', - address: '18.181.25.162:26656', - provider: 'COSS' - } - ] - }, - apis: { - rpc: [ - { - address: 'https://rpc-coss-node-1.coss.ink', - provider: 'COSS' + "address": "https://rpc-coss-node-1.coss.ink", + "provider": "COSS" }, { - address: 'https://rpc-coss-node-2.coss.ink/', - provider: 'COSS' + "address": "https://rpc-coss-node-2.coss.ink/", + "provider": "COSS" } ], - rest: [ + "rest": [ { - address: 'https://rest-coss-node-1.coss.ink', - provider: 'COSS' + "address": "https://rest-coss-node-1.coss.ink", + "provider": "COSS" }, { - address: 'https://rest-coss-node-2.coss.ink', - provider: 'COSS' + "address": "https://rest-coss-node-2.coss.ink", + "provider": "COSS" } ] } }, { - $schema: '../../chain.schema.json', - chain_name: 'cudostestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Cudos Testnet', - chain_id: 'cudos-testnet-public-3', - bech32_prefix: 'cudos', - key_algos: ['secp256k1'], - slip44: 118, - codebase: { - git_repo: 'https://github.com/CudoVentures/cudos-node', - recommended_version: 'v1.1.0', - compatible_versions: ['v1.1.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/CudoVentures/cudos-builders/cudos-master/docker/config/genesis.testnet.public.json' - }, - versions: [ - { - name: 'v1.1.0', - recommended_version: 'v1.1.0', - compatible_versions: ['v1.1.0'] - } - ] - }, - peers: { - seeds: [ - { - id: 'ee9f57fa3d29a7b88df01dd69f1537c5687b8fd6', - address: 'seed-01.hosts.testnet.cudos.org:26656', - provider: 'cudo' - }, - { - id: '8c9f61d1783b4ab9707ef4dc99d07c9cd0ae5155', - address: 'seed-02.hosts.testnet.cudos.org:26656', - provider: 'cudo' - }, - { - id: '56543c24150a939095558c16dee031bf2fb2feb5', - address: 'seed-03.hosts.testnet.cudos.org:26656', - provider: 'cudo' - } - ], - persistent_peers: [ - { - id: '0ccf54158f9c340f1fdacf6b4884ca8c8372a923', - address: 'sentry-01.hosts.testnet.cudos.org:26656', - provider: 'cudo' - }, - { - id: '7c48114327bfd3ff3b396cda8b33a24c5d0ad172', - address: 'sentry-02.hosts.testnet.cudos.org:26656', - provider: 'cudo' - }, - { - id: 'd2693512dc45cc856300bcc1b8fd518ab5b2d343', - address: 'sentry-03.hosts.testnet.cudos.org:26656', - provider: 'cudo' - } - ] - }, - apis: { - rpc: [ + "$schema": "../../chain.schema.json", + "chain_name": "cudostestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Cudos Testnet", + "chain_id": "cudos-testnet-public-3", + "bech32_prefix": "cudos", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.testnet.cudos.org:443/', - provider: 'cudo' + "address": "https://rpc.testnet.cudos.org:443/", + "provider": "cudo" }, { - address: 'http://sentry-01.hosts.testnet.cudos.org:26657', - provider: 'cudo' + "address": "http://sentry-01.hosts.testnet.cudos.org:26657", + "provider": "cudo" }, { - address: 'http://sentry-02.hosts.testnet.cudos.org:26657', - provider: 'cudo' + "address": "http://sentry-02.hosts.testnet.cudos.org:26657", + "provider": "cudo" }, { - address: 'http://sentry-03.hosts.testnet.cudos.org:26657', - provider: 'cudo' + "address": "http://sentry-03.hosts.testnet.cudos.org:26657", + "provider": "cudo" } ], - rest: [ + "rest": [ { - address: 'https://rest.testnet.cudos.org:443', - provider: 'cudo' + "address": "https://rest.testnet.cudos.org:443", + "provider": "cudo" }, { - address: 'http://sentry-01.hosts.testnet.cudos.org:1317/', - provider: 'cudo' + "address": "http://sentry-01.hosts.testnet.cudos.org:1317/", + "provider": "cudo" }, { - address: 'http://sentry-02.hosts.testnet.cudos.org:1317/', - provider: 'cudo' + "address": "http://sentry-02.hosts.testnet.cudos.org:1317/", + "provider": "cudo" }, { - address: 'http://sentry-03.hosts.testnet.cudos.org:1317/', - provider: 'cudo' + "address": "http://sentry-03.hosts.testnet.cudos.org:1317/", + "provider": "cudo" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.testnet.cudos.org:433', - provider: 'cudo' + "address": "https://grpc.testnet.cudos.org:433", + "provider": "cudo" }, { - address: 'http://sentry-01.hosts.testnet.cudos.org:9090', - provider: 'cudo' + "address": "http://sentry-01.hosts.testnet.cudos.org:9090", + "provider": "cudo" }, { - address: 'http://sentry-02.hosts.testnet.cudos.org:9090', - provider: 'cudo' + "address": "http://sentry-02.hosts.testnet.cudos.org:9090", + "provider": "cudo" }, { - address: 'http://sentry-03.hosts.testnet.cudos.org:9090', - provider: 'cudo' + "address": "http://sentry-03.hosts.testnet.cudos.org:9090", + "provider": "cudo" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper-testnet', - url: 'https://explorer.testnet.cudos.org/', - tx_page: 'https://explorer.testnet.cudos.org/transactions/${txHash}', - account_page: - 'https://explorer.testnet.cudos.org/accounts/${accountAddress}' + "kind": "bigdipper-testnet", + "url": "https://explorer.testnet.cudos.org/", + "tx_page": "https://explorer.testnet.cudos.org/transactions/${txHash}", + "account_page": "https://explorer.testnet.cudos.org/accounts/${accountAddress}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'deardogetestnet', - chain_id: 'deardoge-testnet', - pretty_name: 'Dear Doge Testnet', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'deardoge', - daemon_name: 'dogd', - node_home: '$HOME/.deardoge', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'udear', - fixed_min_gas_price: 0.25 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "deardogetestnet", + "chain_id": "deardoge-testnet", + "pretty_name": "Dear Doge Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "deardoge", + "daemon_name": "dogd", + "node_home": "$HOME/.deardoge", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'udear' + "denom": "udear", + "fixed_min_gas_price": 0.25 } ] }, - codebase: { - git_repo: 'https://github.com/DoraFactory/Dear-Doge', - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - binaries: {}, - genesis: { - genesis_url: - 'https://github.com/DoraFactory/Dear-Doge/blob/main/config/testnet/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v9.0.1', - recommended_version: 'v9.0.1', - compatible_versions: ['v9.0.1'], - binaries: {} - }, - { - name: 'v10.0.1', - recommended_version: 'v10.0.1', - compatible_versions: ['v10.0.1'], - binaries: {} - }, - { - name: 'v11', - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - binaries: {} + "denom": "udear" } ] }, - peers: { - seeds: [], - persistent_peers: [] - }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://testnet-rpc.deardoge.org', - provider: 'dorafactory' + "address": "https://testnet-rpc.deardoge.org", + "provider": "dorafactory" } ], - rest: [ + "rest": [ { - address: 'https://testnet-rest.deardoge.org', - provider: 'dorafactory' + "address": "https://testnet-rest.deardoge.org", + "provider": "dorafactory" } ], - grpc: [ + "grpc": [ { - address: 'testnet-grpc.deardoge.org:443', - provider: 'dorafactory' + "address": "testnet-grpc.deardoge.org:443", + "provider": "dorafactory" } ] }, - explorers: [ + "explorers": [ { - kind: 'Dear Doge Ping Pub', - url: 'https://testnet-explorer.deardoge.org/deardoge', - tx_page: 'https://testnet-explorer.deardoge.org/deardoge/tx/${txHash}' + "kind": "Dear Doge Ping Pub", + "url": "https://testnet-explorer.deardoge.org/deardoge", + "tx_page": "https://testnet-explorer.deardoge.org/deardoge/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'desmostestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Desmos Testnet', - chain_id: 'morpheus-apollo-3', - bech32_prefix: 'desmos', - daemon_name: 'desmos', - node_home: '$HOME/.desmos', - key_algos: ['secp256k1'], - slip44: 852, - fees: { - fee_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "desmostestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Desmos Testnet", + "chain_id": "morpheus-apollo-3", + "bech32_prefix": "desmos", + "daemon_name": "desmos", + "node_home": "$HOME/.desmos", + "key_algos": [ + "secp256k1" + ], + "slip44": 852, + "fees": { + "fee_tokens": [ { - denom: 'udaric', - fixed_min_gas_price: 0.001, - low_gas_price: 0.01, - average_gas_price: 0.03, - high_gas_price: 0.05 + "denom": "udaric", + "fixed_min_gas_price": 0.001, + "low_gas_price": 0.01, + "average_gas_price": 0.03, + "high_gas_price": 0.05 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'udaric' + "denom": "udaric" } ] }, - codebase: { - git_repo: 'https://github.com/desmos-labs/desmos', - recommended_version: 'v5.1.0', - compatible_versions: ['5.1.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/desmos-labs/morpheus/master/morpheus-apollo-3/genesis.json' - }, - versions: [ - { - name: 'v4.8.0', - recommended_version: 'v4.8.1', - compatible_versions: ['v4.8.0', 'v4.8.1'], - next_version_name: 'v5.0.0' - }, - { - name: 'v5.0.0', - recommended_version: 'v5.1.0', - compatible_versions: ['v5.1.0'] - } - ] - }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' - }, - peers: { - seeds: [ - { - id: 'be3db0fe5ee7f764902dbcc75126a2e082cbf00c', - address: 'seed-1.morpheus.desmos.network:26656', - provider: 'desmos' - }, - { - id: '4659ab47eef540e99c3ee4009ecbe3fbf4e3eaff', - address: 'seed-2.morpheus.desmos.network:26656', - provider: 'desmos' - }, - { - id: '1d9cc23eedb2d812d30d99ed12d5c5f21ff40c23', - address: 'seed-3.morpheus.desmos.network:26656', - provider: 'desmos' - } - ] + "codebase": {}, + "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" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.morpheus.desmos.network', - provider: 'desmos' + "address": "https://rpc.morpheus.desmos.network", + "provider": "desmos" } ], - rest: [ + "rest": [ { - address: 'https://lcd.morpheus.desmos.network', - provider: 'desmos' + "address": "https://lcd.morpheus.desmos.network", + "provider": "desmos" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.morpheus.desmos.network:443', - provider: 'desmos' + "address": "https://grpc.morpheus.desmos.network:443", + "provider": "desmos" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://testnet.bigdipper.live/desmos', - tx_page: 'https://testnet.live/desmos/transactions/${txHash}', - account_page: - 'https://testnet.bigdipper.live/desmos/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://testnet.bigdipper.live/desmos", + "tx_page": "https://testnet.live/desmos/transactions/${txHash}", + "account_page": "https://testnet.bigdipper.live/desmos/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'doravotatestnet', - chain_id: 'vota-testnet', - pretty_name: 'Dora Vota Testnet', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'dora', - daemon_name: 'dorad', - node_home: '$HOME/.dora', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'peaka', - fixed_min_gas_price: 100000000000 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "doravotatestnet", + "chain_id": "vota-testnet", + "pretty_name": "Dora Vota Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "dora", + "daemon_name": "dorad", + "node_home": "$HOME/.dora", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'peaka' + "denom": "peaka", + "fixed_min_gas_price": 100000000000 } ] }, - codebase: { - git_repo: 'https://github.com/dorafactory/doravota', - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - binaries: {}, - genesis: { - genesis_url: - 'https://github.com/DoraFactory/doravota/blob/main/config/testnet/genesis.json' - }, - versions: [ - { - name: 'v9.0.1', - recommended_version: 'v9.0.1', - compatible_versions: ['v9.0.1'], - binaries: {} - }, + "staking": { + "staking_tokens": [ { - name: 'v10.0.1', - recommended_version: 'v10.0.1', - compatible_versions: ['v10.0.1'], - binaries: {} - }, - { - name: 'v11', - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - binaries: {} + "denom": "peaka" } ] }, - peers: { - seeds: [], - persistent_peers: [] - }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://vota-testnet-rpc.dorafactory.org/', - provider: 'dorafactory' + "address": "https://vota-testnet-rpc.dorafactory.org/", + "provider": "dorafactory" } ], - rest: [ + "rest": [ { - address: 'https://vota-testnet-rest.dorafactory.org', - provider: 'dorafactory' + "address": "https://vota-testnet-rest.dorafactory.org", + "provider": "dorafactory" } ], - grpc: [ + "grpc": [ { - address: 'vota-testnet-grpc.dorafactory.org:443', - provider: 'dorafactory' + "address": "vota-testnet-grpc.dorafactory.org:443", + "provider": "dorafactory" } ] }, - explorers: [ + "explorers": [ { - kind: 'Dora Vota Ping Pub', - url: 'https://maci-explorer-test.dorafactory.org', - tx_page: 'https://maci-explorer-test.dorafactory.org/dora/tx/${txHash}' + "kind": "Dora Vota Ping Pub", + "url": "https://maci-explorer-test.dorafactory.org", + "tx_page": "https://maci-explorer-test.dorafactory.org/dora/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'doravotatestnet2', - chain_id: 'vota-vk', - pretty_name: 'Dora Vota Incentive Testnet', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'dora', - daemon_name: 'dorad', - node_home: '$HOME/.dora', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'peaka', - fixed_min_gas_price: 100000000000 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "doravotatestnet2", + "chain_id": "vota-vk", + "pretty_name": "Dora Vota Incentive Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "dora", + "daemon_name": "dorad", + "node_home": "$HOME/.dora", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'peaka' + "denom": "peaka", + "fixed_min_gas_price": 100000000000 } ] }, - codebase: { - git_repo: 'https://github.com/dorafactory/doravota', - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - binaries: {}, - genesis: { - genesis_url: - 'https://github.com/DoraFactory/doravota/blob/main/config/incentive/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v9.0.1', - recommended_version: 'v9.0.1', - compatible_versions: ['v9.0.1'], - binaries: {} - }, - { - name: 'v10.0.1', - recommended_version: 'v10.0.1', - compatible_versions: ['v10.0.1'], - binaries: {} - }, - { - name: 'v11', - recommended_version: 'v11.0.0', - compatible_versions: ['v11.0.0'], - binaries: {} + "denom": "peaka" } ] }, - peers: { - seeds: [], - persistent_peers: [] - }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://vota-vk-rpc.dorafactory.org/', - provider: 'dorafactory' + "address": "https://vota-vk-rpc.dorafactory.org/", + "provider": "dorafactory" } ], - rest: [ + "rest": [ { - address: 'https://vota-vk-rest.dorafactory.org', - provider: 'dorafactory' + "address": "https://vota-vk-rest.dorafactory.org", + "provider": "dorafactory" } ], - grpc: [ + "grpc": [ { - address: 'vota-vk-grpc.dorafactory.org:443', - provider: 'dorafactory' + "address": "vota-vk-grpc.dorafactory.org:443", + "provider": "dorafactory" } ] }, - explorers: [ + "explorers": [ { - kind: 'Dora Vota Ping Pub', - url: 'https://vota-vk-explorer.dorafactory.org', - tx_page: - 'https://vota-vk-explorer.dorafactory.org/doravotaincentive/tx/${txHash}' + "kind": "Dora Vota Ping Pub", + "url": "https://vota-vk-explorer.dorafactory.org", + "tx_page": "https://vota-vk-explorer.dorafactory.org/doravotaincentive/tx/${txHash}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'dydxtestnet', - status: 'live', - website: 'https://dydx.trade/', - network_type: 'testnet', - pretty_name: 'dYdX Protocol', - chain_id: 'dydx-testnet-4', - bech32_prefix: 'dydx', - daemon_name: 'dydxprotocold', - node_home: '$HOME/.dydxprotocol', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "dydxtestnet", + "status": "live", + "website": "https://dydx.trade/", + "network_type": "testnet", + "pretty_name": "dYdX Protocol", + "chain_id": "dydx-testnet-4", + "bech32_prefix": "dydx", + "daemon_name": "dydxprotocold", + "node_home": "$HOME/.dydxprotocol", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'adydx', - fixed_min_gas_price: 12500000000, - low_gas_price: 12500000000, - average_gas_price: 12500000000, - high_gas_price: 20000000000 + "denom": "adydx", + "fixed_min_gas_price": 12500000000, + "low_gas_price": 12500000000, + "average_gas_price": 12500000000, + "high_gas_price": 20000000000 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'adydx' + "denom": "adydx" } ] }, - codebase: { - git_repo: 'https://github.com/dydxprotocol/v4-chain/', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - cosmos_sdk_version: 'v0.47.4', - cosmwasm_enabled: false, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/dydxopsdao/networks/main/dydx-mainnet-1/genesis.json' - }, - versions: [ - { - name: 'v2', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - cosmos_sdk_version: 'v0.47.4' - } - ] - }, - description: - 'Our goal is to build open source code that can power a first class product and trading experience.', - peers: { - seeds: [ - { - id: 'a9cae4047d5c34772442322b10ef5600d8e54900', - address: - '19d38bb5cea1378db3e16615e63594dc26119a1a@dydx-testnet4-seednode.allthatnode.com:26656', - provider: 'DSRV' - }, - { - id: '4f20c3e303c9515051b6276aeb89c0b88ee79f8f', - address: - '87ee8de5f0f82af6ee6740a30f8844bbe6434413@seed.dydx-testnet.cros-nest.com:26656', - provider: 'Crosnest' - }, - { - id: 'c2c2fcb5e6e4755e06b83b499aff93e97282f8e8', - address: - '38e5a5ec34c578dc323cbdd9b98330abb448d586@tenderseed.ccvalidators.com:29104', - provider: 'CryptoCrew' - }, - { - id: '65b740ee326c9260c30af1f044e9cda63c73f7c1', - address: - '80a1a6cd086634c34008c6457d3f7441cfc05c47@seeds.kingnodes.com:27056', - provider: 'KingNodes' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: - '20e1000e88125698264454a884812746c2eb4807@seeds.lavenderfive.com:23856', - provider: 'Lavender Five' - } - ] + "codebase": { + "cosmos_sdk_version": "v0.47.4", + "cosmwasm_enabled": false }, - apis: { - rpc: [ + "description": "Our goal is to build open source code that can power a first class product and trading experience.", + "apis": { + "rpc": [ { - address: 'https://dydx-rpc-testnet.enigma-validator.com', - provider: 'Enigma' + "address": "https://dydx-rpc-testnet.enigma-validator.com", + "provider": "Enigma" }, { - address: 'https://testnet-dydx-rpc.lavenderfive.com', - provider: 'Lavender Five' + "address": "https://testnet-dydx-rpc.lavenderfive.com", + "provider": "Lavender Five" }, { - address: 'https://test-dydx.kingnodes.com', - provider: 'KingNodes' + "address": "https://test-dydx.kingnodes.com", + "provider": "KingNodes" }, { - address: 'https://dydx-testnet-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://dydx-testnet-rpc.polkachu.com", + "provider": "Polkachu" } ], - rest: [ + "rest": [ { - address: 'https://dydx-lcd-testnet.enigma-validator.com', - provider: 'Enigma' + "address": "https://dydx-lcd-testnet.enigma-validator.com", + "provider": "Enigma" }, { - address: 'https://testnet-dydx-api.lavenderfive.com', - provider: 'Lavender Five' + "address": "https://testnet-dydx-api.lavenderfive.com", + "provider": "Lavender Five" }, { - address: 'https://dydx-testnet-api.polkachu.com', - provider: 'Polkachu' + "address": "https://dydx-testnet-api.polkachu.com", + "provider": "Polkachu" } ], - grpc: [ + "grpc": [ { - address: 'https://testnet-dydx-rpc.lavenderfive.com', - provider: 'Lavender Five' + "address": "https://testnet-dydx-rpc.lavenderfive.com", + "provider": "Lavender Five" }, { - address: 'https://dydx-testnet-api.polkachu.com', - provider: 'Polkachu' + "address": "https://dydx-testnet-api.polkachu.com", + "provider": "Polkachu" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/dydx-testnet', - tx_page: 'https://www.mintscan.io/dydx-testnet/txs/${txHash}', - account_page: - 'https://www.mintscan.io/dydx-testnet/account/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/dydx-testnet", + "tx_page": "https://www.mintscan.io/dydx-testnet/txs/${txHash}", + "account_page": "https://www.mintscan.io/dydx-testnet/account/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" }, - images: [ + "images": [ { - image_sync: { - chain_name: 'dydx' + "image_sync": { + "chain_name": "dydx" }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'elystestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Elys Network', - chain_id: 'elystestnet-1', - bech32_prefix: 'elys', - daemon_name: 'elysd', - node_home: '$HOME/.elys', - key_algos: ['secp256k1'], - slip44: 118, - staking: { - staking_tokens: [ - { - denom: 'uelys' - } - ], - lock_duration: { - time: '1209600s' - } - }, - codebase: { - git_repo: 'https://github.com/elys-network/elys', - recommended_version: 'v0.12.0', - compatible_versions: ['v0.12.0'], - cosmos_sdk_version: 'v0.47', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - ibc_go_version: 'v7.3.0', - cosmwasm_enabled: false, - genesis: { - genesis_url: - 'https://snapshots.polkachu.com/testnet-genesis/elys/genesis.json' - }, - versions: [ - { - name: 'v0.2.3', - recommended_version: 'v0.2.3', - compatible_versions: ['v0.2.3'], - cosmos_sdk_version: 'v0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: 'v6.1.0', - cosmwasm_enabled: false, - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.2.3/elys._v0.2.3_linux_amd64.tar.gz' - } - }, - { - name: 'v0.3.1', - recommended_version: 'v0.3.1', - compatible_versions: ['v0.3.1'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.3.1/elys._v0.3.1_linux_amd64.tar.gz' - } - }, - { - name: 'v0.4.0', - recommended_version: 'v0.4.0', - compatible_versions: ['v0.4.0'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.4.0/elys._v0.4.0_linux_amd64.tar.gz' - } - }, - { - name: 'v0.5.0', - recommended_version: 'v0.5.0', - compatible_versions: ['v0.5.0'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.5.0/elys._v0.5.0_linux_amd64.tar.gz' - } - }, - { - name: 'v0.5.1', - recommended_version: 'v0.5.1', - compatible_versions: ['v0.5.1'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.5.1/elys._v0.5.1_linux_amd64.tar.gz' - } - }, - { - name: 'v0.5.2', - recommended_version: 'v0.5.2', - compatible_versions: ['v0.5.2'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.5.0/elys._v0.5.2_linux_amd64.tar.gz' - } - }, - { - name: 'v0.5.3', - recommended_version: 'v0.5.3', - compatible_versions: ['v0.5.3'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.5.3/elys._v0.5.3_linux_amd64.tar.gz' - } - }, - { - name: 'v0.5.4', - recommended_version: 'v0.5.4', - compatible_versions: ['v0.5.4'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.5.4/elys._v0.5.4_linux_amd64.tar.gz' - } - }, - { - name: 'v0.6.0', - recommended_version: 'v0.6.0', - compatible_versions: ['v0.6.0'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.6.0/elys._v0.6.0_linux_amd64.tar.gz' - } - }, - { - name: 'v0.7.0', - recommended_version: 'v0.7.0', - compatible_versions: ['v0.7.0'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.7.0/elys._v0.7.0_linux_amd64.tar.gz' - } - }, - { - name: 'v0.8.0', - recommended_version: 'v0.8.0', - compatible_versions: ['v0.8.0'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.8.0/elys._v0.8.0_linux_amd64.tar.gz' - } - }, - { - name: 'v0.9.0', - recommended_version: 'v0.9.0', - compatible_versions: ['v0.9.0'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.9.0/elys._v0.9.0_linux_amd64.tar.gz' - } - }, - { - name: 'v0.10.0', - recommended_version: 'v0.10.0', - compatible_versions: ['v0.10.0'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.10.0/elysd-0.10.0-linux-amd64.tar.gz' - } - }, - { - name: 'v0.11.0', - recommended_version: 'v0.11.0', - compatible_versions: ['v0.11.0'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.11.0/elysd-v0.11.0-linux-amd64.tar.gz' - } - }, - { - name: 'v0.12.0', - recommended_version: 'v0.12.0', - compatible_versions: ['v0.12.0'], - binaries: { - 'linux/amd64': - 'https://github.com/elys-network/elys/releases/download/v0.12.0/elysd-v0.12.0-linux-amd64.tar.gz' - }, - cosmos_sdk_version: 'v0.47', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - ibc_go_version: 'v7.3.0', - cosmwasm_enabled: false - } - ] - }, - peers: { - seeds: [ - { - id: 'cdf9ae8529aa00e6e6703b28f3dcfdd37e07b27c', - address: '37.187.154.66:26656', - provider: 'nirvana' - }, - { - id: '86987eeff225699e67a6543de3622b8a986cce28', - address: '91.183.62.162:26656', - provider: 'utopia' - }, - { - id: 'ae22b82b1dc34fa0b1a64854168692310f562136', - address: '198.27.74.140:26656', - provider: 'shangrila' - }, + "$schema": "../../chain.schema.json", + "chain_name": "elystestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Elys Network", + "chain_id": "elystestnet-1", + "bech32_prefix": "elys", + "daemon_name": "elysd", + "node_home": "$HOME/.elys", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "staking": { + "staking_tokens": [ { - id: '61284a4d71cd3a33771640b42f40b2afda389a1e', - address: '5.101.138.254:26656', - provider: 'euphoria' + "denom": "uelys" } ], - persistent_peers: [ - { - id: '609c64cc50fb4ebbe7cae3347545d3950ea2c018', - address: '65.108.195.29:23656', - provider: 'Staketab' - } - ] + "lock_duration": { + "time": "1209600s" + } + }, + "codebase": { + "cosmos_sdk_version": "v0.47", + "cosmwasm_enabled": false }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.testnet.elys.network', - provider: 'Elys Network' + "address": "https://rpc.testnet.elys.network", + "provider": "Elys Network" }, { - address: 'https://elys-testnet-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://elys-testnet-rpc.staketab.org:443", + "provider": "Staketab" } ], - rest: [ + "rest": [ { - address: 'https://api.testnet.elys.network', - provider: 'Elys Network' + "address": "https://api.testnet.elys.network", + "provider": "Elys Network" }, { - address: 'https://elys.api.t.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://elys.api.t.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://elys-testnet-rest.staketab.org', - provider: 'Staketab' + "address": "https://elys-testnet-rest.staketab.org", + "provider": "Staketab" } ], - grpc: [ + "grpc": [ { - address: 'services.staketab.com:9390', - provider: 'Staketab' + "address": "services.staketab.com:9390", + "provider": "Staketab" } ] }, - explorers: [ + "explorers": [ { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Elys-Testnet', - tx_page: 'https://explorer.stavr.tech/Elys-Testnet/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Elys-Testnet/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Elys-Testnet", + "tx_page": "https://explorer.stavr.tech/Elys-Testnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Elys-Testnet/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://testnet.elys.network/elys', - tx_page: 'https://testnet.elys.network/elys/tx/${txHash}' + "kind": "ping.pub", + "url": "https://testnet.elys.network/elys", + "tx_page": "https://testnet.elys.network/elys/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'empowertestnet', - chain_id: 'circulus-1', - pretty_name: 'Empower Testnet', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'empower', - daemon_name: 'empowerd', - node_home: '$HOME/.empowerchain', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'umpwr', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/empowerchain/empowerchain', - recommended_version: 'v1.0.0-rc1', - compatible_versions: ['v1.0.0-rc1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/empowerchain/empowerchain/main/testnets/circulus-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.0-rc1', - recommended_version: 'v1.0.0-rc1', - compatible_versions: ['v1.0.0-rc1'] - } - ] - }, - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'testnet-seeds.polkachu.com:17456' - }, - { - id: '258f523c96efde50d5fe0a9faeea8a3e83be22ca', - address: 'seed.circulus-1.empower.aviaone.com:20272' - }, - { - id: 'd6a7cd9fa2bafc0087cb606de1d6d71216695c25', - address: '51.159.161.174:26656' - }, + "$schema": "../../chain.schema.json", + "chain_name": "empowertestnet", + "chain_id": "circulus-1", + "pretty_name": "Empower Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "empower", + "daemon_name": "empowerd", + "node_home": "$HOME/.empowerchain", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'testnet-seed.rhinostake.com:17456' + "denom": "umpwr", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://empower-testnet-rpc.polkachu.com:443', - provider: 'Polkachu' + "address": "https://empower-testnet-rpc.polkachu.com:443", + "provider": "Polkachu" }, { - address: 'https://empower.rpc.cumulo.com.es:443', - provider: 'Cumulo' + "address": "https://empower.rpc.cumulo.com.es:443", + "provider": "Cumulo" }, { - address: 'https://rpc-t.empower.nodestake.top:443', - provider: 'NodeStake' + "address": "https://rpc-t.empower.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://rpc-empower.nodeist.net:443', - provider: 'Nodeist' + "address": "https://rpc-empower.nodeist.net:443", + "provider": "Nodeist" }, { - address: 'https://empower-testnet.nodejumper.io:443', - provider: 'NODEJUMPER' + "address": "https://empower-testnet.nodejumper.io:443", + "provider": "NODEJUMPER" }, { - address: 'https://empower-testnet-rpc.itrocket.net:443', - provider: 'ITRocket' + "address": "https://empower-testnet-rpc.itrocket.net:443", + "provider": "ITRocket" }, { - address: 'https://rpc.circulus-1.empower.aviaone.com:443', - provider: 'AviaOne' + "address": "https://rpc.circulus-1.empower.aviaone.com:443", + "provider": "AviaOne" } ], - rest: [ + "rest": [ { - address: 'https://empower-testnet-api.polkachu.com:443', - provider: 'Polkachu' + "address": "https://empower-testnet-api.polkachu.com:443", + "provider": "Polkachu" }, { - address: 'https://empower.api.cumulo.com.es:443', - provider: 'Cumulo' + "address": "https://empower.api.cumulo.com.es:443", + "provider": "Cumulo" }, { - address: 'https://empw.api.t.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://empw.api.t.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api-t.empower.nodestake.top:443', - provider: 'NodeStake' + "address": "https://api-t.empower.nodestake.top:443", + "provider": "NodeStake" }, { - address: 'https://api-empower.nodeist.net:443', - provider: 'Nodeist' + "address": "https://api-empower.nodeist.net:443", + "provider": "Nodeist" }, { - address: 'https://empower-testnet.nodejumper.io:1317', - provider: 'NODEJUMPER' + "address": "https://empower-testnet.nodejumper.io:1317", + "provider": "NODEJUMPER" }, { - address: 'https://empower-testnet-api.itrocket.net:443', - provider: 'ITRocket' + "address": "https://empower-testnet-api.itrocket.net:443", + "provider": "ITRocket" }, { - address: 'https://api.circulus-1.empower.aviaone.com', - provider: 'AviaOne' + "address": "https://api.circulus-1.empower.aviaone.com", + "provider": "AviaOne" } ], - grpc: [ + "grpc": [ { - address: 'empower-testnet-grpc.polkachu.com:17490', - provider: 'Polkachu' + "address": "empower-testnet-grpc.polkachu.com:17490", + "provider": "Polkachu" }, { - address: 'empower.grpc.cumulo.com.es:443', - provider: 'Cumulo' + "address": "empower.grpc.cumulo.com.es:443", + "provider": "Cumulo" }, { - address: 'grpc-t.empower.nodestake.top:9090', - provider: 'NodeStake' + "address": "grpc-t.empower.nodestake.top:9090", + "provider": "NodeStake" }, { - address: 'empower-testnet.nodejumper.io:9090', - provider: 'NODEJUMPER' + "address": "empower-testnet.nodejumper.io:9090", + "provider": "NODEJUMPER" }, { - address: 'empower-testnet-grpc.itrocket.net:16090', - provider: 'ITRocket' + "address": "empower-testnet-grpc.itrocket.net:16090", + "provider": "ITRocket" }, { - address: 'grpc.circulus-1.empower.aviaone.com:443', - provider: 'AviaOne' + "address": "grpc.circulus-1.empower.aviaone.com:443", + "provider": "AviaOne" } ] }, - explorers: [ + "explorers": [ { - kind: 'exploreme', - url: 'https://empowerchain.exploreme.pro', - tx_page: 'https://empowerchain.exploreme.pro/transaction/${txHash}' + "kind": "exploreme", + "url": "https://empowerchain.exploreme.pro", + "tx_page": "https://empowerchain.exploreme.pro/transaction/${txHash}" }, { - kind: 'ping.pub', - url: 'https://exp.nodeist.net/Empower', - tx_page: 'https://exp.nodeist.net/Empower/tx/${txHash}' + "kind": "ping.pub", + "url": "https://exp.nodeist.net/Empower", + "tx_page": "https://exp.nodeist.net/Empower/tx/${txHash}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Empower', - tx_page: 'https://explorer.stavr.tech/Empower/tx/${txHash}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Empower", + "tx_page": "https://explorer.stavr.tech/Empower/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://explorer.nodestake.top/empower-testnet', - tx_page: 'https://explorer.nodestake.top/empower-testnet/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explorer.nodestake.top/empower-testnet", + "tx_page": "https://explorer.nodestake.top/empower-testnet/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://testnet.itrocket.net/empower/staking', - tx_page: 'https://testnet.itrocket.net/empower/staking/tx/${txHash}' + "kind": "ping.pub", + "url": "https://testnet.itrocket.net/empower/staking", + "tx_page": "https://testnet.itrocket.net/empower/staking/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://explorer.stavr.tech/empower', - tx_page: 'https://explorer.stavr.tech/empower/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explorer.stavr.tech/empower", + "tx_page": "https://explorer.stavr.tech/empower/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'entrypointtestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'EntryPoint Testnet', - chain_id: 'entrypoint-pubtest-2', - bech32_prefix: 'entrypoint', - daemon_name: 'entrypointd', - node_home: '$HOME/.entrypointd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: - 'ibc/8A138BC76D0FB2665F8937EC2BF01B9F6A714F6127221A0E155106A45E09BCC5', - low_gas_price: 0.01, - average_gas_price: 0.01, - high_gas_price: 0.02 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uentry' - } - ] - }, - codebase: { - git_repo: 'https://github.com/entrypoint-zone/testnets', - recommended_version: 'v1.2.0', - compatible_versions: ['v1.2.0'], - cosmos_sdk_version: '0.47.4', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/entrypoint-zone/testnets/2f2bffec8e73db30886bffa67fda1a242a6dc1d1/entrypoint-pubtest-2/genesis.json' - }, - versions: [ - { - name: 'v1.1.1', - recommended_version: 'v1.1.1', - compatible_versions: ['v1.1.1'], - cosmos_sdk_version: '0.47.4', - consensus: { - type: 'cometbft', - version: '0.37.2' - } - }, + "$schema": "../../chain.schema.json", + "chain_name": "entrypointtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "EntryPoint Testnet", + "chain_id": "entrypoint-pubtest-2", + "bech32_prefix": "entrypoint", + "daemon_name": "entrypointd", + "node_home": "$HOME/.entrypointd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v1.2.0', - recommended_version: 'v1.2.0', - compatible_versions: ['v1.2.0'], - cosmos_sdk_version: '0.47.4', - consensus: { - type: 'cometbft', - version: '0.37.2' - } + "denom": "ibc/8A138BC76D0FB2665F8937EC2BF01B9F6A714F6127221A0E155106A45E09BCC5", + "low_gas_price": 0.01, + "average_gas_price": 0.01, + "high_gas_price": 0.02 } ] }, - apis: { - rpc: [ + "staking": { + "staking_tokens": [ { - address: 'https://testnet-rpc.entrypoint.zone', - provider: 'Simply Staking' + "denom": "uentry" + } + ] + }, + "codebase": { + "cosmos_sdk_version": "0.47.4" + }, + "apis": { + "rpc": [ + { + "address": "https://testnet-rpc.entrypoint.zone", + "provider": "Simply Staking" } ], - rest: [ + "rest": [ { - address: 'https://entry.api.t.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://entry.api.t.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://testnet-rest.entrypoint.zone', - provider: 'Simply Staking' + "address": "https://testnet-rest.entrypoint.zone", + "provider": "Simply Staking" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entrypoint-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entrypoint-chain-logo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entrypoint-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entrypoint-chain-logo.svg" }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://explorer.entrypoint.zone/entrypoint', - tx_page: 'https://explorer.entrypoint.zone/entrypoint/tx/${txHash}', - account_page: - 'https://explorer.entrypoint.zone/entrypoint/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://explorer.entrypoint.zone/entrypoint", + "tx_page": "https://explorer.entrypoint.zone/entrypoint/tx/${txHash}", + "account_page": "https://explorer.entrypoint.zone/entrypoint/account/${accountAddress}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Entrypoint-Testnet', - tx_page: 'https://explorer.stavr.tech/Entrypoint-Testnet/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Entrypoint-Testnet/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Entrypoint-Testnet", + "tx_page": "https://explorer.stavr.tech/Entrypoint-Testnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Entrypoint-Testnet/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://testnet.ping.pub/entrypoint', - tx_page: 'https://testnet.ping.pub/entrypoint/tx/${txHash}', - account_page: - 'https://testnet.ping.pub/entrypoint/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://testnet.ping.pub/entrypoint", + "tx_page": "https://testnet.ping.pub/entrypoint/tx/${txHash}", + "account_page": "https://testnet.ping.pub/entrypoint/account/${accountAddress}" } ], - keywords: ['testnet'], - images: [ + "keywords": [ + "testnet" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entrypoint-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entrypoint-chain-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entrypoint-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/entrypointtestnet/images/entrypoint-chain-logo.svg" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'evmostestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Evmos Testnet', - chain_id: 'evmos_9000-4', - bech32_prefix: 'evmos', - daemon_name: 'evmosd', - node_home: '$HOME/.evmosd', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'atevmos', - low_gas_price: 20000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "evmostestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Evmos Testnet", + "chain_id": "evmos_9000-4", + "bech32_prefix": "evmos", + "daemon_name": "evmosd", + "node_home": "$HOME/.evmosd", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'atevmos' + "denom": "atevmos", + "low_gas_price": 20000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - codebase: { - git_repo: 'https://github.com/evmos/evmos', - recommended_version: 'v12.0.0-rc4', - compatible_versions: ['v12.0.0-rc4'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: 'v6.1.0', - genesis: { - genesis_url: - 'https://github.com/evmos/testnets/raw/main/evmos_9000-4/genesis.zip' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v11.0.0-rc3', - recommended_version: 'v11.0.0-rc3', - compatible_versions: ['v11.0.0-rc3'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: 'v6.1.0' - }, - { - name: 'v12.0.0', - recommended_version: 'v12.0.0-rc4', - compatible_versions: ['v12.0.0-rc4'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: 'v6.1.0' + "denom": "atevmos" } ] }, - peers: { - seeds: [], - persistent_peers: [ - { - id: 'b7635a113a52d0d25c82267de0648e71e46dc584', - address: '167.99.182.201:46656', - provider: 'coldy' - }, - { - id: '005efaae1ae29f95edea5f3729ce7e75511e5d3d', - address: '65.108.225.158:13456', - provider: 'Polkachu' - } - ] + "codebase": { + "cosmos_sdk_version": "0.46" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://evmos.test.rpc.coldyvalidator.net', - provider: 'coldy' + "address": "https://evmos.test.rpc.coldyvalidator.net", + "provider": "coldy" }, { - address: 'https://evmos-testnet-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://evmos-testnet-rpc.polkachu.com", + "provider": "Polkachu" } ], - rest: [ + "rest": [ { - address: 'https://evmos.test.api.coldyvalidator.net', - provider: 'coldy' + "address": "https://evmos.test.api.coldyvalidator.net", + "provider": "coldy" }, { - address: 'https://evmos-testnet-api.polkachu.com', - provider: 'Polkachu' + "address": "https://evmos-testnet-api.polkachu.com", + "provider": "Polkachu" } ], - grpc: [ + "grpc": [ { - address: 'https://evmos.test.grpc.coldyvalidator.net', - provider: 'coldy' + "address": "https://evmos.test.grpc.coldyvalidator.net", + "provider": "coldy" } ] }, - explorers: [ + "explorers": [ { - kind: 'Mintscan', - url: 'https://testnet.mintscan.io/evmos-testnet', - tx_page: 'https://testnet.mintscan.io/evmos-testnet/txs/${txHash}' + "kind": "Mintscan", + "url": "https://testnet.mintscan.io/evmos-testnet", + "tx_page": "https://testnet.mintscan.io/evmos-testnet/txs/${txHash}" }, { - kind: 'NodesGuru', - url: 'https://testnet.evmos.explorers.guru/', - tx_page: 'https://testnet.evmos.explorers.guru/transaction/${txHash}' + "kind": "NodesGuru", + "url": "https://testnet.evmos.explorers.guru/", + "tx_page": "https://testnet.evmos.explorers.guru/transaction/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'fetchhubtestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Fetch.ai Testnet', - chain_id: 'dorado-1', - bech32_prefix: 'fetch', - daemon_name: 'fetchd', - node_home: '$HOME/.fetchd', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'atestfet', - low_gas_price: 0.025, - average_gas_price: 0.025, - high_gas_price: 0.035 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "fetchhubtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Fetch.ai Testnet", + "chain_id": "dorado-1", + "bech32_prefix": "fetch", + "daemon_name": "fetchd", + "node_home": "$HOME/.fetchd", + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'atestfet' + "denom": "atestfet", + "low_gas_price": 0.025, + "average_gas_price": 0.025, + "high_gas_price": 0.035 } ] }, - codebase: { - git_repo: 'https://github.com/fetchai/fetchd', - recommended_version: 'v0.10.5', - compatible_versions: ['v0.10.5'], - genesis: { - genesis_url: - 'https://storage.googleapis.com/fetch-ai-testnet-genesis/genesis-dorado-827201.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.10.5', - recommended_version: 'v0.10.5', - compatible_versions: ['v0.10.5'] + "denom": "atestfet" } ] }, - peers: { - seeds: [ + "codebase": {}, + "apis": { + "rpc": [ { - id: 'eb9b9717975b49a57e62ea93aa4480e091ae0660', - address: 'connect-dorado.fetch.ai:36556', - provider: 'fetch.ai' - }, - { - id: '46d2f86a255ece3daf244e2ca11d5be0f16cb633', - address: 'connect-dorado.fetch.ai:36557', - provider: 'fetch.ai' - }, - { - id: '066fc564979b1f3173615f101b62448ac7e00eb1', - address: 'connect-dorado.fetch.ai:36558', - provider: 'fetch.ai' - } - ], - persistent_peers: [] - }, - apis: { - rpc: [ - { - address: 'https://rpc-dorado.fetch.ai:443', - provider: 'fetch.ai' + "address": "https://rpc-dorado.fetch.ai:443", + "provider": "fetch.ai" } ], - rest: [ + "rest": [ { - address: 'https://rest-dorado.fetch.ai', - provider: 'fetch.ai' + "address": "https://rest-dorado.fetch.ai", + "provider": "fetch.ai" } ], - grpc: [ + "grpc": [ { - address: 'grpc-dorado.fetch.ai:443', - provider: 'fetch.ai' + "address": "grpc-dorado.fetch.ai:443", + "provider": "fetch.ai" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://explore-dorado.fetch.ai', - tx_page: 'https://explore-dorado.fetch.ai/transactions/${txHash}' + "kind": "bigdipper", + "url": "https://explore-dorado.fetch.ai", + "tx_page": "https://explore-dorado.fetch.ai/transactions/${txHash}" }, { - kind: 'azoyalabs', - url: 'https://fetchstation.azoyalabs.com/testnet', - tx_page: - 'https://fetchstation.azoyalabs.com/testnet/explorer/transactions/${txHash}', - account_page: - 'https://fetchstation.azoyalabs.com/testnet/explorer/address/${accountAddress}' + "kind": "azoyalabs", + "url": "https://fetchstation.azoyalabs.com/testnet", + "tx_page": "https://fetchstation.azoyalabs.com/testnet/explorer/transactions/${txHash}", + "account_page": "https://fetchstation.azoyalabs.com/testnet/explorer/address/${accountAddress}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'gitopiatestnet', - chain_id: 'gitopia-janus-testnet-2', - pretty_name: 'Gitopia Testnet', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'gitopia', - daemon_name: 'gitopiad', - node_home: '$HOME/.gitopia', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'utlore', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://gitopia.com/gitopia', - recommended_version: 'v1.2.0', - compatible_versions: ['v1.2.0'], - genesis: { - genesis_url: - 'https://server.gitopia.com/raw/gitopia/testnets/master/gitopia-janus-testnet-2/genesis.json.gz' - }, - versions: [ - { - name: 'v1.2.0', - recommended_version: 'v1.2.0', - compatible_versions: ['v1.2.0'] - } - ] - }, - peers: { - seeds: [ - { - id: '399d4e19186577b04c23296c4f7ecc53e61080cb', - address: 'seed.gitopia.com:26656' - } - ], - persistent_peers: [ + "$schema": "../../chain.schema.json", + "chain_name": "gitopiatestnet", + "chain_id": "gitopia-janus-testnet-2", + "pretty_name": "Gitopia Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "gitopia", + "daemon_name": "gitopiad", + "node_home": "$HOME/.gitopia", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '6146658ffe2d148524a9fdcc3d701440053442bf', - address: 'gitopia-testnet.nodejumper.io:30656', - provider: 'NODEJUMPER' + "denom": "utlore", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://gitopia-testnet.nodejumper.io', - provider: 'NODEJUMPER' + "address": "https://gitopia-testnet.nodejumper.io", + "provider": "NODEJUMPER" } ], - rest: [ + "rest": [ { - address: 'https://gitopia-testnet.nodejumper.io:1317', - provider: 'NODEJUMPER' + "address": "https://gitopia-testnet.nodejumper.io:1317", + "provider": "NODEJUMPER" } ], - grpc: [ + "grpc": [ { - address: 'https://gitopia-testnet.nodejumper.io:9090', - provider: 'NODEJUMPER' + "address": "https://gitopia-testnet.nodejumper.io:9090", + "provider": "NODEJUMPER" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorer.humans.zone', - url: 'https://gitopia.explorers.guru/', - tx_page: 'https://gitopia.explorers.guru/transaction/${txHash}' + "kind": "explorer.humans.zone", + "url": "https://gitopia.explorers.guru/", + "tx_page": "https://gitopia.explorers.guru/transaction/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'humanstestnet', - chain_id: 'testnet-1', - pretty_name: 'Humans AI Testnet', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'humans', - daemon_name: 'humansd', - node_home: '$HOME/.humans', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uheart', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/humansdotai/humans', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - genesis: { - genesis_url: 'https://rpc-testnet.humans.zone/genesis' - }, - versions: [ + "$schema": "../../chain.schema.json", + "chain_name": "humanstestnet", + "chain_id": "testnet-1", + "pretty_name": "Humans AI Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "humans", + "daemon_name": "humansd", + "node_home": "$HOME/.humans", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'] + "denom": "uheart", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://humans-testnet.nodejumper.io', - provider: 'NODEJUMPER' + "address": "https://humans-testnet.nodejumper.io", + "provider": "NODEJUMPER" } ], - rest: [ + "rest": [ { - address: 'https://humans-testnet.nodejumper.io:1317', - provider: 'NODEJUMPER' + "address": "https://humans-testnet.nodejumper.io:1317", + "provider": "NODEJUMPER" } ], - grpc: [ + "grpc": [ { - address: 'https://humans-testnet.nodejumper.io:9090', - provider: 'NODEJUMPER' + "address": "https://humans-testnet.nodejumper.io:9090", + "provider": "NODEJUMPER" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorer.humans.zone', - url: 'https://explorer.humans.zone/', - tx_page: 'https://explorer.humans.zone/humans-testnet/tx/${txHash}' + "kind": "explorer.humans.zone", + "url": "https://explorer.humans.zone/", + "tx_page": "https://explorer.humans.zone/humans-testnet/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'hypersigntestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'hypersign', - chain_id: 'jagrat', - bech32_prefix: 'hid', - daemon_name: 'hid-noded', - node_home: '$HOME/.hid-node', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uhid', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0.02, - high_gas_price: 0.05 - } - ] - }, - codebase: { - git_repo: 'https://github.com/hypersign-protocol/hid-node', - recommended_version: 'v0.1.5', - compatible_versions: ['v0.1.5'], - binaries: { - 'linux/amd64': - 'https://github.com/hypersign-protocol/hid-node/releases/download/v0.1.5/hid-noded-0.1.5-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/hypersign-protocol/hid-node/releases/download/v0.1.5/hid-noded-0.1.5-linux-arm64.tar.gz', - 'darwin/arm64': - 'https://github.com/hypersign-protocol/hid-node/releases/download/v0.1.5/hid-noded-0.1.5-darwin-arm64.tar.gz' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/hypersign-protocol/networks/master/testnet/jagrat/final_genesis.json' - }, - versions: [ - { - name: 'v0.1.5', - recommended_version: 'v0.1.5', - compatible_versions: ['v0.1.5'], - binaries: { - 'linux/amd64': - 'https://github.com/hypersign-protocol/hid-node/releases/download/v0.1.5/hid-noded-0.1.5-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/hypersign-protocol/hid-node/releases/download/v0.1.5/hid-noded-0.1.5-linux-arm64.tar.gz', - 'darwin/arm64': - 'https://github.com/hypersign-protocol/hid-node/releases/download/v0.1.5/hid-noded-0.1.5-darwin-arm64.tar.gz' - } - } - ] - }, - peers: { - seeds: [ - { - id: 'df949a46ae6529ae1e09b034b49716468d5cc7e9', - address: 'testnet-seeds.stakerhouse.com:11456', - provider: 'StakerHouse' - } - ], - persistent_peers: [ - { - id: '70db7f0ae54e329474ecd0649d04884bc6f6abe9', - address: 'hid.peer.stavr.tech:11056', - provider: '🔥STAVR🔥' - }, + "$schema": "../../chain.schema.json", + "chain_name": "hypersigntestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "hypersign", + "chain_id": "jagrat", + "bech32_prefix": "hid", + "daemon_name": "hid-noded", + "node_home": "$HOME/.hid-node", + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: 'd7c9b9a3c3a6c5f4ccdfb37a8358755b277271c1', - address: '3.110.226.164:26656', - provider: 'hypersign' + "denom": "uhid", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0.02, + "high_gas_price": 0.05 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.jagrat.hypersign.id', - provider: 'hypersign' + "address": "https://rpc.jagrat.hypersign.id", + "provider": "hypersign" }, { - address: 'http://hid.rpc.t.stavr.tech:11057', - provider: '🔥STAVR🔥' + "address": "http://hid.rpc.t.stavr.tech:11057", + "provider": "🔥STAVR🔥" }, { - address: 'https://hypersign-testnet-rpc.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://hypersign-testnet-rpc.stakerhouse.com", + "provider": "StakerHouse" } ], - rest: [ + "rest": [ { - address: 'https://api.jagrat.hypersign.id', - provider: 'hypersign' + "address": "https://api.jagrat.hypersign.id", + "provider": "hypersign" }, { - address: 'https://hid.api.t.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://hid.api.t.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://hypersign-testnet-rest.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://hypersign-testnet-rest.stakerhouse.com", + "provider": "StakerHouse" } ], - grpc: [ + "grpc": [ { - address: 'grpc.jagrat.hypersign.id:5099', - provider: 'hypersign' + "address": "grpc.jagrat.hypersign.id:5099", + "provider": "hypersign" }, { - address: 'http://hid.grpc.t.stavr.tech:8022', - provider: '🔥STAVR🔥' + "address": "http://hid.grpc.t.stavr.tech:8022", + "provider": "🔥STAVR🔥" }, { - address: 'hypersign-testnet-grpc.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "hypersign-testnet-grpc.stakerhouse.com:443", + "provider": "StakerHouse" } ] }, - explorers: [ + "explorers": [ { - kind: 'Ping Pub', - url: 'https://explorer.hypersign.id/hypersign-testnet', - tx_page: 'https://explorer.hypersign.id/hypersign-testnet/tx/${txHash}' + "kind": "Ping Pub", + "url": "https://explorer.hypersign.id/hypersign-testnet", + "tx_page": "https://explorer.hypersign.id/hypersign-testnet/tx/${txHash}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/HyperSign', - tx_page: 'https://explorer.stavr.tech/HyperSign/tx/${txHash}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/HyperSign", + "tx_page": "https://explorer.stavr.tech/HyperSign/tx/${txHash}" }, { - kind: 'cosmotracker', - url: 'https://cosmotracker.com/hypersign', - tx_page: 'https://cosmotracker.com/hypersign/tx/${txHash}' + "kind": "cosmotracker", + "url": "https://cosmotracker.com/hypersign", + "tx_page": "https://cosmotracker.com/hypersign/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'impacthubdevnet', - status: 'live', - network_type: 'devnet', - website: 'https://www.ixo.world/', - pretty_name: 'ixo', - chain_id: 'devnet-1', - bech32_prefix: 'ixo', - daemon_name: 'ixod', - node_home: '$HOME/.ixod', - key_algos: ['secp256k1', 'ed25519'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uixo', - fixed_min_gas_price: 0.015, - low_gas_price: 0.015, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "impacthubdevnet", + "status": "live", + "network_type": "devnet", + "website": "https://www.ixo.world/", + "pretty_name": "ixo", + "chain_id": "devnet-1", + "bech32_prefix": "ixo", + "daemon_name": "ixod", + "node_home": "$HOME/.ixod", + "key_algos": [ + "secp256k1", + "ed25519" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uixo' + "denom": "uixo", + "fixed_min_gas_price": 0.015, + "low_gas_price": 0.015, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - codebase: { - git_repo: 'https://github.com/ixofoundation/ixo-blockchain', - recommended_version: 'v0.20.0', - compatible_versions: ['v0.20.0'], - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.20.0', - recommended_version: 'v0.20.0', - compatible_versions: ['v0.20.0'] + "denom": "uixo" } ] }, - peers: { - seeds: [], - persistent_peers: [] - }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://devnet.ixo.earth/rpc/', - provider: 'ixoworld' + "address": "https://devnet.ixo.earth/rpc/", + "provider": "ixoworld" } ], - rest: [ + "rest": [ { - address: 'https://devnet.ixo.earth/rest/', - provider: 'ixoworld' + "address": "https://devnet.ixo.earth/rest/", + "provider": "ixoworld" } ], - grpc: [] + "grpc": [] }, - explorers: [ + "explorers": [ { - kind: 'ixoworld', - url: 'https://blockscan.devnet.ixo.earth/ixo', - tx_page: - 'https://blockscan.devnet.ixo.earth/ixo/transactions/${txHash}', - account_page: - 'https://blockscan.devnet.ixo.earth/ixo/accounts/${accountAddress}' + "kind": "ixoworld", + "url": "https://blockscan.devnet.ixo.earth/ixo", + "tx_page": "https://blockscan.devnet.ixo.earth/ixo/transactions/${txHash}", + "account_page": "https://blockscan.devnet.ixo.earth/ixo/accounts/${accountAddress}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'impacthubtestnet', - status: 'live', - network_type: 'testnet', - website: 'https://www.ixo.world/', - pretty_name: 'ixo', - chain_id: 'pandora-8', - bech32_prefix: 'ixo', - daemon_name: 'ixod', - node_home: '$HOME/.ixod', - key_algos: ['secp256k1', 'ed25519'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uixo', - fixed_min_gas_price: 0.015, - low_gas_price: 0.015, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "impacthubtestnet", + "status": "live", + "network_type": "testnet", + "website": "https://www.ixo.world/", + "pretty_name": "ixo", + "chain_id": "pandora-8", + "bech32_prefix": "ixo", + "daemon_name": "ixod", + "node_home": "$HOME/.ixod", + "key_algos": [ + "secp256k1", + "ed25519" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uixo' + "denom": "uixo", + "fixed_min_gas_price": 0.015, + "low_gas_price": 0.015, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - codebase: { - git_repo: 'https://github.com/ixofoundation/ixo-blockchain', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/ixofoundation/genesis/main/pandora-8/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.20.0', - recommended_version: 'v0.20.1', - compatible_versions: ['v0.20.0', 'v0.20.1'], - next_version_name: 'v2' - }, - { - name: 'v2', - proposal: 61, - height: 2193200, - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - next_version_name: '' + "denom": "uixo" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' - }, - peers: { - seeds: [], - persistent_peers: [ - { - id: '650b6c33030c93c1c5aed92df52c08860c20f5b4', - address: '136.244.117.176:26656', - provider: 'ixoworld' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.testnet.ixo.earth/', - provider: 'ixoworld' + "address": "https://rpc.testnet.ixo.earth/", + "provider": "ixoworld" } ], - rest: [ + "rest": [ { - address: 'https://testnet.ixo.earth/rest/', - provider: 'ixoworld' + "address": "https://testnet.ixo.earth/rest/", + "provider": "ixoworld" } ], - grpc: [] + "grpc": [] }, - explorers: [ + "explorers": [ { - kind: 'ixoworld', - url: 'https://blockscan.testnet.ixo.earth/ixo', - tx_page: - 'https://blockscan.testnet.ixo.earth/ixo/transactions/${txHash}', - account_page: - 'https://blockscan.testnet.ixo.earth/ixo/accounts/${accountAddress}' + "kind": "ixoworld", + "url": "https://blockscan.testnet.ixo.earth/ixo", + "tx_page": "https://blockscan.testnet.ixo.earth/ixo/transactions/${txHash}", + "account_page": "https://blockscan.testnet.ixo.earth/ixo/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'imversedtestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Imversed Testnet', - chain_id: 'imversed-test-1', - bech32_prefix: 'imv', - daemon_name: 'imversed', - node_home: '$HOME/.imversed', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'nimv', - fixed_min_gas_price: 0.001 - } - ] - }, - codebase: { - git_repo: 'https://github.com/imversed/imversed', - recommended_version: 'v2.4.0', - compatible_versions: ['v2.4.0'], - binaries: { - 'linux/amd64': 'https://s.imversed.com/imversed_linux_amd64.tar.gz', - 'darwin/arm64': 'https://s.imversed.com/imversed_darwin_arm64.tar.gz', - 'darwin/amd64': 'https://s.imversed.com/imversed_darwin_amd64.tar.gz', - 'windows/amd64': 'https://s.imversed.com/imversed_windows_amd64.tar.gz' - }, - genesis: { - genesis_url: 'https://s.imversed.com/test-net/genesis.json' - }, - versions: [ - { - name: 'v2.4.0', - recommended_version: 'v2.4.0', - compatible_versions: ['v2.4.0'], - binaries: { - 'linux/amd64': 'https://s.imversed.com/imversed_linux_amd64.tar.gz', - 'darwin/arm64': - 'https://s.imversed.com/imversed_darwin_arm64.tar.gz', - 'darwin/amd64': - 'https://s.imversed.com/imversed_darwin_amd64.tar.gz', - 'windows/amd64': - 'https://s.imversed.com/imversed_windows_amd64.tar.gz' - } - } - ] - }, - peers: { - persistent_peers: [ + "$schema": "../../chain.schema.json", + "chain_name": "imversedtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Imversed Testnet", + "chain_id": "imversed-test-1", + "bech32_prefix": "imv", + "daemon_name": "imversed", + "node_home": "$HOME/.imversed", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '9b1ea21b9a1d098169c19e5d6bfa1397bba5c655', - address: '34.133.39.91:26656', - provider: 'imversed' + "denom": "nimv", + "fixed_min_gas_price": 0.001 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://tx-endpoint-test.imversed.com/', - provider: 'imversed' + "address": "https://tx-endpoint-test.imversed.com/", + "provider": "imversed" } ], - rest: [ + "rest": [ { - address: 'https://query-endpoint-test.imversed.com/', - provider: 'imversed' + "address": "https://query-endpoint-test.imversed.com/", + "provider": "imversed" } ], - grpc: [ + "grpc": [ { - address: 'http://qs.imversed.com:9090', - provider: 'imversed' + "address": "http://qs.imversed.com:9090", + "provider": "imversed" } ] }, - explorers: [ + "explorers": [ { - kind: 'Big Dipper', - url: 'https://tex-s.imversed.com', - tx_page: 'https://tex-s.imversed.com/transactions/${txHash}' + "kind": "Big Dipper", + "url": "https://tex-s.imversed.com", + "tx_page": "https://tex-s.imversed.com/transactions/${txHash}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'injectivetestnet', - status: 'live', - network_type: 'testnet', - website: 'https://injective.com', - pretty_name: 'Injective', - chain_id: 'injective-888', - bech32_prefix: 'inj', - extra_codecs: ['injective'], - slip44: 60, - daemon_name: 'injectived', - node_home: '$HOME/.injectived', - fees: { - fee_tokens: [ - { - denom: 'inj', - fixed_min_gas_price: 500000000, - low_gas_price: 500000000, - average_gas_price: 700000000, - high_gas_price: 900000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'inj' - } - ] - }, - codebase: { - git_repo: 'https://github.com/InjectiveLabs/testnet', - recommended_version: 'v1.11.1', - compatible_versions: ['v1.11.1'], - binaries: { - 'linux/amd64': - 'https://github.com/InjectiveLabs/testnet/releases/download/v1.11.1-1685205489/linux-amd64.zip', - 'darwin/amd64': - 'https://github.com/InjectiveLabs/testnet/releases/download/v1.11.1-1685205489/darwin-amd64.zip' - }, - genesis: { - genesis_url: - 'https://injective-snapshots.s3.amazonaws.com/testnet/genesis.json' - }, - versions: [ - { - name: 'v1.10.2', - recommended_version: 'v1.10.2', - compatible_versions: ['v1.10.2'], - binaries: { - 'linux/amd64': - 'https://github.com/InjectiveLabs/testnet/releases/download/v1.10.2-1678712142/linux-amd64.zip', - 'darwin/amd64': - 'https://github.com/InjectiveLabs/testnet/releases/download/v1.10.2-1678712142/darwin-amd64.zip' - }, - next_version_name: 'v1.11.1' - }, - { - name: 'v1.11.1', - recommended_version: 'v1.11.1', - compatible_versions: ['v1.11.1'], - binaries: { - 'linux/amd64': - 'https://github.com/InjectiveLabs/testnet/releases/download/v1.11.1-1685205489/linux-amd64.zip', - 'darwin/amd64': - 'https://github.com/InjectiveLabs/testnet/releases/download/v1.11.1-1685205489/darwin-amd64.zip' - } + "$schema": "../chain.schema.json", + "chain_name": "injectivetestnet", + "status": "live", + "network_type": "testnet", + "website": "https://injective.com", + "pretty_name": "Injective", + "chain_id": "injective-888", + "bech32_prefix": "inj", + "extra_codecs": [ + "injective" + ], + "slip44": 60, + "daemon_name": "injectived", + "node_home": "$HOME/.injectived", + "fees": { + "fee_tokens": [ + { + "denom": "inj", + "fixed_min_gas_price": 500000000, + "low_gas_price": 500000000, + "average_gas_price": 700000000, + "high_gas_price": 900000000 } ] }, - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'testnet-seeds.polkachu.com:14356', - provider: 'polkachu' - } - ], - persistent_peers: [ - { - id: 'e5cc63a9117e6f372169f15774ea4f7c5177da25', - address: '34.23.245.175:26656', - provider: 'injectivelabs.org' - }, - { - id: '5bf72750f7e015ccfd65246c9f16185144867aff', - address: '35.231.107.231:26656', - provider: 'injectivelabs.org' - }, - { - id: '588dd6d1e1a338d1524efcfbd1c2a9bfc5df33d2', - address: '104.196.43.6:26656', - provider: 'injectivelabs.org' - }, - { - id: '8a05cc5bc466169a7332287ddce4cd8995684d1a', - address: '34.73.247.128:26656', - provider: 'injectivelabs.org' - }, - { - id: '0a2af0f999b08ccaf8825198d9aafb8b947c003f', - address: '34.73.57.164:26656', - provider: 'injectivelabs.org' - }, + "staking": { + "staking_tokens": [ { - id: 'd0c2407f4b1cef137d9d3ada69478234ad2a28f4', - address: '34.73.57.164:26656', - provider: 'injectivelabs.org' + "denom": "inj" } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://injective-testnet-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://injective-testnet-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://k8s.testnet.tm.injective.network:443', - provider: 'injectiveLabs' + "address": "https://k8s.testnet.tm.injective.network:443", + "provider": "injectiveLabs" }, { - address: 'https://testnet.tm.injective.network', - provider: 'injectiveLabs' + "address": "https://testnet.tm.injective.network", + "provider": "injectiveLabs" } ], - rest: [ + "rest": [ { - address: 'https://injective-testnet-api.polkachu.com', - provider: 'Polkachu' + "address": "https://injective-testnet-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://k8s.testnet.lcd.injective.network', - provider: 'injectiveLabs' + "address": "https://k8s.testnet.lcd.injective.network", + "provider": "injectiveLabs" }, { - address: 'https://testnet.grpc.injective.network', - provider: 'injectiveLabs' + "address": "https://testnet.grpc.injective.network", + "provider": "injectiveLabs" } ], - grpc: [ + "grpc": [ { - address: 'injective-testnet-grpc.polkachu.com:14390', - provider: 'Polkachu' + "address": "injective-testnet-grpc.polkachu.com:14390", + "provider": "Polkachu" }, { - address: 'k8s.testnet.chain.grpc.injective.network:443', - provider: 'injectiveLabs' + "address": "k8s.testnet.chain.grpc.injective.network:443", + "provider": "injectiveLabs" }, { - address: 'https://testnet.grpc.injective.network', - provider: 'injectiveLabs' + "address": "https://testnet.grpc.injective.network", + "provider": "injectiveLabs" } ] }, - explorers: [ + "explorers": [ { - kind: 'injectiveprotocol', - url: 'https://testnet.explorer.injective.network/', - tx_page: - 'https://testnet.explorer.injective.network/transaction/${txHash}' + "kind": "injectiveprotocol", + "url": "https://testnet.explorer.injective.network/", + "tx_page": "https://testnet.explorer.injective.network/transaction/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'jackaltestnet', - chain_id: 'canine-1', - website: 'https://jackalprotocol.com', - pretty_name: 'Jackal', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'jkl', - daemon_name: 'canined', - node_home: '$HOME/.canine', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ujkl', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/JackalLabs/canine-chain', - recommended_version: 'v1.2.2-alpha.1', - compatible_versions: ['v1.2.2-alpha.1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/JackalLabs/woof/master/genesis/woof-final.json' - }, - binaries: { - 'linux/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v1.2.2-alpha.1/canined-Linux', - 'darwin/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v1.2.2-alpha.1/canined-macOS' - }, - versions: [ - { - name: 'v1.2.2-alpha.1', - recommended_version: 'v1.2.2-alpha.1', - compatible_versions: ['v1.2.2-alpha.1'], - binaries: { - 'linux/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v1.2.2-alpha.1/canined-Linux', - 'darwin/amd64': - 'https://github.com/JackalLabs/canine-chain/releases/download/v1.2.2-alpha.1/canined-macOS' - } - } - ] - }, - peers: { - seeds: [ - { - id: '052c498dd1cc603b4d32f772035b6a8ca902def3', - address: '23.88.73.211:26656' - }, - { - id: '0bdeaaa237b41e3b964a027a110c6ab5bf561177', - address: '209.34.206.38:26656' - }, - { - id: 'bf7ee27a24e7d5f45653206fbbda8c4b716b74b1', - address: '89.58.38.59:26656' - }, - { - id: '9eecc498dd2542c862f5bfb84ed7d2e1e3d922ab', - address: '34.201.48.14:26656' - }, - { - id: 'bf62b185eef3c185f8ebf81d5cf54bdc064b21d8', - address: '85.10.216.157:26656' - }, - { - id: '43e800018a5b52ba119a5410ff45cbeb63182cc8', - address: '207.244.127.5:26656' - }, - { - id: '942087a9665e8235f8037d0b9d2a3f8a8c3d562b', - address: '104.207.138.181:26656' - }, - { - id: '9d0094606fe8748f1c06b494f7c0cbbd44808ec6', - address: '131.153.59.6:26656' - }, - { - id: '6071fe2fc7e4f49caa4b1fd1cfe19007152312e0', - address: '34.76.87.33:26656' - }, - { - id: '3f58d7c35ad55ef6cea94f7aa2ffe79df1c01768', - address: '78.107.253.133:26656' - }, - { - id: '46cb18ca32ad7329cb82a10316087794ef12150f', - address: '185.107.57.74:26656' - } - ], - persistent_peers: [ - { - id: '052c498dd1cc603b4d32f772035b6a8ca902def3', - address: '23.88.73.211:26656' - }, - { - id: '0bdeaaa237b41e3b964a027a110c6ab5bf561177', - address: '209.34.206.38:26656' - }, - { - id: 'bf7ee27a24e7d5f45653206fbbda8c4b716b74b1', - address: '89.58.38.59:26656' - }, - { - id: '9eecc498dd2542c862f5bfb84ed7d2e1e3d922ab', - address: '34.201.48.14:26656' - }, - { - id: 'bf62b185eef3c185f8ebf81d5cf54bdc064b21d8', - address: '85.10.216.157:26656' - }, - { - id: '43e800018a5b52ba119a5410ff45cbeb63182cc8', - address: '207.244.127.5:26656' - }, - { - id: '942087a9665e8235f8037d0b9d2a3f8a8c3d562b', - address: '104.207.138.181:26656' - }, - { - id: 'ada0c72592b244cebfb28ba920f964a9d9b10c6f', - address: 'jkltest.peer.stavr.tech:19126' - }, - { - id: '9d0094606fe8748f1c06b494f7c0cbbd44808ec6', - address: '131.153.59.6:26656' - }, - { - id: '6071fe2fc7e4f49caa4b1fd1cfe19007152312e0', - address: '34.76.87.33:26656' - }, - { - id: '3f58d7c35ad55ef6cea94f7aa2ffe79df1c01768', - address: '78.107.253.133:26656' - }, + "$schema": "../../chain.schema.json", + "chain_name": "jackaltestnet", + "chain_id": "canine-1", + "website": "https://jackalprotocol.com", + "pretty_name": "Jackal", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "jkl", + "daemon_name": "canined", + "node_home": "$HOME/.canine", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '46cb18ca32ad7329cb82a10316087794ef12150f', - address: '185.107.57.74:26656' + "denom": "ujkl", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'http://jkl.rpc.t.stavr.tech:19127', - provider: '🔥STAVR🔥' + "address": "http://jkl.rpc.t.stavr.tech:19127", + "provider": "🔥STAVR🔥" }, { - address: 'https://testnet-rpc.jackalprotocol.com', - provider: 'Jackal Labs' + "address": "https://testnet-rpc.jackalprotocol.com", + "provider": "Jackal Labs" } ], - rest: [ + "rest": [ { - address: 'https://jkl.api.t.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://jkl.api.t.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://testnet-api.jackalprotocol.com', - provider: 'Jackal Labs' + "address": "https://testnet-api.jackalprotocol.com", + "provider": "Jackal Labs" } ], - grpc: [ + "grpc": [ { - address: 'http://jkl.grpc.t.stavr.tech:5913', - provider: '🔥STAVR🔥' + "address": "http://jkl.grpc.t.stavr.tech:5913", + "provider": "🔥STAVR🔥" }, { - address: 'https://testnet-grpc.jackalprotocol.com', - provider: 'Jackal Labs' + "address": "https://testnet-grpc.jackalprotocol.com", + "provider": "Jackal Labs" } ] }, - explorers: [ + "explorers": [ { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Jackal-Testnet', - tx_page: 'https://explorer.stavr.tech/Jackal-Testnet/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Jackal-Testnet/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Jackal-Testnet", + "tx_page": "https://explorer.stavr.tech/Jackal-Testnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Jackal-Testnet/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/jackal', - tx_page: 'https://ping.pub/jackal/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pub/jackal", + "tx_page": "https://ping.pub/jackal/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'junotestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Juno Testnet', - chain_id: 'uni-6', - bech32_prefix: 'juno', - daemon_name: 'junod', - node_home: '$HOME/.juno', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ujunox', - low_gas_price: 0.003, - average_gas_price: 0.0045, - high_gas_price: 0.006 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "junotestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Juno Testnet", + "chain_id": "uni-6", + "bech32_prefix": "juno", + "daemon_name": "junod", + "node_home": "$HOME/.juno", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ujunox' + "denom": "ujunox", + "low_gas_price": 0.003, + "average_gas_price": 0.0045, + "high_gas_price": 0.006 } ] }, - codebase: { - git_repo: 'https://github.com/CosmosContracts/juno', - recommended_version: 'v15.0.0-alpha.2', - compatible_versions: ['v15.0.0', 'v15.0.0-alpha.2'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '4.3.1', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/CosmosContracts/testnets/main/uni-6/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v13.0.0-beta.1', - recommended_version: 'v13.0.0-beta.1', - compatible_versions: ['v13.0.0-beta.1'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0' - }, - { - name: 'v14.0.0-alpha.1', - recommended_version: 'v14.0.0-alpha.1', - compatible_versions: ['v14.0.0-alpha.1'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0' + "denom": "ujunox" } ] }, - peers: { - seeds: [ - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'testnet-seed.rhinostake.com:12656', - provider: 'RHINO' - } - ], - persistent_peers: [ - { - id: 'c54bf418fb542634495f57a1e36c9bd057d55e1b', - address: '5.161.80.115:26656', - provider: 'Reecepbcups' - } - ] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.31" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.uni.junonetwork.io', - provider: 'Juno' + "address": "https://rpc.uni.junonetwork.io", + "provider": "Juno" }, { - address: 'https://juno-testnet-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://juno-testnet-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://uni-rpc.reece.sh', - provider: 'Reecepbcups' + "address": "https://uni-rpc.reece.sh", + "provider": "Reecepbcups" } ], - rest: [ + "rest": [ { - address: 'https://api.uni.junonetwork.io', - provider: 'Juno' + "address": "https://api.uni.junonetwork.io", + "provider": "Juno" }, { - address: 'https://juno-testnet-api.polkachu.com', - provider: 'Polkachu' + "address": "https://juno-testnet-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://juno.api.t.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://juno.api.t.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://uni-api.reece.sh', - provider: 'Reecepbcups' + "address": "https://uni-api.reece.sh", + "provider": "Reecepbcups" } ], - grpc: [ + "grpc": [ { - address: 'juno-testnet-grpc.polkachu.com:12690', - provider: 'Polkachu' + "address": "juno-testnet-grpc.polkachu.com:12690", + "provider": "Polkachu" } ] }, - explorers: [ + "explorers": [ { - kind: 'EZ Staking', - url: 'https://testnet.app.ezstaking.io/juno-testnet', - tx_page: 'https://testnet.app.ezstaking.io/juno-testnet/txs/${txHash}', - account_page: - 'https://testnet.app.ezstaking.io/juno-testnet/account/${accountAddress}' + "kind": "EZ Staking", + "url": "https://testnet.app.ezstaking.io/juno-testnet", + "tx_page": "https://testnet.app.ezstaking.io/juno-testnet/txs/${txHash}", + "account_page": "https://testnet.app.ezstaking.io/juno-testnet/account/${accountAddress}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Juno-Testnet', - tx_page: 'https://explorer.stavr.tech/Juno-Testnet/txs/${txHash}', - account_page: - 'https://explorer.stavr.tech/Juno-Testnet/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Juno-Testnet", + "tx_page": "https://explorer.stavr.tech/Juno-Testnet/txs/${txHash}", + "account_page": "https://explorer.stavr.tech/Juno-Testnet/account/${accountAddress}" }, { - kind: 'Mintscan', - url: 'https://testnet.mintscan.io/juno-testnet', - tx_page: 'https://testnet.mintscan.io/juno-testnet/txs/${txHash}' + "kind": "Mintscan", + "url": "https://testnet.mintscan.io/juno-testnet", + "tx_page": "https://testnet.mintscan.io/juno-testnet/txs/${txHash}" }, { - kind: 'NodesGuru', - url: 'https://testnet.juno.explorers.guru/', - tx_page: 'https://testnet.juno.explorers.guru/transaction/${txHash}' + "kind": "NodesGuru", + "url": "https://testnet.juno.explorers.guru/", + "tx_page": "https://testnet.juno.explorers.guru/transaction/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'kichaintestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Ki', - chain_id: 'kichain-t-4', - bech32_prefix: 'tki', - daemon_name: 'kid', - node_home: '$HOME/.kid', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'utki', - fixed_min_gas_price: 0.025 - } - ] - }, - codebase: { - git_repo: 'https://github.com/KiFoundation/ki-tools', - recommended_version: 'Testnet-3.0.0-beta', - compatible_versions: ['Testnet-3.0.0-beta'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/KiFoundation/ki-networks/v0.1/Testnet/kichain-t-4/genesis.json' - }, - versions: [ - { - name: 'Testnet-3.0.0-beta', - recommended_version: 'Testnet-3.0.0-beta', - compatible_versions: ['Testnet-3.0.0-beta'] - } - ] - }, - peers: { - seeds: [ - { - id: '381dff5439ed042353c5333e61bab1510711f2f5', - address: 'seed-testnet.blockchain.ki:6969', - provider: 'kifoundation' - } - ], - persistent_peers: [ - { - id: '46b25d81510f8dcc535ca0924961b266e4f59244', - address: '135.125.183.94:26656', - provider: 'Community' - }, - { - id: 'ada3bbf64f963e764bfe003276354bd121e80ae0', - address: '95.111.248.200:26656', - provider: 'Community' - }, - { - id: '276f6fb420b3595b63c2a13d35868cb530a31578', - address: '65.21.159.19:26656', - provider: 'Community' - }, - { - id: '7e5710ee0b1576a78a21a89e1588b6c95ee69873', - address: '194.163.137.193:26656', - provider: 'Community' - }, + "$schema": "../../chain.schema.json", + "chain_name": "kichaintestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Ki", + "chain_id": "kichain-t-4", + "bech32_prefix": "tki", + "daemon_name": "kid", + "node_home": "$HOME/.kid", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '323a5c9ccfb73573cbcd634c497b2a7405b198fa', - address: '142.132.137.114:26656', - provider: 'Community' + "denom": "utki", + "fixed_min_gas_price": 0.025 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc-challenge.blockchain.ki/', - provider: 'kifoundation' + "address": "https://rpc-challenge.blockchain.ki/", + "provider": "kifoundation" } ], - rest: [ + "rest": [ { - address: 'https://api-challenge.blockchain.ki/', - provider: 'kifoundation' + "address": "https://api-challenge.blockchain.ki/", + "provider": "kifoundation" } ] }, - explorers: [ + "explorers": [ { - kind: 'kifoundation', - url: 'https://kichain-t-4.blockchain.ki/', - tx_page: 'https://kichain-t-4.blockchain.ki/transactions/${txHash}' + "kind": "kifoundation", + "url": "https://kichain-t-4.blockchain.ki/", + "tx_page": "https://kichain-t-4.blockchain.ki/transactions/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'kujiratestnet', - chain_id: 'harpoon-4', - pretty_name: 'Kujira Harpoon', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'kujira', - daemon_name: 'kujirad', - node_home: '$HOME/.kujira', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ukuji', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/Team-Kujira/core', - recommended_version: 'v0.4.0', - compatible_versions: ['v0.4.0'], - genesis: { - genesis_url: - 'https://github.com/Team-Kujira/networks/raw/master/testnet/harpoon-4.json' - }, - versions: [ + "$schema": "../../chain.schema.json", + "chain_name": "kujiratestnet", + "chain_id": "harpoon-4", + "pretty_name": "Kujira Harpoon", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "kujira", + "daemon_name": "kujirad", + "node_home": "$HOME/.kujira", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v0.4.0', - recommended_version: 'v0.4.0', - compatible_versions: ['v0.4.0'] + "denom": "ukuji", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://kujira-testnet-rpc.polkachu.com', - provider: 'polkachu' + "address": "https://kujira-testnet-rpc.polkachu.com", + "provider": "polkachu" } ], - rest: [ + "rest": [ { - address: 'https://kujira-testnet-api.polkachu.com/', - provider: 'polkachu' + "address": "https://kujira-testnet-api.polkachu.com/", + "provider": "polkachu" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorers.guru', - url: 'https://kujira.explorers.guru', - tx_page: 'https://kujira.explorers.guru/transaction/${txHash}' + "kind": "explorers.guru", + "url": "https://kujira.explorers.guru", + "tx_page": "https://kujira.explorers.guru/transaction/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'kyvedevnet', - chain_id: 'korellia', - pretty_name: 'KYVE Korellia', - status: 'live', - network_type: 'devnet', - bech32_prefix: 'kyve', - daemon_name: 'chaind', - node_home: '$HOME/.kyve', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'tkyve', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/KYVENetwork/chain', - recommended_version: 'v0.6.3', - compatible_versions: ['v0.6.3'], - binaries: { - 'linux/amd64': - 'https://github.com/KYVENetwork/chain/releases/download/v0.6.3/chain_linux_amd64.tar.gz' - }, - genesis: { - genesis_url: - 'https://github.com/KYVENetwork/chain/releases/download/v0.0.1/genesis.json' - }, - versions: [ - { - name: 'v0.6.3', - recommended_version: 'v0.6.3', - compatible_versions: ['v0.6.3'], - binaries: { - 'linux/amd64': - 'https://github.com/KYVENetwork/chain/releases/download/v0.6.3/chain_linux_amd64.tar.gz' - } - } - ] - }, - peers: { - seeds: [ - { - id: '02dd2c26948ea758a25d3dbc91744f8897681652', - address: '3.73.27.185:26656' - } - ], - persistent_peers: [ + "$schema": "../../chain.schema.json", + "chain_name": "kyvedevnet", + "chain_id": "korellia", + "pretty_name": "KYVE Korellia", + "status": "live", + "network_type": "devnet", + "bech32_prefix": "kyve", + "daemon_name": "chaind", + "node_home": "$HOME/.kyve", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '70556c82352b9919fb6f339b9da0ebc587e9148c', - address: '3.68.232.117:26656' + "denom": "tkyve", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.korellia.kyve.network', - provider: 'kyve' + "address": "https://rpc.korellia.kyve.network", + "provider": "kyve" } ], - rest: [ + "rest": [ { - address: 'https://api.korellia.kyve.network', - provider: 'kyve' + "address": "https://api.korellia.kyve.network", + "provider": "kyve" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorers.guru', - url: 'https://kyve.explorers.guru/', - tx_page: 'https://kyve.explorers.guru/transaction/${txHash}' + "kind": "explorers.guru", + "url": "https://kyve.explorers.guru/", + "tx_page": "https://kyve.explorers.guru/transaction/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'kyvetestnet', - chain_id: 'kaon-1', - pretty_name: 'KYVE Kaon', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'kyve', - daemon_name: 'kyved', - node_home: '$HOME/.kyve', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'tkyve', - fixed_min_gas_price: 0.02, - low_gas_price: 0.02, - average_gas_price: 0.03, - high_gas_price: 0.06 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'tkyve' - } - ] - }, - codebase: { - git_repo: 'https://github.com/KYVENetwork/chain', - recommended_version: 'v1.0.0-rc0', - compatible_versions: ['v1.0.0-rc0'], - binaries: { - 'linux/amd64': - 'https://files.kyve.network/chain/v1.0.0-rc0/kyved_linux_amd64.tar.gz', - 'linux/arm64': - 'https://files.kyve.network/chain/v1.0.0-rc0/kyved_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://files.kyve.network/chain/v1.0.0-rc0/kyved_darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://files.kyve.network/chain/v1.0.0-rc0/kyved_darwin_arm64.tar.gz' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/KYVENetwork/networks/main/kaon-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.0-rc0', - recommended_version: 'v1.0.0-rc0', - compatible_versions: ['v1.0.0-rc0'], - binaries: { - 'linux/amd64': - 'https://files.kyve.network/chain/v1.0.0-rc0/kyved_linux_amd64.tar.gz', - 'linux/arm64': - 'https://files.kyve.network/chain/v1.0.0-rc0/kyved_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://files.kyve.network/chain/v1.0.0-rc0/kyved_darwin_amd64.tar.gz', - 'darwin/arm64': - 'https://files.kyve.network/chain/v1.0.0-rc0/kyved_darwin_arm64.tar.gz' - } + "$schema": "../../chain.schema.json", + "chain_name": "kyvetestnet", + "chain_id": "kaon-1", + "pretty_name": "KYVE Kaon", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "kyve", + "daemon_name": "kyved", + "node_home": "$HOME/.kyve", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "tkyve", + "fixed_min_gas_price": 0.02, + "low_gas_price": 0.02, + "average_gas_price": 0.03, + "high_gas_price": 0.06 } ] }, - peers: { - persistent_peers: [ - { - id: '430845649afaad0a817bdf36da63b6f93bbd8bd1', - address: '3.67.29.225:26656' - }, - { - id: 'b68e5131552e40b9ee70427879eb34e146ef20df', - address: '18.194.131.3:26656' - }, - { - id: '801fa026c6d9227874eeaeba288eae3b800aad7f', - address: '52.29.15.250:26656' - }, + "staking": { + "staking_tokens": [ { - id: 'bc8b5fbb40a1b82dfba591035cb137278a21c57d', - address: '52.59.65.9:26656' + "denom": "tkyve" } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc-eu-1.kaon.kyve.network', - provider: 'kyve' + "address": "https://rpc-eu-1.kaon.kyve.network", + "provider": "kyve" }, { - address: 'https://rpc-kyve-test.ecostake.com', - provider: 'ecostake' + "address": "https://rpc-kyve-test.ecostake.com", + "provider": "ecostake" } ], - rest: [ + "rest": [ { - address: 'https://api-eu-1.kaon.kyve.network', - provider: 'kyve' + "address": "https://api-eu-1.kaon.kyve.network", + "provider": "kyve" }, { - address: 'https://rest-kyve-test.ecostake.com', - provider: 'ecostake' + "address": "https://rest-kyve-test.ecostake.com", + "provider": "ecostake" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://testnet.mintscan.io/kyve-testnet', - tx_page: 'https://testnet.mintscan.io/kyve-testnet/txs/${txHash}', - account_page: - 'https://testnet.mintscan.io/kyve-testnet/account/${accountAddress}' + "kind": "mintscan", + "url": "https://testnet.mintscan.io/kyve-testnet", + "tx_page": "https://testnet.mintscan.io/kyve-testnet/txs/${txHash}", + "account_page": "https://testnet.mintscan.io/kyve-testnet/account/${accountAddress}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'lavatestnet', - status: 'live', - network_type: 'testnet', - website: 'https://www.lavanet.xyz/', - pretty_name: 'Lava', - chain_id: 'lava-testnet-2', - bech32_prefix: 'lava@', - daemon_name: 'lavad', - node_home: '$HOME/.lava', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ulava', - fixed_min_gas_price: 1e-9, - low_gas_price: 1e-9, - average_gas_price: 1e-9, - high_gas_price: 1e-9 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ulava' - } - ], - lock_duration: { - time: '1209600s' - } - }, - codebase: { - git_repo: 'https://github.com/lavanet/lava', - recommended_version: 'v0.21.1.2', - compatible_versions: ['v0.21.1.2'], - binaries: { - 'linux/amd64': - 'https://github.com/lavanet/lava/releases/download/v0.21.1.2/lavad-v0.21.1.2-linux-amd64' - }, - cosmos_sdk_version: '0.47', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: false, - ibc_go_version: 'v7.2.0', - ics_enabled: ['ics20-1'], - genesis: { - name: 'v0.3.0', - genesis_url: - 'https://raw.githubusercontent.com/lavanet/lava-config/main/testnet-2/genesis_json/genesis.json' - }, - versions: [ - { - name: 'v0.21.1.2', - tag: 'v0.21.1.2', - height: 340778, - recommended_version: 'v0.21.1.2', - compatible_versions: ['v0.21.1.2'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_enabled: false, - ibc_go_version: '3.0.1', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/amd64': - 'https://github.com/lavanet/lava/releases/download/v0.21.1.2/lavad-v0.21.1.2-linux-amd64' - } + "$schema": "../../chain.schema.json", + "chain_name": "lavatestnet", + "status": "live", + "network_type": "testnet", + "website": "https://www.lavanet.xyz/", + "pretty_name": "Lava", + "chain_id": "lava-testnet-2", + "bech32_prefix": "lava@", + "daemon_name": "lavad", + "node_home": "$HOME/.lava", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "ulava", + "fixed_min_gas_price": 1e-9, + "low_gas_price": 1e-9, + "average_gas_price": 1e-9, + "high_gas_price": 1e-9 } ] }, - images: [ + "staking": { + "staking_tokens": [ + { + "denom": "ulava" + } + ], + "lock_duration": { + "time": "1209600s" + } + }, + "codebase": { + "cosmos_sdk_version": "0.47", + "cosmwasm_enabled": false, + "cosmwasm_version": "0.30" + }, + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png', - theme: { - primary_color_hex: '#D7001F' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png", + "theme": { + "primary_color_hex": "#D7001F" } }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png' - }, - peers: { - seeds: [ - { - id: '3a445bfdbe2d0c8ee82461633aa3af31bc2b4dc0', - address: 'prod-pnet-seed-node.lavanet.xyz:26656', - provider: 'Lava' - }, - { - id: 'e593c7a9ca61f5616119d6beb5bd8ef5dd28d62d', - address: 'prod-pnet-seed-node2.lavanet.xyz:26656', - provider: 'Lava' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'testnet-seeds.polkachu.com:19956', - provider: 'Polkachu' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://https://public-rpc-testnet2.lavanet.xyz/', - provider: 'Lava' + "address": "https://https://public-rpc-testnet2.lavanet.xyz/", + "provider": "Lava" }, { - address: 'http://lava.rpc.t.stavr.tech:198', - provider: '🔥STAVR🔥' + "address": "http://lava.rpc.t.stavr.tech:198", + "provider": "🔥STAVR🔥" } ], - rest: [ + "rest": [ { - address: 'https://public-rpc-testnet2.lavanet.xyz/rest/', - provider: 'Lava' + "address": "https://public-rpc-testnet2.lavanet.xyz/rest/", + "provider": "Lava" }, { - address: 'https://lava.api.t.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://lava.api.t.stavr.tech", + "provider": "🔥STAVR🔥" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorers.guru', - url: 'https://lava.explorers.guru/', - tx_page: 'https://lava.explorers.guru//transaction/${txHash}', - account_page: 'https://lava.explorers.guru//account/${accountAddress}' + "kind": "explorers.guru", + "url": "https://lava.explorers.guru/", + "tx_page": "https://lava.explorers.guru//transaction/${txHash}", + "account_page": "https://lava.explorers.guru//account/${accountAddress}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Lava-Testnet', - tx_page: 'https://explorer.stavr.tech/Lava-Testnet/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Lava-Testnet/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Lava-Testnet", + "tx_page": "https://explorer.stavr.tech/Lava-Testnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Lava-Testnet/account/${accountAddress}" } ], - keywords: ['rpc', 'api'] + "keywords": [ + "rpc", + "api" + ] }, { - $schema: '../../chain.schema.json', - chain_name: 'lavatestnet2', - status: 'live', - network_type: 'testnet', - website: 'https://www.lavanet.xyz/', - pretty_name: 'Lava Testnet', - chain_id: 'lava-testnet-2', - bech32_prefix: 'lava@', - daemon_name: 'lavad', - node_home: '$HOME/.lava', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "lavatestnet2", + "status": "live", + "network_type": "testnet", + "website": "https://www.lavanet.xyz/", + "pretty_name": "Lava Testnet", + "chain_id": "lava-testnet-2", + "bech32_prefix": "lava@", + "daemon_name": "lavad", + "node_home": "$HOME/.lava", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ulava', - fixed_min_gas_price: 0.000001, - low_gas_price: 0.000001, - average_gas_price: 0.025, - high_gas_price: 0.04 + "denom": "ulava", + "fixed_min_gas_price": 0.000001, + "low_gas_price": 0.000001, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'ulava' + "denom": "ulava" } ], - lock_duration: { - time: '1209600s' + "lock_duration": { + "time": "1209600s" } }, - codebase: { - git_repo: 'https://github.com/lavanet/lava', - recommended_version: 'v0.32.0', - compatible_versions: ['v0.32.0'], - binaries: { - 'linux/amd64': - 'https://github.com/lavanet/lava/releases/download/v0.32.0/lavad-v0.32.0-linux-amd64' - }, - cosmos_sdk_version: '0.47.6', - consensus: { - type: 'tendermint', - version: '0.37' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: false, - ibc_go_version: '3.0.1', - ics_enabled: ['ics20-1'], - genesis: { - name: 'v0.21.1.2', - genesis_url: - 'https://raw.githubusercontent.com/lavanet/lava-config/main/testnet-2/genesis_json/genesis.json' - }, - versions: [ - { - name: 'v0.21.1.2', - tag: 'v0.21.1.2', - height: 345000, - next_version_name: 'v0.22.0' - }, - { - name: 'v0.22.0', - tag: 'v0.22.0', - height: 396595, - next_version_name: 'v0.23.5' - }, - { - name: 'v0.23.5', - tag: 'v0.23.5', - height: 435889, - next_version_name: 'v0.24.0' - }, - { - name: 'v0.24.0', - tag: 'v0.24.0', - height: 472310, - next_version_name: 'v0.25.2' - }, - { - name: 'v0.25.2', - tag: 'v0.25.2', - height: 514533, - next_version_name: 'v0.26.1' - }, - { - name: 'v0.26.1', - tag: 'v0.26.1', - height: 554249, - next_version_name: 'v0.27.0' - }, - { - name: 'v0.27.0', - tag: 'v0.27.0', - height: 590764, - next_version_name: 'v0.30.1' - }, - { - name: 'v0.30.1', - tag: 'v0.30.1', - height: 633177, - next_version_name: 'v0.30.2' - }, - { - name: 'v0.30.2', - tag: 'v0.30.2', - height: 636006, - next_version_name: 'v0.31.1' - }, - { - name: 'v0.31.1', - tag: 'v0.31.1', - height: 675100, - next_version_name: '' - }, - { - name: 'v0.32.0', - tag: 'v0.32.0', - height: 711251, - recommended_version: 'v0.32.0', - compatible_versions: ['v0.32.0'], - cosmos_sdk_version: '0.47.6', - consensus: { - type: 'tendermint', - version: '0.37' - }, - cosmwasm_enabled: false, - ibc_go_version: '3.0.1', - ics_enabled: ['ics20-1'], - binaries: { - 'linux/amd64': - 'https://github.com/lavanet/lava/releases/download/v0.32.0/lavad-v0.32.0-linux-amd64' - } - } - ] + "codebase": { + "cosmos_sdk_version": "0.47.6", + "cosmwasm_enabled": false, + "cosmwasm_version": "0.30" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png', - theme: { - primary_color_hex: '#D7001F' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png", + "theme": { + "primary_color_hex": "#D7001F" } }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg' - } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png' - }, - peers: { - seeds: [ - { - id: '3a445bfdbe2d0c8ee82461633aa3af31bc2b4dc0', - address: 'prod-pnet-seed-node.lavanet.xyz:26656', - provider: 'Lava' - }, - { - id: 'e593c7a9ca61f5616119d6beb5bd8ef5dd28d62d', - address: 'prod-pnet-seed-node2.lavanet.xyz:26656', - provider: 'Lava' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'testnet-seeds.polkachu.com:19956', - provider: 'Polkachu' - } - ] + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.svg" + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/lavatestnet/images/lava-icon.png" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://public-rpc.lavanet.xyz:443', - provider: 'Lava' + "address": "https://public-rpc.lavanet.xyz:443", + "provider": "Lava" } ], - rest: [ + "rest": [ { - address: 'https://public-rpc.lavanet.xyz/rest/', - provider: 'Lava' + "address": "https://public-rpc.lavanet.xyz/rest/", + "provider": "Lava" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorers.guru', - url: 'https://lava.explorers.guru/', - tx_page: 'https://lava.explorers.guru//transaction/${txHash}', - account_page: 'https://lava.explorers.guru//account/${accountAddress}' + "kind": "explorers.guru", + "url": "https://lava.explorers.guru/", + "tx_page": "https://lava.explorers.guru//transaction/${txHash}", + "account_page": "https://lava.explorers.guru//account/${accountAddress}" } ], - keywords: ['rpc', 'api', 'modular', 'data'] + "keywords": [ + "rpc", + "api", + "modular", + "data" + ] }, { - $schema: '../../chain.schema.json', - chain_name: 'likecointestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'LikeCoin Testnet', - chain_id: 'likecoin-public-testnet-5', - bech32_prefix: 'like', - daemon_name: 'liked', - node_home: '$HOME/.liked', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "likecointestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "LikeCoin Testnet", + "chain_id": "likecoin-public-testnet-5", + "bech32_prefix": "like", + "daemon_name": "liked", + "node_home": "$HOME/.liked", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'nanoekil', - fixed_min_gas_price: 1000, - low_gas_price: 1000, - average_gas_price: 10000, - high_gas_price: 1000000 + "denom": "nanoekil", + "fixed_min_gas_price": 1000, + "low_gas_price": 1000, + "average_gas_price": 10000, + "high_gas_price": 1000000 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'nanoekil' + "denom": "nanoekil" } ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/likecoin/likecoin-chain', - recommended_version: 'v4.1.1', - compatible_versions: ['v4.1.1'], - binaries: { - 'linux/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Linux_x86_64.tar.gz', - 'linux/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Darwin_x86_64.tar.gz', - 'darwin/arm64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Darwin_arm64.tar.gz', - 'windows/amd64': - 'https://github.com/likecoin/likecoin-chain/releases/download/v4.1.1/likecoin-chain_4.1.1_Windows_x86_64.zip' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_enabled: false, - ibc_go_version: '6.2.1', - ics_enabled: ['ics20-1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/likecoin/testnets/aeba532ba9162a876a2180e925a49cbedba512e5/likecoin-public-testnet-5/genesis.json' + "lock_duration": { + "time": "1814400s" } }, - peers: { - seeds: [ - { - id: '49976c3bd43da9271f226cbedf02d4b6b8fc880c', - address: '35.233.143.230:26656', - provider: 'like.co' - } - ], - persistent_peers: [] + "codebase": { + "cosmos_sdk_version": "0.46", + "cosmwasm_enabled": false }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://node.testnet.like.co/rpc/', - provider: 'like.co' + "address": "https://node.testnet.like.co/rpc/", + "provider": "like.co" } ], - rest: [ + "rest": [ { - address: 'https://node.testnet.like.co/', - provider: 'like.co' + "address": "https://node.testnet.like.co/", + "provider": "like.co" } ], - grpc: [ + "grpc": [ { - address: 'https://node.testnet-grpc.like.co/', - provider: 'like.co' + "address": "https://node.testnet-grpc.like.co/", + "provider": "like.co" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://testnet.bigdipper.live/likecoin', - tx_page: - 'https://testnet.bigdipper.live/likecoin/transactions/${txHash}', - account_page: - 'https://testnet.bigdipper.live/likecoin/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://testnet.bigdipper.live/likecoin", + "tx_page": "https://testnet.bigdipper.live/likecoin/transactions/${txHash}", + "account_page": "https://testnet.bigdipper.live/likecoin/accounts/${accountAddress}" }, { - kind: 'lunie-ng', - url: 'https://likecoin-public-testnet-5.netlify.app/' + "kind": "lunie-ng", + "url": "https://likecoin-public-testnet-5.netlify.app/" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg" }, - keywords: [], - images: [ + "keywords": [], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'lumenxtestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'LumenX-Test', - chain_id: 'lumenx-test', - bech32_prefix: 'lumen', - daemon_name: 'lumenxd', - node_home: '$HOME/.lumenx', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ulumen', - fixed_min_gas_price: 0.0025, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.03 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "lumenxtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "LumenX-Test", + "chain_id": "lumenx-test", + "bech32_prefix": "lumen", + "daemon_name": "lumenxd", + "node_home": "$HOME/.lumenx", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ulumen' + "denom": "ulumen", + "fixed_min_gas_price": 0.0025, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } ] }, - codebase: { - ics_enabled: ['ics20-1'] - }, - peers: { - seeds: [], - persistent_peers: [ - { - id: '8b66dba116f7f1feb0ff0649273ade6c9eca816c', - address: '38.242.237.107:26706' - }, + "staking": { + "staking_tokens": [ { - id: '6e9a9670d7b156203139cb5fd547be78147565c9', - address: '62.171.145.215:26656' + "denom": "ulumen" } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://testnet-rpc.lumenx.chaintools.tech/', - provider: 'ChainTools' + "address": "https://testnet-rpc.lumenx.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://testrpc-lumenx.cryptonet.pl/', - provider: 'CryptoNet' + "address": "https://testrpc-lumenx.cryptonet.pl/", + "provider": "CryptoNet" } ], - rest: [ + "rest": [ { - address: 'https://testnet-api.lumenx.chaintools.tech/', - provider: 'ChainTools' + "address": "https://testnet-api.lumenx.chaintools.tech/", + "provider": "ChainTools" }, { - address: 'https://testapi-lumenx.cryptonet.pl/', - provider: 'CryptoNet' + "address": "https://testapi-lumenx.cryptonet.pl/", + "provider": "CryptoNet" } ], - grpc: [] + "grpc": [] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://testnet.explorer.chaintools.tech/lumenx', - tx_page: 'https://testnet.explorer.chaintools.tech/lumenx/tx/${txHash}' + "kind": "ping.pub", + "url": "https://testnet.explorer.chaintools.tech/lumenx", + "tx_page": "https://testnet.explorer.chaintools.tech/lumenx/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'marstestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Mars Hub Testnet', - chain_id: 'ares-1', - bech32_prefix: 'mars', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "marstestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Mars Hub Testnet", + "chain_id": "ares-1", + "bech32_prefix": "mars", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'umars', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0, - high_gas_price: 0.025 + "denom": "umars", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0.025 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'umars' + "denom": "umars" } ] }, - codebase: { - ics_enabled: ['ics20-1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/mars-protocol/networks/main/ares-1/genesis.json' - } - }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://testnet-rpc.marsprotocol.io/', - provider: 'Mars Protocol' + "address": "https://testnet-rpc.marsprotocol.io/", + "provider": "Mars Protocol" }, { - address: 'https://rpc-mars.nodeist.net/', - provider: 'Nodeist' + "address": "https://rpc-mars.nodeist.net/", + "provider": "Nodeist" } ], - rest: [ + "rest": [ { - address: 'https://testnet-rest.marsprotocol.io/', - provider: 'Mars Protocol' + "address": "https://testnet-rest.marsprotocol.io/", + "provider": "Mars Protocol" }, { - address: 'https://api-mars.nodeist.net/', - provider: 'Nodeist' + "address": "https://api-mars.nodeist.net/", + "provider": "Nodeist" } ] }, - explorers: [ + "explorers": [ { - kind: 'Mars Protocol', - url: 'https://testnet-explorer.marsprotocol.io', - tx_page: - 'https://testnet-explorer.marsprotocol.io/transactions/${txHash}' + "kind": "Mars Protocol", + "url": "https://testnet-explorer.marsprotocol.io", + "tx_page": "https://testnet-explorer.marsprotocol.io/transactions/${txHash}" }, { - kind: 'Nodeist Explorer', - url: 'https://exp.nodeist.net/t-mars/', - tx_page: 'https://exp.nodeist.net/t-mars/transactions/${txHash}' + "kind": "Nodeist Explorer", + "url": "https://exp.nodeist.net/t-mars/", + "tx_page": "https://exp.nodeist.net/t-mars/transactions/${txHash}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-icon.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-icon.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-icon.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-icon.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-icon.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-icon.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-icon.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-icon.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'migalootestnet', - status: 'live', - network_type: 'testnet', - website: 'https://www.whitewhale.money/', - pretty_name: 'Migaloo Testnet', - chain_id: 'narwhal-2', - bech32_prefix: 'migaloo', - daemon_name: 'migalood', - node_home: '$HOME/.migalood', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "migalootestnet", + "status": "live", + "network_type": "testnet", + "website": "https://www.whitewhale.money/", + "pretty_name": "Migaloo Testnet", + "chain_id": "narwhal-2", + "bech32_prefix": "migaloo", + "daemon_name": "migalood", + "node_home": "$HOME/.migalood", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uwhale', - fixed_min_gas_price: 0.25, - low_gas_price: 0.25, - average_gas_price: 0.5, - high_gas_price: 0.75 + "denom": "uwhale", + "fixed_min_gas_price": 0.25, + "low_gas_price": 0.25, + "average_gas_price": 0.5, + "high_gas_price": 0.75 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'uwhale' + "denom": "uwhale" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.svg' - }, - codebase: { - git_repo: 'https://github.com/White-Whale-Defi-Platform/migaloo-chain', - recommended_version: 'v3.0.4', - compatible_versions: ['v3.0.4'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.28', - cosmwasm_enabled: true, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/White-Whale-Defi-Platform/migaloo-chain/release/v2.0.x/networks/testnet/genesis.json' - }, - versions: [ - { - name: 'v3.0.4', - recommended_version: 'v3.0.4', - compatible_versions: ['v3.0.4'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.28', - cosmwasm_enabled: true - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.svg" }, - peers: { - seeds: [], - persistent_peers: [] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.28" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://migaloo-testnet-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://migaloo-testnet-rpc.polkachu.com", + "provider": "Polkachu" } ], - rest: [ + "rest": [ { - address: 'https://migaloo-testnet-api.polkachu.com', - provider: 'Polkachu' + "address": "https://migaloo-testnet-api.polkachu.com", + "provider": "Polkachu" } ], - grpc: [] + "grpc": [] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://ping.pfc.zone/narwhal-testnet', - tx_page: 'https://ping.pfc.zone/narwhal-testnet/tx/${txHash}' + "kind": "ping.pub", + "url": "https://ping.pfc.zone/narwhal-testnet", + "tx_page": "https://ping.pfc.zone/narwhal-testnet/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.svg" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'neutrontestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Neutron Testnet', - chain_id: 'pion-1', - bech32_prefix: 'neutron', - daemon_name: 'neutrond', - node_home: '$HOME/.neutrond', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'untrn', - low_gas_price: 0.02, - average_gas_price: 0.02, - high_gas_price: 0.02 - } - ] - }, - codebase: { - git_repo: 'https://github.com/neutron-org/neutron', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.45', - cosmwasm_enabled: true, - ibc_go_version: '7.3.1', - genesis: { - genesis_url: - 'https://github.com/cosmos/testnets/raw/master/replicated-security/pion-1/pion-1-genesis.json' - }, - versions: [ - { - name: 'v0.4.3', - next_version_name: 'v1.0.4', - recommended_version: 'v0.4.3', - compatible_versions: ['v0.4.3'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0' - }, - { - name: 'v1.0.4', - next_version_name: 'v2.0.0', - recommended_version: 'v1.0.4', - compatible_versions: ['v1.0.4'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '4.3.1' - }, + "$schema": "../../chain.schema.json", + "chain_name": "neutrontestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Neutron Testnet", + "chain_id": "pion-1", + "bech32_prefix": "neutron", + "daemon_name": "neutrond", + "node_home": "$HOME/.neutrond", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v2.0.0', - next_version_name: '', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.45', - cosmwasm_enabled: true, - ibc_go_version: '7.3.1' + "denom": "untrn", + "low_gas_price": 0.02, + "average_gas_price": 0.02, + "high_gas_price": 0.02 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.svg' + "codebase": { + "cosmos_sdk_version": "0.47", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.45" }, - peers: { - seeds: [ - { - id: '0de4d730b5341d3a83721e1cbb5ce7772e26a400', - address: 'p2p-falcron.pion-1.ntrn.tech:26656', - provider: 'Neutron' - } - ], - persistent_peers: [ - { - id: '49d75c6094c006b6f2758e45457c1f3d6002ce7a', - address: 'pion-banana.rs-testnet.polypore.xyz:26656', - provider: 'Hypha' - }, - { - id: 'f2520026fb9086f1b2f09e132d209cbe88064ec1', - address: 'pion-cherry.rs-testnet.polypore.xyz:26656', - provider: 'Hypha' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc-falcron.pion-1.ntrn.tech', - provider: 'Neutron' + "address": "https://rpc-falcron.pion-1.ntrn.tech", + "provider": "Neutron" }, { - address: 'https://neutron-testnet-rpc.polkachu.com/', - provider: 'Polkachu' + "address": "https://neutron-testnet-rpc.polkachu.com/", + "provider": "Polkachu" } ], - rest: [ + "rest": [ { - address: 'https://rest-falcron.pion-1.ntrn.tech', - provider: 'Neutron' + "address": "https://rest-falcron.pion-1.ntrn.tech", + "provider": "Neutron" }, { - address: 'https://api.pion.remedy.tm.p2p.org', - provider: 'P2P.ORG' + "address": "https://api.pion.remedy.tm.p2p.org", + "provider": "P2P.ORG" }, { - address: 'https://rest.baryon-sentry-01.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://rest.baryon-sentry-01.rs-testnet.polypore.xyz", + "provider": "Hypha" } ], - grpc: [ + "grpc": [ { - address: 'grpc-falcron.pion-1.ntrn.tech:80', - provider: 'Neutron' + "address": "grpc-falcron.pion-1.ntrn.tech:80", + "provider": "Neutron" }, { - address: 'grpc.baryon.remedy.tm.p2p.org:443', - provider: 'P2P.ORG' + "address": "grpc.baryon.remedy.tm.p2p.org:443", + "provider": "P2P.ORG" } ] }, - explorers: [ + "explorers": [ { - kind: 'Ping.pub Explorer from Hypha', - url: 'https://explorer.rs-testnet.polypore.xyz/pion-1', - tx_page: 'https://explorer.rs-testnet.polypore.xyz/pion-1/tx/${txHash}', - account_page: - 'https://explorer.rs-testnet.polypore.xyz/baryon-1/account/${accountAddress}' + "kind": "Ping.pub Explorer from Hypha", + "url": "https://explorer.rs-testnet.polypore.xyz/pion-1", + "tx_page": "https://explorer.rs-testnet.polypore.xyz/pion-1/tx/${txHash}", + "account_page": "https://explorer.rs-testnet.polypore.xyz/baryon-1/account/${accountAddress}" }, { - kind: 'Mintscan', - url: 'https://testnet.mintscan.io/neutron-testnet', - tx_page: 'https://testnet.mintscan.io/neutron-testnet/txs/${txHash}', - account_page: - 'https://testnet.mintscan.io/neutron-testnet/account/${accountAddress}' + "kind": "Mintscan", + "url": "https://testnet.mintscan.io/neutron-testnet", + "tx_page": "https://testnet.mintscan.io/neutron-testnet/txs/${txHash}", + "account_page": "https://testnet.mintscan.io/neutron-testnet/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'nobletestnet', - chain_id: 'grand-1', - website: 'https://nobleassets.xyz/', - pretty_name: 'Noble', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'noble', - daemon_name: 'nobled', - node_home: '$HOME/.nobled', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uusdc', - fixed_min_gas_price: 0, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.03 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'ustake' - } - ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/strangelove-ventures/noble', - recommended_version: 'v4.0.0-beta1', - compatible_versions: [ - 'v0.3.0', - 'v0.4.1', - 'v0.5.0', - 'v4.0.0-alpha1', - 'v4.0.0-alpha2', - 'v4.0.0-alpha3', - 'v4.0.0-beta1' - ], - cosmos_sdk_version: 'v0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_enabled: false, - ibc_go_version: 'v3.4.0', - ics_enabled: ['ics20-1'], - genesis: { - name: 'v0.3.0', - genesis_url: - 'https://raw.githubusercontent.com/strangelove-ventures/noble-networks/main/testnet/grand-1/genesis.json' - }, - versions: [ - { - name: 'v0.3.0', - tag: 'v0.3.0', - height: 0, - next_version_name: 'v0.4.1' - }, - { - name: 'v0.4.1', - tag: 'v0.4.2', - height: 302000, - recommended_version: 'v0.4.1', - compatible_versions: ['v0.4.1'], - cosmos_sdk_version: 'v0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_enabled: false, - ibc_go_version: 'v3.4.0', - ics_enabled: ['ics20-1'], - next_version_name: 'radon' - }, - { - name: 'radon', - tag: 'v3.0.0', - height: 645000, - recommended_version: 'v0.5.1', - compatible_versions: ['v0.5.0', 'v0.5.1'], - cosmos_sdk_version: 'v0.45', - consensus: { - type: 'cometbft', - version: '0.34' - }, - cosmwasm_enabled: false, - ibc_go_version: 'v3.4.0 (fork)', - ics_enabled: ['ics20-1'] - }, + "$schema": "../chain.schema.json", + "chain_name": "nobletestnet", + "chain_id": "grand-1", + "website": "https://nobleassets.xyz/", + "pretty_name": "Noble", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "noble", + "daemon_name": "nobled", + "node_home": "$HOME/.nobled", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v3.0.0', - tag: 'v3.0.0', - height: 1397000, - recommended_version: 'v3.0.0', - cosmos_sdk_version: 'v0.45', - consensus: { - type: 'cometbft', - version: '0.34' - }, - cosmwasm_enabled: false, - ibc_go_version: 'v3.4.0 (fork)', - ics_enabled: ['ics20-1'] + "denom": "uusdc", + "fixed_min_gas_price": 0, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } ] }, - peers: { - persistent_peers: [ - { - id: '38179b18853d6a8cb86b99881e02cf72f18b9d0f', - address: '34.127.46.223:26656', - provider: 'Strangelove' - }, - { - id: '57546d799a1cdef74b9a174052821a6e93636dfc', - address: '34.145.87.4:26656', - provider: 'Strangelove' - }, - { - id: '6b76ad22a73897e3c39c7d87b7d12a3b7d690bff', - address: '34.168.48.128:26656', - provider: 'Strangelove' - }, - { - id: 'f8a0d8942bcf02b94ed875ded9cb23944a53e48a', - address: '141.95.97.28:15656', - provider: 'B-Harvest' - }, + "staking": { + "staking_tokens": [ { - id: 'd82829d886635ffcfcef66adfaa725acb522e1c6', - address: '83.136.255.243:26656', - provider: 'Everstake' + "denom": "ustake" } - ] + ], + "lock_duration": { + "time": "1814400s" + } + }, + "codebase": { + "cosmos_sdk_version": "v0.45", + "cosmwasm_enabled": false }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://noble-testnet-rpc.polkachu.com', - provider: 'polkachu' + "address": "https://noble-testnet-rpc.polkachu.com", + "provider": "polkachu" }, { - address: 'https://rpc.testnet.noble.strange.love:443', - provider: 'strangelove' + "address": "https://rpc.testnet.noble.strange.love:443", + "provider": "strangelove" } ], - rest: [ + "rest": [ { - address: 'https://noble-testnet-api.polkachu.com', - provider: 'polkachu' + "address": "https://noble-testnet-api.polkachu.com", + "provider": "polkachu" }, { - address: 'https://api.testnet.noble.strange.love', - provider: 'strangelove' + "address": "https://api.testnet.noble.strange.love", + "provider": "strangelove" } ], - grpc: [ + "grpc": [ { - address: 'noble-testnet-grpc.polkachu.com:21590', - provider: 'polkachu' + "address": "noble-testnet-grpc.polkachu.com:21590", + "provider": "polkachu" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://testnet.mintscan.io/noble-testnet', - tx_page: 'https://testnet.mintscan.io/noble-testnet/txs/${txHash}' + "kind": "mintscan", + "url": "https://testnet.mintscan.io/noble-testnet", + "tx_page": "https://testnet.mintscan.io/noble-testnet/txs/${txHash}" }, { - kind: 'ping.pub', - url: 'https://explore.strange.love/grand-1', - tx_page: 'https://explore.strange.love/grand-1/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explore.strange.love/grand-1", + "tx_page": "https://explore.strange.love/grand-1/tx/${txHash}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'noistestnet', - status: 'live', - network_type: 'testnet', - website: 'https://nois.network', - pretty_name: 'Nois', - chain_id: 'nois-testnet-005', - bech32_prefix: 'nois', - daemon_name: 'noisd', - node_home: '$HOME/.noisd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "noistestnet", + "status": "live", + "network_type": "testnet", + "website": "https://nois.network", + "pretty_name": "Nois", + "chain_id": "nois-testnet-005", + "bech32_prefix": "nois", + "daemon_name": "noisd", + "node_home": "$HOME/.noisd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'unois', - fixed_min_gas_price: 0, - low_gas_price: 0.05, - average_gas_price: 0.05, - high_gas_price: 0.1 + "denom": "unois", + "fixed_min_gas_price": 0, + "low_gas_price": 0.05, + "average_gas_price": 0.05, + "high_gas_price": 0.1 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'unois' + "denom": "unois" } ], - lock_duration: { - time: '1814400s' + "lock_duration": { + "time": "1814400s" } }, - codebase: { - git_repo: 'https://github.com/noislabs/noisd', - recommended_version: 'v1.0.1', - compatible_versions: ['v1.0.1'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - genesis: { - name: 'v1', - genesis_url: - 'https://raw.githubusercontent.com/noislabs/networks/nois-testnet-005/nois-testnet-005/genesis.json' - }, - versions: [ - { - name: 'v1', - tag: 'v1.0.1', - height: 0, - recommended_version: 'v1.0.1', - compatible_versions: ['v1.0.1'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true - } - ] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', - theme: { - primary_color_hex: '#0C0914' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "theme": { + "primary_color_hex": "#0C0914" } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png' - }, - peers: { - seeds: [ - { - id: 'da81dd66bca4bba509163dbd06b4a6b2e05c2e12', - address: 'nois-testnet-seed.itrocket.net:21656', - provider: 'itrocket' - }, - { - id: 'bf07906c7cf0f23606c83be15624be2c67b3929c', - address: '139.59.154.47:17356', - provider: '' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://nois-testnet-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://nois-testnet-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://nois-testnet-rpc.itrocket.net:443', - provider: 'itrocket' + "address": "https://nois-testnet-rpc.itrocket.net:443", + "provider": "itrocket" }, { - address: 'https://rpc.nois.mcbnode.online:443', - provider: 'mcbnode' + "address": "https://rpc.nois.mcbnode.online:443", + "provider": "mcbnode" }, { - address: 'https://nois-testnet.rpc.kjnodes.com:443', - provider: 'kjnodes' + "address": "https://nois-testnet.rpc.kjnodes.com:443", + "provider": "kjnodes" }, { - address: 'https://tnois-rpc.systemd.run:443', - provider: 'systemd' + "address": "https://tnois-rpc.systemd.run:443", + "provider": "systemd" } ], - grpc: [ + "grpc": [ { - address: 'tnois-grpc.systemd.run:443', - provider: 'systemd' + "address": "tnois-grpc.systemd.run:443", + "provider": "systemd" }, { - address: 'http://nois.grpc.t.stavr.tech:191', - provider: '🔥STAVR🔥' + "address": "http://nois.grpc.t.stavr.tech:191", + "provider": "🔥STAVR🔥" }, { - address: 'nois-testnet-grpc.itrocket.net:21090', - provider: 'itrocket' + "address": "nois-testnet-grpc.itrocket.net:21090", + "provider": "itrocket" } ], - rest: [ + "rest": [ { - address: 'https://api.nois.mcbnode.online', - provider: 'mcbnode' + "address": "https://api.nois.mcbnode.online", + "provider": "mcbnode" }, { - address: 'https://nois3.api.t.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://nois3.api.t.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://tnois-api.systemd.run:443', - provider: 'systemd' + "address": "https://tnois-api.systemd.run:443", + "provider": "systemd" } ] }, - explorers: [ + "explorers": [ { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Nois-Testnet', - tx_page: 'https://explorer.stavr.tech/Nois-Testnet/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Nois-Testnet/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Nois-Testnet", + "tx_page": "https://explorer.stavr.tech/Nois-Testnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Nois-Testnet/account/${accountAddress}" }, { - kind: 'explorers.guru', - url: 'https://testnet.nois.explorers.guru', - tx_page: 'https://testnet.nois.explorers.guru/transaction/${txHash}', - account_page: - 'https://testnet.nois.explorers.guru/account/${accountAddress}' + "kind": "explorers.guru", + "url": "https://testnet.nois.explorers.guru", + "tx_page": "https://testnet.nois.explorers.guru/transaction/${txHash}", + "account_page": "https://testnet.nois.explorers.guru/account/${accountAddress}" } ], - keywords: ['nois', 'randomness', 'drand', 'wasm'] + "keywords": [ + "nois", + "randomness", + "drand", + "wasm" + ] }, { - $schema: '../../chain.schema.json', - chain_name: 'nolustestnet', - status: 'live', - website: 'https://nolus.io/', - network_type: 'testnet', - pretty_name: 'Nolus Testnet', - chain_id: 'rila-1', - bech32_prefix: 'nolus', - daemon_name: 'nolusd', - node_home: '$HOME/.nolusd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "nolustestnet", + "status": "live", + "website": "https://nolus.io/", + "network_type": "testnet", + "pretty_name": "Nolus Testnet", + "chain_id": "rila-1", + "bech32_prefix": "nolus", + "daemon_name": "nolusd", + "node_home": "$HOME/.nolusd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'unls', - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.05 + "denom": "unls", + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.05 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'unls' + "denom": "unls" } ], - lock_duration: { - time: '1814400s' + "lock_duration": { + "time": "1814400s" } }, - codebase: { - git_repo: 'https://github.com/nolus-protocol/nolus-core', - recommended_version: 'v0.4.0', - compatible_versions: [], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0', - ics_enabled: ['ics20-1', 'ics27-1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/nolus-protocol/nolus-networks/main/testnet/rila-1/genesis.json' - }, - versions: [ - { - name: 'v0.3.0', - recommended_version: 'v0.3.0', - compatible_versions: [], - cosmos_sdk_version: '0.45', - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0', - ics_enabled: ['ics20-1', 'ics27-1'] - } - ] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.31" }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rila-cl.nolus.network:26657', - provider: 'NolusProtocol' + "address": "https://rila-cl.nolus.network:26657", + "provider": "NolusProtocol" } ], - rest: [ + "rest": [ { - address: 'https://rila-cl.nolus.network:1317', - provider: 'NolusProtocol' + "address": "https://rila-cl.nolus.network:1317", + "provider": "NolusProtocol" } ], - grpc: [ + "grpc": [ { - address: 'https://rila-cl.nolus.network:9090', - provider: 'NolusProtocol' + "address": "https://rila-cl.nolus.network:9090", + "provider": "NolusProtocol" } ] }, - explorers: [ + "explorers": [ { - kind: 'Nolus Explorer', - url: 'https://explorer-rila.nolus.io/rila-1/', - tx_page: 'https://explorer-rila.nolus.io/rila-1/tx/${txHash}', - account_page: - 'https://explorer-rila.nolus.io/rila-1/account/${accountAddress}' + "kind": "Nolus Explorer", + "url": "https://explorer-rila.nolus.io/rila-1/", + "tx_page": "https://explorer-rila.nolus.io/rila-1/tx/${txHash}", + "account_page": "https://explorer-rila.nolus.io/rila-1/account/${accountAddress}" } ], - keywords: ['testnet'], - images: [ + "keywords": [ + "testnet" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'okp4testnet', - chain_id: 'okp4-nemeton-1', - website: 'https://okp4.network/', - pretty_name: 'OKP4 Nemeton', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'okp4', - daemon_name: 'okp4d', - node_home: '$HOME/.okp4', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uknow', - fixed_min_gas_price: 0, - low_gas_price: 0.01, - average_gas_price: 0.025, - high_gas_price: 0.03 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uknow' - } - ] - }, - codebase: { - git_repo: 'https://github.com/okp4/okp4d', - recommended_version: 'v4.1.0', - compatible_versions: ['v4.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/okp4/okp4d/releases/download/v4.1.0/okp4d-4.1.0-linux-amd64', - 'linux/arm64': - 'https://github.com/okp4/okp4d/releases/download/v4.1.0/okp4d-4.1.0-linux-arm64' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/okp4/networks/main/chains/nemeton-1/genesis.json' - }, - versions: [ - { - name: 'v4.1.0', - tag: 'v4.1.0', - recommended_version: 'v4.1.0', - compatible_versions: ['v4.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/okp4/okp4d/releases/download/v4.1.0/okp4d-4.1.0-linux-amd64', - 'linux/arm64': - 'https://github.com/okp4/okp4d/releases/download/v4.1.0/okp4d-4.1.0-linux-arm64' - } + "$schema": "../../chain.schema.json", + "chain_name": "okp4testnet", + "chain_id": "okp4-nemeton-1", + "website": "https://okp4.network/", + "pretty_name": "OKP4 Nemeton", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "okp4", + "daemon_name": "okp4d", + "node_home": "$HOME/.okp4", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uknow", + "fixed_min_gas_price": 0, + "low_gas_price": 0.01, + "average_gas_price": 0.025, + "high_gas_price": 0.03 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png' - }, - peers: { - seeds: [ - { - id: 'f2364a89e2762cb05673c056ee0bc234652856cc', - address: '66.206.6.82:26656' - }, - { - id: '64b4778a249c5b67ed9f63ec7886a47bef363a33', - address: '188.120.224.87:26656' - }, + "staking": { + "staking_tokens": [ { - id: '114180a593e480b0443ca61bb1325289a7029bc6', - address: '78.47.198.121:26656' - }, - { - id: '624b5d754f79a2466bff14c1dd462c5508d35f78', - address: '167.235.197.90:26656' - }, - { - id: '8bc91ffabd860b6b54766ac3788d7c284e45b964', - address: '174.138.30.240:26656' - }, - { - id: '61544968b65e34a59513b67613519cd37ace7ecb', - address: '161.97.151.109:26656' - }, - { - id: '666c7b5ef2a81e4a3115785c90305d5371e067ed', - address: '162.55.234.160:26656' - }, - { - id: '78d923333e39e747c6a7fbfcc822ec6279990556', - address: '91.211.251.232:28656' + "denom": "uknow" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png" + }, + "apis": { + "rpc": [ { - address: 'https://api.testnet.okp4.network/rpc', - provider: 'OKP4' + "address": "https://api.testnet.okp4.network/rpc", + "provider": "OKP4" }, { - address: 'https://okptest-rpc.quickapi.com', - provider: 'Chainlayer' + "address": "https://okptest-rpc.quickapi.com", + "provider": "Chainlayer" }, { - address: 'https://okp4-testnet-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://okp4-testnet-rpc.polkachu.com", + "provider": "Polkachu" } ], - rest: [ + "rest": [ { - address: 'https://okptest-lcd.quickapi.com', - provider: 'Chainlayer' + "address": "https://okptest-lcd.quickapi.com", + "provider": "Chainlayer" }, { - address: 'https://okp4-testnet-api.polkachu.com/', - provider: 'Polkachu' + "address": "https://okp4-testnet-api.polkachu.com/", + "provider": "Polkachu" } ], - grpc: [ + "grpc": [ { - address: 'okp4-testnet-grpc.polkachu.com:17690', - provider: 'Polkachu' + "address": "okp4-testnet-grpc.polkachu.com:17690", + "provider": "Polkachu" }, { - address: 'grpc.testnet.okp4.network:443', - provider: 'OKP4' + "address": "grpc.testnet.okp4.network:443", + "provider": "OKP4" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://testnet.ping.pub/OKP4%20testnet', - tx_page: 'https://testnet.ping.pub/OKP4%20testnet/tx/${txHash}' + "kind": "ping.pub", + "url": "https://testnet.ping.pub/OKP4%20testnet", + "tx_page": "https://testnet.ping.pub/OKP4%20testnet/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://explore.okp4.network/OKP4%20testnet', - tx_page: 'https://explore.okp4.network/OKP4%20testnet/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explore.okp4.network/OKP4%20testnet", + "tx_page": "https://explore.okp4.network/OKP4%20testnet/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/okp4testnet/images/okp4.png" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'osmosistestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Osmosis Testnet', - chain_id: 'osmo-test-5', - bech32_prefix: 'osmo', - daemon_name: 'osmosisd', - node_home: '$HOME/.osmosisd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uosmo', - fixed_min_gas_price: 0, - low_gas_price: 0.0025, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "osmosistestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Osmosis Testnet", + "chain_id": "osmo-test-5", + "bech32_prefix": "osmo", + "daemon_name": "osmosisd", + "node_home": "$HOME/.osmosisd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uosmo' + "denom": "uosmo", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0025, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - codebase: { - git_repo: 'https://github.com/osmosis-labs/osmosis', - recommended_version: 'v15.0.0', - compatible_versions: ['v15.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - genesis: { - genesis_url: 'https://genesis.osmotest5.osmosis.zone/genesis.json' - }, - versions: [ - { - name: 'v14.0.0-rc1', - recommended_version: 'v14.0.0-rc1', - compatible_versions: ['v14.0.0-rc1'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true - }, + "staking": { + "staking_tokens": [ { - name: 'v15.0.0-rc3', - recommended_version: 'v15.0.0-rc3', - compatible_versions: ['v15.0.0-rc3'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true - }, - { - name: 'v15.0.0', - recommended_version: 'v15.0.0', - compatible_versions: ['v15.0.0-rc3'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true + "denom": "uosmo" } ] }, - peers: { - seeds: [ - { - id: 'bb197876fd952d245ef6377e3651c157e3d7ed81', - address: '157.245.26.231:26656', - provider: '' - }, - { - id: '7c2b9e76be5c2142c76b429d9c29e902599ceb44', - address: '157.245.21.183:26656', - provider: '' - } - ], - persistent_peers: [ - { - id: '51084fccec1c309a415e89d39e6f0881c49493ed', - address: '95.217.144.107:12556', - provider: '' - }, - { - id: 'a5c34bdd777dd418ff7152a8646fd2f31f53f8a5', - address: '46.232.248.117:2000', - provider: '' - } - ] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.osmotest5.osmosis.zone/', - provider: 'Osmosis' + "address": "https://rpc.osmotest5.osmosis.zone/", + "provider": "Osmosis" }, { - address: 'https://rpc.testnet.osl.zone/', - provider: 'OSL' + "address": "https://rpc.testnet.osl.zone/", + "provider": "OSL" } ], - rest: [ + "rest": [ { - address: 'https://lcd.osmotest5.osmosis.zone/', - provider: 'Osmosis' + "address": "https://lcd.osmotest5.osmosis.zone/", + "provider": "Osmosis" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.osmotest5.osmosis.zone/', - provider: 'Osmosis' + "address": "https://grpc.osmotest5.osmosis.zone/", + "provider": "Osmosis" } ] }, - 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" }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://testnet.mintscan.io/osmosis-testnet', - tx_page: 'https://testnet.mintscan.io/osmosis-testnet/txs/${txHash}', - account_page: - 'https://testnet.mintscan.io/osmosis-testnet/account/${accountAddress}' + "kind": "mintscan", + "url": "https://testnet.mintscan.io/osmosis-testnet", + "tx_page": "https://testnet.mintscan.io/osmosis-testnet/txs/${txHash}", + "account_page": "https://testnet.mintscan.io/osmosis-testnet/account/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://explorer.osmotest5.osmosis.zone', - tx_page: - 'https://explorer.osmotest5.osmosis.zone/osmo-test-5/tx/${txHash}', - account_page: - 'https://explorer.osmotest5.osmosis.zone/osmo-test-5/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://explorer.osmotest5.osmosis.zone", + "tx_page": "https://explorer.osmotest5.osmosis.zone/osmo-test-5/tx/${txHash}", + "account_page": "https://explorer.osmotest5.osmosis.zone/osmo-test-5/account/${accountAddress}" } ], - keywords: ['dex', 'testnet'], - images: [ + "keywords": [ + "dex", + "testnet" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'osmosistestnet4', - status: 'live', - network_type: 'testnet', - pretty_name: 'Osmosis Testnet', - chain_id: 'osmo-test-4', - bech32_prefix: 'osmo', - daemon_name: 'osmosisd', - node_home: '$HOME/.osmosisd', - 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 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "osmosistestnet4", + "status": "live", + "network_type": "testnet", + "pretty_name": "Osmosis Testnet", + "chain_id": "osmo-test-4", + "bech32_prefix": "osmo", + "daemon_name": "osmosisd", + "node_home": "$HOME/.osmosisd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uosmo' + "denom": "uosmo", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - codebase: { - git_repo: 'https://github.com/osmosis-labs/osmosis', - recommended_version: 'v15.0.0-rc3', - compatible_versions: ['v15.0.0-rc3'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - genesis: { - genesis_url: - 'https://github.com/osmosis-labs/networks/raw/main/osmo-test-4/genesis.tar.bz2' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v14.0.0-rc1', - recommended_version: 'v14.0.0-rc1', - compatible_versions: ['v14.0.0-rc1'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true - }, - { - name: 'v15.0.0-rc3', - recommended_version: 'v15.0.0-rc3', - compatible_versions: ['v15.0.0-rc3'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true + "denom": "uosmo" } ] }, - peers: { - seeds: [ - { - id: '0f9a9c694c46bd28ad9ad6126e923993fc6c56b1', - address: '137.184.181.105:26656', - provider: '' - } - ], - persistent_peers: [ - { - id: '4ab030b7fd75ed895c48bcc899b99c17a396736b', - address: '137.184.190.127:26656', - provider: '' - }, - { - id: '3dbffa30baab16cc8597df02945dcee0aa0a4581', - address: '143.198.139.33:26656', - provider: '' - } - ] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.29" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.osmo-test.ccvalidators.com/', - provider: 'CryptoCrew' + "address": "https://rpc.osmo-test.ccvalidators.com/", + "provider": "CryptoCrew" }, { - address: 'https://osmosistest-rpc.quickapi.com/', - provider: 'ChainLayer' + "address": "https://osmosistest-rpc.quickapi.com/", + "provider": "ChainLayer" }, { - address: 'https://rpc.testnet.osmosis.zone/', - provider: 'Osmosis' + "address": "https://rpc.testnet.osmosis.zone/", + "provider": "Osmosis" } ], - rest: [ + "rest": [ { - address: 'https://osmosistest-lcd.quickapi.com/', - provider: 'CryptoCrew' + "address": "https://osmosistest-lcd.quickapi.com/", + "provider": "CryptoCrew" }, { - address: 'https://lcd.osmo-test.ccvalidators.com/', - provider: 'ChainLayer' + "address": "https://lcd.osmo-test.ccvalidators.com/", + "provider": "ChainLayer" }, { - address: 'https://testnet-rest.osmosis.zone/', - provider: '' + "address": "https://testnet-rest.osmosis.zone/", + "provider": "" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc-test.osmosis.zone:443', - provider: 'Osmosis' + "address": "https://grpc-test.osmosis.zone:443", + "provider": "Osmosis" } ] }, - 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', 'testnet'], - images: [ + "keywords": [ + "dex", + "testnet" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'permtestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Perm Testnet', - chain_id: 'testnet-1', - bech32_prefix: 'perm', - daemon_name: 'permd', - node_home: '$HOME/.perm', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uperm', - low_gas_price: 0.0025, - average_gas_price: 0.0025, - high_gas_price: 0.0024 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "permtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Perm Testnet", + "chain_id": "testnet-1", + "bech32_prefix": "perm", + "daemon_name": "permd", + "node_home": "$HOME/.perm", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uperm' + "denom": "uperm", + "low_gas_price": 0.0025, + "average_gas_price": 0.0025, + "high_gas_price": 0.0024 } ] }, - codebase: { - git_repo: 'https://github.com/Loop-Protocol/perm.git', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/Loop-Protocol/testnet/main/genesis.json' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0' - }, + "staking": { + "staking_tokens": [ { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0' + "denom": "uperm" } ] }, - peers: { - seeds: [], - persistent_peers: [] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.3.finance/', - provider: 'Perm Network' + "address": "https://rpc.3.finance/", + "provider": "Perm Network" } ], - rest: [ + "rest": [ { - address: 'https://rest.3.finance/', - provider: 'Perm Network' + "address": "https://rest.3.finance/", + "provider": "Perm Network" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.3.finance/', - provider: 'Perm Network' + "address": "https://grpc.3.finance/", + "provider": "Perm Network" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://explorer.testnet.perm.ooo/', - tx_page: 'https://explorer.testnet.perm.ooo/transactions/${txHash}' + "kind": "bigdipper", + "url": "https://explorer.testnet.perm.ooo/", + "tx_page": "https://explorer.testnet.perm.ooo/transactions/${txHash}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'persistencetestnet', - chain_id: 'test-core-1', - pretty_name: 'Persistence Testnet', - status: 'live', - network_type: 'testnet', - website: 'https://persistence.one/', - bech32_prefix: 'persistence', - daemon_name: 'persistenceCore', - node_home: '$HOME/.persistenceCore', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uxprt', - fixed_min_gas_price: 0, - low_gas_price: 0.05, - average_gas_price: 0.125, - high_gas_price: 0.2 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uxprt' - } - ] - }, - codebase: { - git_repo: 'https://github.com/persistenceOne/persistenceCore', - recommended_version: 'v6.0.0-rc5', - compatible_versions: ['v6.0.0-rc5'], - binaries: { - 'linux/amd64': - 'https://github.com/persistenceOne/persistenceCore/archive/refs/tags/v6.0.0-rc5.tar.gz' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/persistenceOne/genesisTransactions/master/test-core-1/final_genesis.json' - }, - versions: [ - { - name: 'v6.0.0-rc5', - recommended_version: 'v6.0.0-rc5', - compatible_versions: ['v6.0.0-rc5'], - binaries: { - 'linux/amd64': - 'https://github.com/persistenceOne/persistenceCore/archive/refs/tags/v6.0.0-rc5.tar.gz' - } + "$schema": "../chain.schema.json", + "chain_name": "persistencetestnet", + "chain_id": "test-core-1", + "pretty_name": "Persistence Testnet", + "status": "live", + "network_type": "testnet", + "website": "https://persistence.one/", + "bech32_prefix": "persistence", + "daemon_name": "persistenceCore", + "node_home": "$HOME/.persistenceCore", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uxprt", + "fixed_min_gas_price": 0, + "low_gas_price": 0.05, + "average_gas_price": 0.125, + "high_gas_price": 0.2 } ] }, - peers: { - seeds: [ - { - id: '5c2a752c9b1952dbed075c56c600c3a79b58c395', - address: 'persistence.testnet.seed.autostake.net:26896', - provider: 'Auto Stake' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'testnet-seeds.polkachu.com:15456', - provider: 'AutoStake' - } - ], - persistent_peers: [ - { - id: '5c2a752c9b1952dbed075c56c600c3a79b58c395', - address: 'persistence.testnet.peer.autostake.net:26896', - provider: 'AutoStake' - }, - { - id: '14ecdc5126ea8d93c7d3a863d9d38e380e46fc06', - address: '185.225.233.30:26656', - provider: 'Cosmonaut Stakes' - }, + "staking": { + "staking_tokens": [ { - id: '987c7cd05003194334f55ed5cbcc0fe8cd9df021', - address: '65.108.233.109:15456', - provider: 'Polkachu' + "denom": "uxprt" } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc-testnet-persistence.architectnodes.com/', - provider: 'Architect Nodes' + "address": "https://rpc-testnet-persistence.architectnodes.com/", + "provider": "Architect Nodes" }, { - address: 'https://persistence-testnet-rpc.baryon.dev/', - provider: 'Baryon' + "address": "https://persistence-testnet-rpc.baryon.dev/", + "provider": "Baryon" }, { - address: 'https://persistence-testnet-rpc.cosmonautstakes.com/', - provider: 'Cosmonaut Stakes' + "address": "https://persistence-testnet-rpc.cosmonautstakes.com/", + "provider": "Cosmonaut Stakes" }, { - address: 'https://rpc.testnet.persistence.one/', - provider: 'Persistence' + "address": "https://rpc.testnet.persistence.one/", + "provider": "Persistence" }, { - address: 'https://persistence-testnet-rpc.polkachu.com/', - provider: 'Polkachu' + "address": "https://persistence-testnet-rpc.polkachu.com/", + "provider": "Polkachu" } ], - rest: [ + "rest": [ { - address: 'https://rest-testnet-persistence.architectnodes.com/', - provider: 'Architect Nodes' + "address": "https://rest-testnet-persistence.architectnodes.com/", + "provider": "Architect Nodes" }, { - address: 'https://persistence-testnet-api.baryon.dev/', - provider: 'Baryon' + "address": "https://persistence-testnet-api.baryon.dev/", + "provider": "Baryon" }, { - address: 'https://persistence-testnet-rest.cosmonautstakes.com/', - provider: 'Cosmonaut Stakes' + "address": "https://persistence-testnet-rest.cosmonautstakes.com/", + "provider": "Cosmonaut Stakes" }, { - address: 'https://rest.testnet.persistence.one/', - provider: 'Persistence' + "address": "https://rest.testnet.persistence.one/", + "provider": "Persistence" }, { - address: 'https://persistence-testnet-api.polkachu.com/', - provider: 'Polkachu' + "address": "https://persistence-testnet-api.polkachu.com/", + "provider": "Polkachu" } ], - grpc: [ + "grpc": [ { - address: 'persistence-testnet-grpc.polkachu.com:15490', - provider: 'Polkachu' + "address": "persistence-testnet-grpc.polkachu.com:15490", + "provider": "Polkachu" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://testnet.ping.pub/test-core-1/', - tx_page: 'https://testnet.ping.pub/test-core-1/tx/${txHash}' + "kind": "ping.pub", + "url": "https://testnet.ping.pub/test-core-1/", + "tx_page": "https://testnet.ping.pub/test-core-1/tx/${txHash}" }, { - kind: 'mintscan', - url: 'https://testnet.mintscan.io/persistence-testnet', - tx_page: - 'https://testnet.mintscan.io/persistence-testnet/txs/${txHash}', - account_page: - 'https://testnet.mintscan.io/persistence-testnet/account/${accountAddress}' + "kind": "mintscan", + "url": "https://testnet.mintscan.io/persistence-testnet", + "tx_page": "https://testnet.mintscan.io/persistence-testnet/txs/${txHash}", + "account_page": "https://testnet.mintscan.io/persistence-testnet/account/${accountAddress}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'persistencetestnet2', - chain_id: 'test-core-2', - pretty_name: 'Persistence Testnet', - status: 'live', - network_type: 'testnet', - website: 'https://persistence.one/', - bech32_prefix: 'persistence', - daemon_name: 'persistenceCore', - node_home: '$HOME/.persistenceCore', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uxprt', - fixed_min_gas_price: 0, - low_gas_price: 0.05, - average_gas_price: 0.125, - high_gas_price: 0.2 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uxprt' - } - ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/persistenceOne/persistenceCore', - recommended_version: 'v9.1.1', - compatible_versions: ['v9.1.1'], - binaries: { - 'linux/amd64': - 'https://github.com/persistenceOne/persistenceCore/releases/download/v9.1.1/persistenceCore-v9.1.1-linux-amd64.tar.gz' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/persistenceOne/networks/auditOne/test-core-2/test-core-2/genesis.json' - }, - versions: [ - { - name: 'v7.0.2', - recommended_version: 'v7.0.2', - compatible_versions: ['v7.0.2'], - binaries: { - 'linux/amd64': - 'https://github.com/persistenceOne/persistenceCore/releases/download/v7.0.2/persistenceCore-v7.0.2-linux-amd64.tar.gz' - } - }, + "$schema": "../../chain.schema.json", + "chain_name": "persistencetestnet2", + "chain_id": "test-core-2", + "pretty_name": "Persistence Testnet", + "status": "live", + "network_type": "testnet", + "website": "https://persistence.one/", + "bech32_prefix": "persistence", + "daemon_name": "persistenceCore", + "node_home": "$HOME/.persistenceCore", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v8', - tag: 'v8.0.0', - recommended_version: 'v8.0.0', - compatible_versions: ['v8.0.0'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'tendermint', - version: '0.37' - }, - ibc_go_version: 'v7.2.0', - cosmwasm_version: '0.40', - cosmwasm_enabled: true, - next_version_name: 'v8.1.0' - }, - { - name: 'v8.1.0', - tag: 'v8.1.0', - recommended_version: 'v8.1.0', - compatible_versions: ['v8.1.0'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'tendermint', - version: '0.37' - }, - ibc_go_version: 'v7.2.0', - cosmwasm_version: '0.40', - cosmwasm_enabled: true, - next_version_name: 'v9' - }, - { - name: 'v9', - tag: 'v9.0.0', - height: 1531570, - proposal: 16, - recommended_version: 'v8.0.0', - compatible_versions: ['v8.0.0'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'tendermint', - version: '0.37' - }, - ibc_go_version: 'v7.2.0', - cosmwasm_version: '0.40', - cosmwasm_enabled: true, - next_version_name: 'v9.1.0' - }, - { - name: 'v9.1.0', - tag: 'v9.1.1', - height: 1543200, - proposal: 17, - recommended_version: 'v9.1.1', - compatible_versions: ['v9.1.1', 'v9.1.0'], - cosmos_sdk_version: 'v0.47.x-lsm', - ibc_go_version: 'v7.2.0', - ics_enabled: ['ics20-1', 'ics27-1'], - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - cosmwasm_version: 'v0.40.2', - cosmwasm_enabled: true, - cosmwasm_path: '$HOME/.persistenceCore/wasm', - binaries: { - 'linux/amd64': - 'https://github.com/persistenceOne/persistenceCore/releases/download/v9.1.1/persistenceCore-v9.1.1-linux-amd64.tar.gz' - } + "denom": "uxprt", + "fixed_min_gas_price": 0, + "low_gas_price": 0.05, + "average_gas_price": 0.125, + "high_gas_price": 0.2 } ] }, - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: '3ce04530d850e727d092e9a81d9f580c7ff8db56', - address: '141.94.97.77:26656', - provider: 'Persistence' + "denom": "uxprt" } ], - persistent_peers: [ - { - id: '171e837618d9ec0b5faf0c91edc0cc3edd1cf204', - address: '188.172.228.225:26656', - provider: 'YTWOFUND' - }, - { - id: 'cee6b94965f301e8b5ad905a65fa39c03cd193ce', - address: '51.68.152.17.30:26656', - provider: 'Persistence' - }, - { - id: '7f971fc5fc2ffedbaf32f3b4021645571461a712', - address: '198.244.177.67:26656', - provider: 'Persistence' - }, - { - id: '21ca0b996db604681fb73721ecb01d2c6410c628', - address: '162.19.94.46:26656', - provider: 'Persistence' - } - ] + "lock_duration": { + "time": "1814400s" + } }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc-persistence-testnet-01.stakeflow.io/', - provider: 'StakeFlow' + "address": "https://rpc-persistence-testnet-01.stakeflow.io/", + "provider": "StakeFlow" }, { - address: 'https://persistence-testnet-rpc.baryon.dev/', - provider: 'Baryon' + "address": "https://persistence-testnet-rpc.baryon.dev/", + "provider": "Baryon" }, { - address: 'https://persistence-testnet-rpc.cosmonautstakes.com/', - provider: 'Cosmonaut Stakes' + "address": "https://persistence-testnet-rpc.cosmonautstakes.com/", + "provider": "Cosmonaut Stakes" }, { - address: 'https://rpc.testnet2.persistence.one/', - provider: 'Persistence' + "address": "https://rpc.testnet2.persistence.one/", + "provider": "Persistence" }, { - address: 'https://persistence-testnet-rpc.polkachu.com/', - provider: 'Polkachu' + "address": "https://persistence-testnet-rpc.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://persistencecoretest-rpc.ytwofund.pro/', - provider: 'YTWOFUND' + "address": "https://persistencecoretest-rpc.ytwofund.pro/", + "provider": "YTWOFUND" }, { - address: 'http://persistence-testnet.paranorm.pro:24657/', - provider: 'Paranorm' + "address": "http://persistence-testnet.paranorm.pro:24657/", + "provider": "Paranorm" } ], - rest: [ + "rest": [ { - address: 'https://api-persistence-testnet-01.stakeflow.io/', - provider: 'StakeFlow' + "address": "https://api-persistence-testnet-01.stakeflow.io/", + "provider": "StakeFlow" }, { - address: 'https://persistence-testnet-api.baryon.dev/', - provider: 'Baryon' + "address": "https://persistence-testnet-api.baryon.dev/", + "provider": "Baryon" }, { - address: 'https://persistence-testnet-rest.cosmonautstakes.com/', - provider: 'Cosmonaut Stakes' + "address": "https://persistence-testnet-rest.cosmonautstakes.com/", + "provider": "Cosmonaut Stakes" }, { - address: 'https://rest.testnet2.persistence.one/', - provider: 'Persistence' + "address": "https://rest.testnet2.persistence.one/", + "provider": "Persistence" }, { - address: 'https://persistence-testnet-api.polkachu.com/', - provider: 'Polkachu' + "address": "https://persistence-testnet-api.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://persistenceCoreTest-rest.ytwofund.pro', - provider: 'YTWOFUND' + "address": "https://persistenceCoreTest-rest.ytwofund.pro", + "provider": "YTWOFUND" } ], - grpc: [ + "grpc": [ { - address: 'persistence-testnet-grpc.polkachu.com:15490', - provider: 'Polkachu' + "address": "persistence-testnet-grpc.polkachu.com:15490", + "provider": "Polkachu" }, { - address: 'persistenceCoreTest-grpc.ytwofund.pro:9090', - provider: 'YTWOFUND' + "address": "persistenceCoreTest-grpc.ytwofund.pro:9090", + "provider": "YTWOFUND" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://testnet.mintscan.io/persistence-testnet', - tx_page: - 'https://testnet.mintscan.io/persistence-testnet/txs/${txHash}', - account_page: - 'https://testnet.mintscan.io/persistence-testnet/account/${accountAddress}' + "kind": "mintscan", + "url": "https://testnet.mintscan.io/persistence-testnet", + "tx_page": "https://testnet.mintscan.io/persistence-testnet/txs/${txHash}", + "account_page": "https://testnet.mintscan.io/persistence-testnet/account/${accountAddress}" }, { - kind: 'StakeFlow', - url: 'https://stakeflow.io/persistence-testnet', - tx_page: - 'https://stakeflow.io/persistence-testnet/transactions/${txHash}', - account_page: - 'https://stakeflow.io/persistence-testnet/accounts/${accountAddress}' + "kind": "StakeFlow", + "url": "https://stakeflow.io/persistence-testnet", + "tx_page": "https://stakeflow.io/persistence-testnet/transactions/${txHash}", + "account_page": "https://stakeflow.io/persistence-testnet/accounts/${accountAddress}" }, { - kind: 'baryon', - url: 'https://testnet-explorer.baryon.dev/test-core-2', - tx_page: 'https://testnet-explorer.baryon.dev/test-core-2/tx/{txHash}', - account_page: - 'https://testnet-explorer.baryon.dev/test-core-2/account/${accountAddress}' + "kind": "baryon", + "url": "https://testnet-explorer.baryon.dev/test-core-2", + "tx_page": "https://testnet-explorer.baryon.dev/test-core-2/tx/{txHash}", + "account_page": "https://testnet-explorer.baryon.dev/test-core-2/account/${accountAddress}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'pryzmtestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Pryzm Testnet', - chain_id: 'indigo-1', - bech32_prefix: 'pryzm', - daemon_name: 'pryzmd', - node_home: '$HOME/.pryzm', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'upryzm', - fixed_min_gas_price: 0, - low_gas_price: 0.015, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "pryzmtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Pryzm Testnet", + "chain_id": "indigo-1", + "bech32_prefix": "pryzm", + "daemon_name": "pryzmd", + "node_home": "$HOME/.pryzm", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'upryzm' + "denom": "upryzm", + "fixed_min_gas_price": 0, + "low_gas_price": 0.015, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - codebase: { - git_repo: 'https://github.com/pryzm-finance/pryzm-core', - recommended_version: 'v0.9.0', - compatible_versions: ['v0.9.0'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'tendermint', - version: '0.37' - }, - ibc_go_version: '7.3.1', - genesis: { - genesis_url: - 'https://storage.googleapis.com/pryzm-resources/indigo-1/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.9.0', - recommended_version: 'v0.9.0', - compatible_versions: ['v0.9.0'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'tendermint', - version: '0.37' - }, - ibc_go_version: '7.3.1' + "denom": "upryzm" } ] }, - peers: { - seeds: [ - { - id: 'ff17ca4f46230306412ff5c0f5e85439ee5136f0', - address: 'testnet-seed.pryzm.zone:26656', - provider: 'PRYZM' - } - ], - persistent_peers: [] + "codebase": { + "cosmos_sdk_version": "0.47" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://testnet-rpc.pryzm.zone', - provider: 'PRYZM' + "address": "https://testnet-rpc.pryzm.zone", + "provider": "PRYZM" } ], - rest: [ + "rest": [ { - address: 'https://testnet-api.pryzm.zone', - provider: 'PRYZM' + "address": "https://testnet-api.pryzm.zone", + "provider": "PRYZM" } ], - grpc: [ + "grpc": [ { - address: 'https://testnet-grpc.pryzm.zone', - provider: 'PRYZM' + "address": "https://testnet-grpc.pryzm.zone", + "provider": "PRYZM" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm-logo.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm-logo.svg" }, - explorers: [ + "explorers": [ { - kind: 'PingPub', - url: 'https://testnets.cosmosrun.info/pryzm-indigo-1', - tx_page: 'https://testnets.cosmosrun.info/pryzm-indigo-1/tx/${txHash}', - account_page: - 'https://testnets.cosmosrun.info/pryzm-indigo-1/account/${accountAddress}' + "kind": "PingPub", + "url": "https://testnets.cosmosrun.info/pryzm-indigo-1", + "tx_page": "https://testnets.cosmosrun.info/pryzm-indigo-1/tx/${txHash}", + "account_page": "https://testnets.cosmosrun.info/pryzm-indigo-1/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm-logo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm-logo.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm-logo.svg" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'quasartestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Quasar Testnet', - chain_id: 'qsr-questnet-04', - bech32_prefix: 'quasar', - daemon_name: 'quasarnoded', - node_home: '$HOME/.quasarnoded', - key_algos: ['secp256k1'], - slip44: 118, - staking: { - staking_tokens: [ - { - denom: 'uqsr' - } - ] - }, - codebase: { - recommended_version: 'v0.0.2-alpha-11', - compatible_versions: ['v0.0.2-alpha-11'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.27', - cosmwasm_enabled: true, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/quasar-finance/questnet/main/v04/definitive-genesis.json' - }, - versions: [ + "$schema": "../../chain.schema.json", + "chain_name": "quasartestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Quasar Testnet", + "chain_id": "qsr-questnet-04", + "bech32_prefix": "quasar", + "daemon_name": "quasarnoded", + "node_home": "$HOME/.quasarnoded", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "staking": { + "staking_tokens": [ { - name: 'v0.0.2-alpha-11', - recommended_version: 'v0.0.2-alpha-11', - compatible_versions: ['v0.0.2-alpha-11'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.27', - cosmwasm_enabled: true + "denom": "uqsr" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.svg' + "codebase": { + "cosmos_sdk_version": "0.46", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.27" }, - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'testnet-seeds.polkachu.com:18256', - provider: 'Polkachu' - }, - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'testnet-seed.rhinostake.com:18256', - provider: 'Rhino Stake' - } - ], - persistent_peers: [ - { - id: '8a19aa6e874ed5720aad2e7d02567ec932d92d22', - address: '141.94.248.63:26656', - provider: '' - }, - { - id: '444b80ce750976df59b88ac2e08d720e1dbbf230', - address: '68.183.75.239:26666', - provider: '' - }, - { - id: '20b4f9207cdc9d0310399f848f057621f7251846', - address: '222.106.187.13:40606', - provider: '' - }, - { - id: '7ef67269c8ec37ff8a538a5ae83ca670fd2da686', - address: '137.184.192.123:26656', - provider: '' - }, - { - id: '19afe579cc0a2b38ca87143f779f45e9a7f18a2f', - address: '18.134.191.148:26656', - provider: '' - }, - { - id: 'a23f002bda10cb90fa441a9f2435802b35164441', - address: '38.146.3.203:18256', - provider: '' - }, - { - id: 'bba6e85e3d1f1d9c127324e71a982ddd86af9a99', - address: '88.99.3.158:18256', - provider: '' - }, - { - id: '966acc999443bae0857604a9fce426b5e09a7409', - address: '65.108.105.48:18256 ', - provider: '' - }, - { - id: '177144bed1e280a6f2435d253441e3e4f1699c6d', - address: '65.109.85.226:8090', - provider: '' - }, - { - id: '769ebaa9942375e70cebc21a75a2cfda41049d99', - address: '135.181.210.186:26656', - provider: '' - }, - { - id: '8937bdacf1f0c8b2d1ffb4606554eaf08bd55df4', - address: '5.75.255.107:26656', - provider: '' - }, - { - id: '99a0695a7358fa520e6fcd46f91492f7cf205d4d', - address: '34.175.159.249:26656', - provider: '' - }, - { - id: '47401f4ac3f934afad079ddbe4733e66b58b67da', - address: '34.175.244.202:26656', - provider: '' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://quasar-testnet-rpc.polkachu.com/', - provider: 'Polkachu' + "address": "https://quasar-testnet-rpc.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://questnet.quasar-finance.rhinostake.com/', - provider: 'Rhino Stake' + "address": "https://questnet.quasar-finance.rhinostake.com/", + "provider": "Rhino Stake" }, { - address: 'https://quasar-testnet-rpc.swiss-staking.ch', - provider: 'Swiss Staking' + "address": "https://quasar-testnet-rpc.swiss-staking.ch", + "provider": "Swiss Staking" } ], - rest: [ + "rest": [ { - address: 'https://quasar-testnet-api.polkachu.com/', - provider: 'Polkachu' + "address": "https://quasar-testnet-api.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://questnet.quasar-finance.rhinostake.com/', - provider: 'Rhino Stake' + "address": "https://questnet.quasar-finance.rhinostake.com/", + "provider": "Rhino Stake" }, { - address: 'https://quasar-testnet-api.swiss-staking.ch/', - provider: 'Swiss Staking' + "address": "https://quasar-testnet-api.swiss-staking.ch/", + "provider": "Swiss Staking" } ], - grpc: [ + "grpc": [ { - address: 'quasar-testnet-grpc.polkachu.com:18290', - provider: 'Polkachu' + "address": "quasar-testnet-grpc.polkachu.com:18290", + "provider": "Polkachu" }, { - address: 'quasar-testnet-grpc.swiss-staking.ch:10090', - provider: 'Swiss Staking' + "address": "quasar-testnet-grpc.swiss-staking.ch:10090", + "provider": "Swiss Staking" } ] }, - keywords: ['testnet'], - images: [ + "keywords": [ + "testnet" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.svg" } ] - }, - { - $schema: '../chain.schema.json', - chain_name: 'quicksilvertestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Quicksilver Testnet', - chain_id: 'rhye-2', - bech32_prefix: 'quick', - daemon_name: 'quicksilverd', - node_home: '$HOME/.quicksilverd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uqck', - low_gas_price: 0.0001, - average_gas_price: 0.0001, - high_gas_price: 0.00025 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uqck' - } - ] - }, - codebase: { - git_repo: 'https://github.com/ingenuity-build/quicksilver', - recommended_version: 'v1.4.5-rc2', - compatible_versions: ['v1.4.5-rc2'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - ibc_go_version: '5.3.2', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/ingenuity-build/testnets/main/rhye-2/genesis.json' - }, - versions: [ - { - name: 'v1.4.5-rc2', - recommended_version: 'v1.4.5-rc2', - compatible_versions: ['v1.4.5-rc2'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - ibc_go_version: '5.3.2' - } - ] - }, - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg' - }, - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'testnet-seeds.polkachu.com:11156', - provider: 'Polkachu' - } - ], - persistent_peers: [ - { - id: '8e14e58b054248a04be96e4a40d6359e93b636ac', - address: '65.108.65.94:26656' - }, - { - id: '5a3c424c19d9ab694190a7805a2b1a146460d752', - address: '65.108.2.27:26656' - }, + }, + { + "$schema": "../chain.schema.json", + "chain_name": "quicksilvertestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Quicksilver Testnet", + "chain_id": "rhye-2", + "bech32_prefix": "quick", + "daemon_name": "quicksilverd", + "node_home": "$HOME/.quicksilverd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '17574de80eeda21ae1ed94e162ad55b58914c6fa', - address: 'quickt.peers.stavr.tech:20026' - }, + "denom": "uqck", + "low_gas_price": 0.0001, + "average_gas_price": 0.0001, + "high_gas_price": 0.00025 + } + ] + }, + "staking": { + "staking_tokens": [ { - id: 'e6bf55bc9f08958b7518bea455423375db78d1ef', - address: '65.108.13.176:26657' + "denom": "uqck" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.29" + }, + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg" + }, + "apis": { + "rpc": [ { - address: 'http://quick.rpc.t.stavr.tech:20027', - provider: '🔥STAVR🔥' + "address": "http://quick.rpc.t.stavr.tech:20027", + "provider": "🔥STAVR🔥" }, { - address: 'https://quicksilver-testnet-rpc.polkachu.com/', - provider: 'polkachu' + "address": "https://quicksilver-testnet-rpc.polkachu.com/", + "provider": "polkachu" } ], - rest: [ + "rest": [ { - address: 'https://quick.api.t.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://quick.api.t.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://quicksilver-testnet-api.polkachu.com/', - provider: 'polkachu' + "address": "https://quicksilver-testnet-api.polkachu.com/", + "provider": "polkachu" } ], - grpc: [ + "grpc": [ { - address: 'http://quick.grpc.t.stavr.tech:9112', - provider: '🔥STAVR🔥' + "address": "http://quick.grpc.t.stavr.tech:9112", + "provider": "🔥STAVR🔥" }, { - address: 'quicksilver-testnet-grpc.polkachu.com:11190', - provider: 'polkachu' + "address": "quicksilver-testnet-grpc.polkachu.com:11190", + "provider": "polkachu" } ] }, - explorers: [ + "explorers": [ { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Quicksilver', - tx_page: 'https://explorer.stavr.tech/Quicksilver/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Quicksilver/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Quicksilver", + "tx_page": "https://explorer.stavr.tech/Quicksilver/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Quicksilver/account/${accountAddress}" }, { - url: 'https://testnet.quicksilver.explorers.guru', - tx_page: - 'https://testnet.quicksilver.explorers.guru/transaction/${txHash}', - account_page: - 'https://testnet.quicksilver.explorers.guru/account/${accountAddress}' + "url": "https://testnet.quicksilver.explorers.guru", + "tx_page": "https://testnet.quicksilver.explorers.guru/transaction/${txHash}", + "account_page": "https://testnet.quicksilver.explorers.guru/account/${accountAddress}" } ], - images: [ + "images": [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg' + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'qwoyntestnet', - status: 'live', - network_type: 'testnet', - website: 'https://qwoyn.studio/', - pretty_name: 'Qwoyn', - chain_id: 'earendel-1', - bech32_prefix: 'qwoyn', - daemon_name: 'qwoynd', - node_home: '$HOME/.qwoynd', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uqwoyn' - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uqwoyn' - } - ] - }, - codebase: { - git_repo: 'https://github.com/cosmic-horizon/QWOYN', - recommended_version: 'v5.2.0', - compatible_versions: ['v5.2.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmic-horizon/QWOYN/releases/download/v1.0.0/qwoynd_1.0.0_linux_amd64.zip' - }, - cosmos_sdk_version: '0.47.3', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '7.0.1', - ics_enabled: ['ics20-1', 'ics27-1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/cosmic-horizon/testnets/main/higgs-boson-1/genesis.json' - }, - versions: [ - { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - cosmos_sdk_version: '0.42.10', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '3.0.0', - ics_enabled: ['ics20-1', 'ics27-1'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmic-horizon/QWOYN/releases/download/v1.0.0/qwoynd_1.0.0_linux_amd64.zip' - } + "$schema": "../chain.schema.json", + "chain_name": "qwoyntestnet", + "status": "live", + "network_type": "testnet", + "website": "https://qwoyn.studio/", + "pretty_name": "Qwoyn", + "chain_id": "earendel-1", + "bech32_prefix": "qwoyn", + "daemon_name": "qwoynd", + "node_home": "$HOME/.qwoynd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uqwoyn" } ] }, - peers: { - seeds: [], - persistent_peers: [ + "staking": { + "staking_tokens": [ { - id: '3dc3b4b1ebc82f4758e02b7cf0957817c9a012d6', - address: '66.42.74.12:26656' + "denom": "uqwoyn" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.47.3" + }, + "apis": { + "rpc": [ { - address: 'https://testnet-rpc.qwoyn.studio', - provider: 'Qwoyn Studios' + "address": "https://testnet-rpc.qwoyn.studio", + "provider": "Qwoyn Studios" } ], - grpc: [ + "grpc": [ { - address: 'http://66.42.74.12:9090', - provider: 'Qwoyn Studios' + "address": "http://66.42.74.12:9090", + "provider": "Qwoyn Studios" } ], - rest: [ + "rest": [ { - address: 'https://testnet-api.qwoyn.studio', - provider: 'Qwoyn Studios' + "address": "https://testnet-api.qwoyn.studio", + "provider": "Qwoyn Studios" } ] }, - explorers: [ + "explorers": [ { - kind: 'pingfork', - url: 'https://explorer.theamsolutions.info/qwoyn-testnet/', - tx_page: - 'https://explorer.theamsolutions.info/qwoyn-testnet/tx/${txHash}', - account_page: - 'https://explorer.theamsolutions.info/qwoyn-testnet/account/${accountAddress}' + "kind": "pingfork", + "url": "https://explorer.theamsolutions.info/qwoyn-testnet/", + "tx_page": "https://explorer.theamsolutions.info/qwoyn-testnet/tx/${txHash}", + "account_page": "https://explorer.theamsolutions.info/qwoyn-testnet/account/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qwoyntestnet/images/qwoyn.png" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'rsprovidertestnet', - chain_id: 'provider', - pretty_name: 'Replicated Security Provider Testnet', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'cosmos', - daemon_name: 'gaiad', - node_home: '$HOME/.gaia', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uatom', - fixed_min_gas_price: 0.005 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uatom' - } - ] - }, - codebase: { - git_repo: 'https://github.com/cosmos/gaia', - recommended_version: 'v14.1.0', - compatible_versions: ['v14.1.0-rc0', 'v14.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-amd64.exe', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-arm64.exe' - }, - genesis: { - genesis_url: - 'https://github.com/cosmos/testnets/raw/master/replicated-security/provider/provider-genesis.json' - }, - versions: [ - { - name: 'v12', - recommended_version: 'v12.0.0', - compatible_versions: ['v12.0.0-rc0', 'v12.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-windows-amd64.exe', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v12.0.0/gaiad-v12.0.0-windows-arm64.exe' - } - }, - { - name: 'v13', - recommended_version: 'v13.0.0', - compatible_versions: ['v13.0.0-rc0', 'v13.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-windows-amd64.exe', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v13.0.0/gaiad-v13.0.0-windows-arm64.exe' - } - }, + "$schema": "../../chain.schema.json", + "chain_name": "rsprovidertestnet", + "chain_id": "provider", + "pretty_name": "Replicated Security Provider Testnet", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "cosmos", + "daemon_name": "gaiad", + "node_home": "$HOME/.gaia", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v14', - recommended_version: 'v14.1.0', - compatible_versions: ['v14.1.0-rc0', 'v14.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-amd64', - 'linux/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-darwin-arm64', - 'windows/amd64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-amd64.exe', - 'windows/arm64': - 'https://github.com/cosmos/gaia/releases/download/v14.1.0/gaiad-v14.1.0-windows-arm64.exe' - } + "denom": "uatom", + "fixed_min_gas_price": 0.005 } ] }, - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: '08ec17e86dac67b9da70deb20177655495a55407', - address: 'provider-seed-01.rs-testnet.polypore.xyz:26656', - provider: 'Hypha' - }, - { - id: '4ea6e56300a2f37b90e58de5ee27d1c9065cf871', - address: 'provider-seed-02.rs-testnet.polypore.xyz:26656', - provider: 'Hypha' + "denom": "uatom" } - ], - persistent_peers: [] + ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.provider-sentry-01.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://rpc.provider-sentry-01.rs-testnet.polypore.xyz", + "provider": "Hypha" }, { - address: 'https://rpc.provider-sentry-02.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://rpc.provider-sentry-02.rs-testnet.polypore.xyz", + "provider": "Hypha" }, { - address: 'https://rpc.provider-state-sync-01.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://rpc.provider-state-sync-01.rs-testnet.polypore.xyz", + "provider": "Hypha" }, { - address: 'https://rpc.provider-state-sync-02.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://rpc.provider-state-sync-02.rs-testnet.polypore.xyz", + "provider": "Hypha" } ], - rest: [ + "rest": [ { - address: 'https://rest.provider-sentry-01.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://rest.provider-sentry-01.rs-testnet.polypore.xyz", + "provider": "Hypha" }, { - address: 'https://rest.provider-sentry-02.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://rest.provider-sentry-02.rs-testnet.polypore.xyz", + "provider": "Hypha" }, { - address: - 'https://rest.provider-state-sync-01.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://rest.provider-state-sync-01.rs-testnet.polypore.xyz", + "provider": "Hypha" }, { - address: - 'https://rest.provider-state-sync-02.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://rest.provider-state-sync-02.rs-testnet.polypore.xyz", + "provider": "Hypha" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.provider-sentry-01.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://grpc.provider-sentry-01.rs-testnet.polypore.xyz", + "provider": "Hypha" }, { - address: 'https://grpc.provider-sentry-02.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://grpc.provider-sentry-02.rs-testnet.polypore.xyz", + "provider": "Hypha" }, { - address: - 'https://grpc.provider-state-sync-01.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://grpc.provider-state-sync-01.rs-testnet.polypore.xyz", + "provider": "Hypha" }, { - address: - 'https://grpc.provider-state-sync-02.rs-testnet.polypore.xyz', - provider: 'Hypha' + "address": "https://grpc.provider-state-sync-02.rs-testnet.polypore.xyz", + "provider": "Hypha" } ] }, - explorers: [ + "explorers": [ { - kind: 'Mintscan', - url: 'https://testnet.mintscan.io/ics-testnet-provider', - tx_page: - 'https://testnet.mintscan.io/ics-testnet-provider/txs/${txHash}' + "kind": "Mintscan", + "url": "https://testnet.mintscan.io/ics-testnet-provider", + "tx_page": "https://testnet.mintscan.io/ics-testnet-provider/txs/${txHash}" }, { - kind: 'Ping.pub', - url: 'https://explorer.rs-testnet.polypore.xyz/provider', - tx_page: - 'https://explorer.rs-testnet.polypore.xyz/provider/tx/${txHash}' + "kind": "Ping.pub", + "url": "https://explorer.rs-testnet.polypore.xyz/provider", + "tx_page": "https://explorer.rs-testnet.polypore.xyz/provider/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'sagatestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Saga Testnet', - chain_id: 'ssc-testnet-1', - bech32_prefix: 'saga', - daemon_name: 'sscd', - node_home: '$HOME/.ssc', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'utsaga', - fixed_min_gas_price: 0, - low_gas_price: 0.0025, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "sagatestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Saga Testnet", + "chain_id": "ssc-testnet-1", + "bech32_prefix": "saga", + "daemon_name": "sscd", + "node_home": "$HOME/.ssc", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'utsaga' + "denom": "utsaga", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0025, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - codebase: { - git_repo: 'https://github.com/sagaxyz/ssc', - recommended_version: 'v0.1.3', - compatible_versions: ['v0.1.0', 'v0.1.1', 'v0.1.2', 'v0.1.3'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'tendermint', - version: '0.37' - }, - cosmwasm_enabled: false, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/sagaxyz/ssc-public-testnet/main/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v0.1.3', - recommended_version: 'v0.1.3', - compatible_versions: ['v0.1.0', 'v0.1.1', 'v0.1.2', 'v0.1.3'], - cosmos_sdk_version: '0.47', - consensus: { - type: 'tendermint', - version: '0.37' - }, - cosmwasm_enabled: false + "denom": "utsaga" } ] }, - peers: { - seeds: [ - { - id: '3abc213ec08ece180e6fa1443226689ecc4b7749', - address: 'testnet-ssc-eu.sagarpc.io:26656', - provider: 'Saga' - } - ], - persistent_peers: [ - { - id: 'e7f5e5327a8298eb04c29c4115ccf2d6a05ec732', - address: 'testnet-ssc-us-west.sagarpc.io:26656', - provider: 'Saga' - }, - { - id: '239b182bab3252c26fc116bf00301f30f1dea01e', - address: 'testnet-ssc-asia.sagarpc.io:26656', - provider: 'Saga' - }, - { - id: '8d936668e433e9e50cd4e60da218a9fe81950d3f', - address: 'testnet-ssc-us-central.sagarpc.io:26656', - provider: 'Saga' - }, - { - id: '65b64dc2d28e0116da22582cb947ec7bc8c91173', - address: 'testnet-ssc-southamerica.sagarpc.io:26656', - provider: 'Saga' - } - ] + "codebase": { + "cosmos_sdk_version": "0.47", + "cosmwasm_enabled": false }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://testnet-ssc.sagarpc.io/', - provider: 'Saga' + "address": "https://testnet-ssc.sagarpc.io/", + "provider": "Saga" } ], - rest: [ + "rest": [ { - address: 'https://testnet-ssc-lcd.sagarpc.io/', - provider: 'Saga' + "address": "https://testnet-ssc-lcd.sagarpc.io/", + "provider": "Saga" } ], - grpc: [ + "grpc": [ { - address: 'testnet-ssc-grpc.sagarpc.io:443', - provider: 'Saga' + "address": "testnet-ssc-grpc.sagarpc.io:443", + "provider": "Saga" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png" }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://mintscan.io/saga-testnet', - tx_page: 'https://www.mintscan.io/saga-testnet/tx/${txHash}', - account_page: - 'https://mintscan.io/saga-testnet/address/${accountAddress}' + "kind": "mintscan", + "url": "https://mintscan.io/saga-testnet", + "tx_page": "https://www.mintscan.io/saga-testnet/tx/${txHash}", + "account_page": "https://mintscan.io/saga-testnet/address/${accountAddress}" } ], - keywords: ['testnet', 'chainlet'], - images: [ + "keywords": [ + "testnet", + "chainlet" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'secretnetworktestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Secret Network', - chain_id: 'pulsar-3', - pre_fork_chain_name: 'secretnetworktestnet2', - bech32_prefix: 'secret', - daemon_name: 'secretd', - node_home: '$HOME/.secretd', - key_algos: ['secp256k1'], - slip44: 529, - fees: { - fee_tokens: [ - { - denom: 'uscrt', - fixed_min_gas_price: 0.1 - } - ] - }, - codebase: { - git_repo: 'https://github.com/scrtlabs/SecretNetwork', - recommended_version: 'v1.9.3', - binaries: { - 'linux/amd64': - 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.9.3/secretnetwork_1.9.3_testnet_goleveldb_amd64.deb' - }, - compatible_versions: ['v1.9.3'], - genesis: { - genesis_url: 'https://rpc.pulsar3.scrttestnet.com/genesis' - }, - versions: [ - { - name: 'v1.9.3', - recommended_version: 'v1.9.3', - compatible_versions: ['v1.9.3'], - binaries: { - 'linux/amd64': - 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.9.3/secretnetwork_1.9.3_testnet_goleveldb_amd64.deb' - } - } - ] - }, - peers: { - seeds: [ - { - id: 'b5d1bb9194c6148367b64586d6bc0128866fc646', - address: '212.7.211.39:26656', - provider: 'Community' - }, - { - id: 'a3c9c415fe6b46babd16f000c7dbd4d94be6e450', - address: '178.162.151.73:26656', - provider: 'Community' - }, + "$schema": "../../chain.schema.json", + "chain_name": "secretnetworktestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Secret Network", + "chain_id": "pulsar-3", + "pre_fork_chain_name": "secretnetworktestnet2", + "bech32_prefix": "secret", + "daemon_name": "secretd", + "node_home": "$HOME/.secretd", + "key_algos": [ + "secp256k1" + ], + "slip44": 529, + "fees": { + "fee_tokens": [ { - id: 'c088b57ebc7b2cfa2ec99e8b4ffef90bead96b47', - address: '185.56.139.84:26656', - provider: 'Community' + "denom": "uscrt", + "fixed_min_gas_price": 0.1 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.testnet.secretsaturn.net', - provider: '𝕊ecret 𝕊aturn' + "address": "https://rpc.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" }, { - address: 'https://rpc.pulsar.scrttestnet.com', - provider: 'SCRT Testnet Committee' + "address": "https://rpc.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" } ], - rest: [ + "rest": [ { - address: 'https://lcd.testnet.secretsaturn.net', - provider: '𝕊ecret 𝕊aturn' + "address": "https://lcd.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" }, { - address: 'https://api.pulsar.scrttestnet.com', - provider: 'SCRT Testnet Committee' + "address": "https://api.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" } ], - 'grpc-web': [ + "grpc-web": [ { - address: 'https://grpc.testnet.secretsaturn.net', - provider: '𝕊ecret 𝕊aturn' + "address": "https://grpc.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" }, { - address: 'https://grpc.pulsar.scrttestnet.com', - provider: 'SCRT Testnet Committee' + "address": "https://grpc.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://testnet.ping.pub/secret', - tx_page: 'https://testnet.ping.pub/secret/tx/${txHash}' + "kind": "ping.pub", + "url": "https://testnet.ping.pub/secret", + "tx_page": "https://testnet.ping.pub/secret/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'secretnetworktestnet2', - status: 'killed', - network_type: 'testnet', - pretty_name: 'Secret Network Testnet', - chain_id: 'pulsar-2', - bech32_prefix: 'secret', - daemon_name: 'secretd', - node_home: '$HOME/.secretd', - key_algos: ['secp256k1'], - slip44: 529, - fees: { - fee_tokens: [ - { - 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_testnet_goleveldb_amd64.deb' - }, - compatible_versions: ['v1.3.0', 'v1.3.1'], - genesis: { - genesis_url: - 'https://storage.googleapis.com/stakeordie-pulsar-2/genesis.json' - }, - versions: [ - { - name: 'v1.3.1', - recommended_version: 'v1.3.1', - compatible_versions: ['v1.3.0', 'v1.3.1'], - binaries: { - 'linux/amd64': - 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.3.1/secretnetwork_1.3.1_testnet_goleveldb_amd64.deb' - } - } - ] - }, - peers: { - seeds: [ - { - id: '7a421a6f5f1618f7b6fdfbe4854985746f85d263', - address: '108.62.104.102:26656', - provider: 'Community' - }, - { - id: 'a72e376dca664bac55e8ce55a2e972a8ae2c995e', - address: '144.202.126.98:26656', - provider: 'Community' - }, + "$schema": "../../chain.schema.json", + "chain_name": "secretnetworktestnet2", + "status": "killed", + "network_type": "testnet", + "pretty_name": "Secret Network Testnet", + "chain_id": "pulsar-2", + "bech32_prefix": "secret", + "daemon_name": "secretd", + "node_home": "$HOME/.secretd", + "key_algos": [ + "secp256k1" + ], + "slip44": 529, + "fees": { + "fee_tokens": [ { - id: 'f95ba3da4a9eec559397f4b47b1539e24af6904c', - address: '52.190.249.47:26656', - provider: 'Community' + "denom": "uscrt", + "fixed_min_gas_price": 0.1 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.testnet.secretsaturn.net', - provider: '𝕊ecret 𝕊aturn' + "address": "https://rpc.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" }, { - address: 'https://rpc.pulsar.scrttestnet.com', - provider: 'SCRT Testnet Committee' + "address": "https://rpc.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" } ], - rest: [ + "rest": [ { - address: 'http://testnet.securesecrets.org:1317', - provider: 'Trivium | Trivium.Network' + "address": "http://testnet.securesecrets.org:1317", + "provider": "Trivium | Trivium.Network" }, { - address: 'https://lcd.testnet.secretsaturn.net', - provider: '𝕊ecret 𝕊aturn' + "address": "https://lcd.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" }, { - address: 'https://api.pulsar.scrttestnet.com', - provider: 'SCRT Testnet Committee' + "address": "https://api.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" } ], - 'grpc-web': [ + "grpc-web": [ { - address: 'https://grpc.testnet.secretsaturn.net', - provider: '𝕊ecret 𝕊aturn' + "address": "https://grpc.testnet.secretsaturn.net", + "provider": "𝕊ecret 𝕊aturn" }, { - address: 'https://grpc.pulsar.scrttestnet.com', - provider: 'SCRT Testnet Committee' + "address": "https://grpc.pulsar.scrttestnet.com", + "provider": "SCRT Testnet Committee" } ] }, - explorers: [ + "explorers": [ { - kind: 'secret nodes', - url: 'https://secretnodes.com/secret/chains/pulsar-2', - tx_page: - 'https://secretnodes.com/secret/chains/pulsar-2/transactions/${txHash}' + "kind": "secret nodes", + "url": "https://secretnodes.com/secret/chains/pulsar-2", + "tx_page": "https://secretnodes.com/secret/chains/pulsar-2/transactions/${txHash}" }, { - kind: 'ping.pub', - url: 'https://testnet.ping.pub/secret', - tx_page: 'https://testnet.ping.pub/secret/tx/${txHash}' + "kind": "ping.pub", + "url": "https://testnet.ping.pub/secret", + "tx_page": "https://testnet.ping.pub/secret/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'seidevnet3', - chain_id: 'sei-devnet-3', - pretty_name: 'Sei Devnet 3', - status: 'live', - network_type: 'devnet', - bech32_prefix: 'sei', - daemon_name: 'seid', - node_home: '$HOME/.sei', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'usei', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/sei-protocol/sei-chain', - recommended_version: '2.0.40beta', - compatible_versions: [ - '2.0.27beta', - '2.0.29eta', - '2.0.31beta', - '2.0.32beta', - '2.0.36beta', - '2.0.37beta', - '2.0.39beta', - '2.0.40beta' - ], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/sei-protocol/testnet/main/sei-devnet-3/genesis.json' - }, - versions: [ - { - name: '2.0.40beta', - recommended_version: '2.0.40beta', - compatible_versions: [ - '2.0.27beta', - '2.0.29eta', - '2.0.31beta', - '2.0.32beta', - '2.0.36beta', - '2.0.37beta', - '2.0.39beta', - '2.0.40beta' - ] - } - ] - }, - peers: { - seeds: [ + "$schema": "../../chain.schema.json", + "chain_name": "seidevnet3", + "chain_id": "sei-devnet-3", + "pretty_name": "Sei Devnet 3", + "status": "live", + "network_type": "devnet", + "bech32_prefix": "sei", + "daemon_name": "seid", + "node_home": "$HOME/.sei", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: 'f97a75fb69d3a5fe893dca7c8d238ccc0bd66a8f', - address: 'sei-devnet-seed.p2p.brocha.in:30515', - provider: 'Brochain' + "denom": "usei", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.sei-devnet-3.seinetwork.io', - provider: 'Sei Foundation' + "address": "https://rpc.sei-devnet-3.seinetwork.io", + "provider": "Sei Foundation" }, { - address: 'https://sei-testnet-2-rpc.brocha.in', - provider: 'Brochain' + "address": "https://sei-testnet-2-rpc.brocha.in", + "provider": "Brochain" } ], - rest: [ + "rest": [ { - address: 'https://rest.sei-devnet-3.seinetwork.io', - provider: 'Sei Foundation' + "address": "https://rest.sei-devnet-3.seinetwork.io", + "provider": "Sei Foundation" }, { - address: 'https://sei-testnet-2-rest.brocha.in', - provider: 'Brochain' + "address": "https://sei-testnet-2-rest.brocha.in", + "provider": "Brochain" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.sei-devnet-3.seinetwork.io', - provider: 'Sei Foundation' + "address": "https://grpc.sei-devnet-3.seinetwork.io", + "provider": "Sei Foundation" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorers.guru', - url: 'https://devnet.sei.explorers.guru', - tx_page: 'https://devnet.sei.explorers.guru/transaction/${txHash}' + "kind": "explorers.guru", + "url": "https://devnet.sei.explorers.guru", + "tx_page": "https://devnet.sei.explorers.guru/transaction/${txHash}" }, { - kind: 'Brochain', - url: 'https://testnet-explorer.brocha.in/sei%20atlantic%202', - tx_page: - 'https://testnet-explorer.brocha.in/sei%20atlantic%202/tx/${txHash}' + "kind": "Brochain", + "url": "https://testnet-explorer.brocha.in/sei%20atlantic%202", + "tx_page": "https://testnet-explorer.brocha.in/sei%20atlantic%202/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'seitestnet', - chain_id: 'atlantic-1', - pretty_name: 'Sei Atlantic', - status: 'live', - network_type: 'testnet', - website: 'https://www.sei.io/', - bech32_prefix: 'sei', - daemon_name: 'seid', - node_home: '$HOME/.sei', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'usei', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/sei-protocol/sei-chain', - recommended_version: '1.0.6beta', - compatible_versions: ['1.0.6beta'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/sei-protocol/testnet/main/sei-incentivized-testnet/genesis.json' - }, - versions: [ + "$schema": "../../chain.schema.json", + "chain_name": "seitestnet", + "chain_id": "atlantic-1", + "pretty_name": "Sei Atlantic", + "status": "live", + "network_type": "testnet", + "website": "https://www.sei.io/", + "bech32_prefix": "sei", + "daemon_name": "seid", + "node_home": "$HOME/.sei", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: '1.0.6beta', - recommended_version: '1.0.6beta', - compatible_versions: ['1.0.6beta'] + "denom": "usei", + "fixed_min_gas_price": 0 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' - }, - description: - 'Sei is the fastest Layer 1 blockchain, designed to scale with the industry.', - peers: { - seeds: [ - { - id: 'f97a75fb69d3a5fe893dca7c8d238ccc0bd66a8f', - address: 'sei-testnet-seed.p2p.brocha.in:30514', - provider: 'Brochain' - } - ] + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg" }, - apis: { - rpc: [ + "description": "Sei is the fastest Layer 1 blockchain, designed to scale with the industry.", + "apis": { + "rpc": [ { - address: 'https://sei-testnet-rpc.brocha.in', - provider: 'Brochain' + "address": "https://sei-testnet-rpc.brocha.in", + "provider": "Brochain" } ], - rest: [ + "rest": [ { - address: 'https://sei-testnet-rest.brocha.in', - provider: 'Brochain' + "address": "https://sei-testnet-rest.brocha.in", + "provider": "Brochain" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorers.guru', - url: 'https://sei.explorers.guru', - tx_page: 'https://sei.explorers.guru/transaction/${txHash}' + "kind": "explorers.guru", + "url": "https://sei.explorers.guru", + "tx_page": "https://sei.explorers.guru/transaction/${txHash}" }, { - kind: 'Brochain', - url: 'https://testnet-explorer.brocha.in/sei', - tx_page: 'https://testnet-explorer.brocha.in/sei/tx/${txHash}' + "kind": "Brochain", + "url": "https://testnet-explorer.brocha.in/sei", + "tx_page": "https://testnet-explorer.brocha.in/sei/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'seitestnet2', - chain_id: 'atlantic-2', - pretty_name: 'Sei Atlantic 2', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'sei', - daemon_name: 'seid', - node_home: '$HOME/.sei', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'usei', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/sei-protocol/sei-chain', - recommended_version: '2.0.40beta', - compatible_versions: [ - '2.0.34beta', - '2.0.37beta', - '2.0.39beta', - '2.0.40beta' - ], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/sei-protocol/testnet/main/atlantic-2/genesis.json' - }, - versions: [ - { - name: '2.0.40beta', - recommended_version: '2.0.40beta', - compatible_versions: [ - '2.0.34beta', - '2.0.37beta', - '2.0.39beta', - '2.0.40beta' - ] - } - ] - }, - peers: { - seeds: [ + "$schema": "../../chain.schema.json", + "chain_name": "seitestnet2", + "chain_id": "atlantic-2", + "pretty_name": "Sei Atlantic 2", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "sei", + "daemon_name": "seid", + "node_home": "$HOME/.sei", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: 'f97a75fb69d3a5fe893dca7c8d238ccc0bd66a8f', - address: 'sei-testnet-2-seed.p2p.brocha.in:30587', - provider: 'Brochain' + "denom": "usei", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://sei-testnet-2-rpc.brocha.in', - provider: 'Brochain' + "address": "https://sei-testnet-2-rpc.brocha.in", + "provider": "Brochain" } ], - rest: [ + "rest": [ { - address: 'https://sei-testnet-2-rest.brocha.in', - provider: 'Brochain' + "address": "https://sei-testnet-2-rest.brocha.in", + "provider": "Brochain" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorers.guru', - url: 'https://testnet.sei.explorers.guru', - tx_page: 'https://testnet.sei.explorers.guru/transaction/${txHash}' + "kind": "explorers.guru", + "url": "https://testnet.sei.explorers.guru", + "tx_page": "https://testnet.sei.explorers.guru/transaction/${txHash}" }, { - kind: 'Brochain', - url: 'https://testnet-explorer.brocha.in/sei%20atlantic%202', - tx_page: - 'https://testnet-explorer.brocha.in/sei%20atlantic%202/tx/${txHash}' + "kind": "Brochain", + "url": "https://testnet-explorer.brocha.in/sei%20atlantic%202", + "tx_page": "https://testnet-explorer.brocha.in/sei%20atlantic%202/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'selfchaindevnet', - chain_id: 'self-dev-1', - pretty_name: 'Devnet 1', - status: 'live', - network_type: 'testnet', - bech32_prefix: 'self', - daemon_name: 'selfchaind', - node_home: '$HOME/.selfchain', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uself', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://docs.selfchain.xyz/nodes-and-validators/releases', - recommended_version: '0.2.2', - compatible_versions: ['0.2.2'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/hotcrosscom/selfchain-genesis/main/networks/devnet/genesis.json' - }, - versions: [ - { - name: '0.2.2', - recommended_version: '0.2.2', - compatible_versions: ['0.2.2'] - } - ] - }, - peers: { - seeds: [ - { - id: '94a7baabb2bcc00c7b47cbaa58adf4f433df9599', - address: '157.230.119.165:26656' - }, - { - id: 'd3b5b6ca39c8c62152abbeac4669816166d96831', - address: '165.22.24.236:26656' - }, + "$schema": "../../chain.schema.json", + "chain_name": "selfchaindevnet", + "chain_id": "self-dev-1", + "pretty_name": "Devnet 1", + "status": "live", + "network_type": "testnet", + "bech32_prefix": "self", + "daemon_name": "selfchaind", + "node_home": "$HOME/.selfchain", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: '35f478c534e2d58dc2c4acdf3eb22eeb6f23357f', - address: '165.232.125.66:26656' + "denom": "uself", + "fixed_min_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc-devnet.selfchain.xyz', - provider: 'Selfchain' + "address": "https://rpc-devnet.selfchain.xyz", + "provider": "Selfchain" } ], - rest: [ + "rest": [ { - address: 'https://api-devnet.selfchain.xyz/', - provider: 'Selfchain' + "address": "https://api-devnet.selfchain.xyz/", + "provider": "Selfchain" } ] }, - explorers: [ + "explorers": [ { - kind: 'Selfchain', - url: 'https://explorer-devnet.selfchain.xyz', - tx_page: - 'https://explorer-devnet.selfchain.xyz/self/transactions/${txHash}' + "kind": "Selfchain", + "url": "https://explorer-devnet.selfchain.xyz", + "tx_page": "https://explorer-devnet.selfchain.xyz/self/transactions/${txHash}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'sgetestnet', - chain_id: 'sge-network-3', - pretty_name: 'SGE Testnet', - status: 'live', - network_type: 'testnet', - website: 'sgenetwork.io', - bech32_prefix: 'sge', - daemon_name: 'usge', - node_home: '$HOME/.sged', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'usge', - fixed_min_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/sge-network/sge', - recommended_version: 'v1.0.1', - compatible_versions: ['v1.0.1'] - }, - peers: { - seeds: [ - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:17756', - provider: 'LavenderFive' - }, - { - id: '7c02373bd6cee62b5f3a59b5b9334f2288b3c0ef', - address: 'rpc-t.sge.nodestake.top:666', - provider: 'NodeStake' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'testnet-seeds.polkachu.com:17756', - provider: 'Polkachu' - }, - { - id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', - address: 'seed.rhinostake.com:17756', - provider: 'Rhino' - } - ], - persistent_peers: [ - { - id: '51e4e7b04d2f669f5efa53e8d95891fa04e4c5b9', - address: '206.125.33.62:26656', - provider: 'Artifact' - }, - { - id: '59724f5c6232b1d10507e08b9a9f2ff14181a779', - address: '51.195.61.9:20656', - provider: 'KingsNode' - }, - { - id: '3819c7aebf9ec5f3694747ea3c061b91f555c590', - address: '148.251.177.108:17756', - provider: 'Polkachu' - }, - { - id: '58556b5fb572e20d41ce686149ab7b1646ad63a9', - address: '65.108.15.170:26656', - provider: 'ramuchi.tech' - }, + "$schema": "../chain.schema.json", + "chain_name": "sgetestnet", + "chain_id": "sge-network-3", + "pretty_name": "SGE Testnet", + "status": "live", + "network_type": "testnet", + "website": "sgenetwork.io", + "bech32_prefix": "sge", + "daemon_name": "usge", + "node_home": "$HOME/.sged", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: 'e2c5f2a902b7e6b8c006008e962ab4ddd70cdd78', - address: 'sge.peers-t.stavr.tech:1146', - provider: '🔥STAVR🔥' + "denom": "usge", + "fixed_min_gas_price": 0 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.svg' + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.testnet.sgenetwork.io', - provider: 'Sge Network' + "address": "https://rpc.testnet.sgenetwork.io", + "provider": "Sge Network" }, { - address: 'https://testnet-saage-rpc.lavenderfive.com/ ', - provider: 'Lavender.Five' + "address": "https://testnet-saage-rpc.lavenderfive.com/ ", + "provider": "Lavender.Five" }, { - address: 'https://saage-testnet-rpc.polkachu.com/', - provider: 'Polkachu' + "address": "https://saage-testnet-rpc.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://rpc-t.sge.nodestake.top/', - provider: 'Nodestake.top' + "address": "https://rpc-t.sge.nodestake.top/", + "provider": "Nodestake.top" }, { - address: 'https://sge.rpc.t.stavr.tech:443', - provider: '🔥STAVR🔥' + "address": "https://sge.rpc.t.stavr.tech:443", + "provider": "🔥STAVR🔥" } ], - rest: [ + "rest": [ { - address: 'https://api.testnet.sgenetwork.io', - provider: 'Sge Network' + "address": "https://api.testnet.sgenetwork.io", + "provider": "Sge Network" }, { - address: 'https://api-t.sge.nodestake.top/', - provider: 'Nodestake.top' + "address": "https://api-t.sge.nodestake.top/", + "provider": "Nodestake.top" }, { - address: 'https://saage-testnet-api.polkachu.com/', - provider: 'Polkachu' + "address": "https://saage-testnet-api.polkachu.com/", + "provider": "Polkachu" }, { - address: 'https://sge.api.t.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://sge.api.t.stavr.tech", + "provider": "🔥STAVR🔥" } ] }, - explorers: [ + "explorers": [ { - kind: 'Sge BlockExplorer', - url: 'https://blockexplorer.testnet.sgenetwork.io/', - tx_page: - 'https://blockexplorer.testnet.sgenetwork.io/sge-network/tx/${txHash}' + "kind": "Sge BlockExplorer", + "url": "https://blockexplorer.testnet.sgenetwork.io/", + "tx_page": "https://blockexplorer.testnet.sgenetwork.io/sge-network/tx/${txHash}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Sge-Testnet', - tx_page: 'https://explorer.stavr.tech/Sge-Testnet/tx/${txHash}', - account_page: - 'https://explorer.stavr.tech/Sge-Testnet/account/${accountAddress}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Sge-Testnet", + "tx_page": "https://explorer.stavr.tech/Sge-Testnet/tx/${txHash}", + "account_page": "https://explorer.stavr.tech/Sge-Testnet/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.svg" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'sixtestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'SIX Fivenet', - chain_id: 'fivenet', - bech32_prefix: '6x', - daemon_name: 'sixd', - node_home: '$HOME/.six', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'usix', - fixed_min_gas_price: 1.25, - low_gas_price: 1.25, - average_gas_price: 1.5, - high_gas_price: 1.75 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'usix' - } - ] - }, - codebase: { - git_repo: 'https://github.com/thesixnetwork/six-protocol', - recommended_version: 'v3.1.1-fn', - compatible_versions: ['v3.1.1-fn'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - genesis: { - genesis_url: 'https://github.com/thesixnetwork/chain-info/genesis.json' - }, - versions: [ - { - name: 'v3.1.1-fn', - recommended_version: 'v3.1.1-fn', - compatible_versions: ['v3.1.1-fn'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - } + "$schema": "../../chain.schema.json", + "chain_name": "sixtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "SIX Fivenet", + "chain_id": "fivenet", + "bech32_prefix": "6x", + "daemon_name": "sixd", + "node_home": "$HOME/.six", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "usix", + "fixed_min_gas_price": 1.25, + "low_gas_price": 1.25, + "average_gas_price": 1.5, + "high_gas_price": 1.75 } ] }, - peers: { - seeds: [ - { - id: '323776367baa815d7bb1212186f06a25cc26d10a', - address: '43.225.142.224:26656', - provider: '' - } - ], - persistent_peers: [ - { - id: '85c7e81f3880c3029dec49fdb74b1ae3135922c9', - address: '34.142.247.36:26656', - provider: '' - }, + "staking": { + "staking_tokens": [ { - id: 'e4cee9bc76c66fa0ddf640c614ebc1f3e7f261cd', - address: '34.124.174.160:26656', - provider: '' + "denom": "usix" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.45" + }, + "apis": { + "rpc": [ { - address: 'https://rpc1.fivenet.sixprotocol.net:443', - provider: '' + "address": "https://rpc1.fivenet.sixprotocol.net:443", + "provider": "" } ], - rest: [ + "rest": [ { - address: 'https://api1.fivenet.sixprotocol.net:443', - provider: '' + "address": "https://api1.fivenet.sixprotocol.net:443", + "provider": "" } ] }, - explorers: [ + "explorers": [ { - kind: 'sixscan', - url: 'https://sixscan.io/fivenet', - tx_page: 'https://sixscan.io/fivenet/tx/${txHash}' + "kind": "sixscan", + "url": "https://sixscan.io/fivenet", + "tx_page": "https://sixscan.io/fivenet/tx/${txHash}" } ], - keywords: ['sixprotocol', 'testnet'] + "keywords": [ + "sixprotocol", + "testnet" + ] }, { - $schema: '../../chain.schema.json', - chain_name: 'sourcetestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Source Testnet', - chain_id: 'source-testnet', - bech32_prefix: 'source', - daemon_name: 'sourced', - node_home: '$HOME/.source', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'usource', - low_gas_price: 0.03, - average_gas_price: 0.04, - high_gas_price: 0.05 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "sourcetestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Source Testnet", + "chain_id": "source-testnet", + "bech32_prefix": "source", + "daemon_name": "sourced", + "node_home": "$HOME/.source", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'usource' + "denom": "usource", + "low_gas_price": 0.03, + "average_gas_price": 0.04, + "high_gas_price": 0.05 } ] }, - codebase: { - git_repo: 'https://github.com/Source-Protocol-Cosmos/source', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.25', - cosmwasm_enabled: true, - ibc_go_version: '2.2.0', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/Source-Protocol-Cosmos/testnets/master/sourcechain-testnet/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v1.0.0', - recommended_version: 'v1.0.0', - compatible_versions: ['v1.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.25', - cosmwasm_enabled: true, - ibc_go_version: '2.2.0' + "denom": "usource" } ] }, - peers: { - seeds: [ - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'sourcechain-mainnet-seed.autostake.net:26976', - provider: 'autostake' - } - ], - persistent_peers: [ - { - id: '6ca675f9d949d5c9afc8849adf7b39bc7fccf74f', - address: '164.92.98.17:26656', - provider: 'Source' - }, - { - id: 'b02e2bd359623aeee2d4fad94d37af8b064508f6', - address: '167.235.224.141:26656', - provider: '' - }, - { - id: 'bdf9b6ad38b803358e7fd99f35b14795ebcd8144', - address: '190.2.155.67:29656', - provider: '' - } - ] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.25" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc-t.source.nodestake.top', - provider: 'Nodestake' + "address": "https://rpc-t.source.nodestake.top", + "provider": "Nodestake" }, { - address: 'https://rpc-source.nodeist.net', - provider: 'Nodeist' + "address": "https://rpc-source.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://source-testnet.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://source-testnet.rpc.kjnodes.com", + "provider": "kjnodes" } ], - rest: [ + "rest": [ { - address: 'https://api-t.source.nodestake.top', - provider: 'Nodestake' + "address": "https://api-t.source.nodestake.top", + "provider": "Nodestake" }, { - address: 'https://api-source.nodeist.net', - provider: 'Nodeist' + "address": "https://api-source.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://source.api.t.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://source.api.t.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://source-testnet.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://source-testnet.api.kjnodes.com", + "provider": "kjnodes" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc-t.source.nodestake.top', - provider: 'nodestake' + "address": "https://grpc-t.source.nodestake.top", + "provider": "nodestake" } ] }, - explorers: [ + "explorers": [ { - kind: 'Nodestake', - url: 'https://explorer.nodestake.top/source-testnet', - tx_page: 'https://explorer.nodestake.top/source-testnet/tx/${txHash}' + "kind": "Nodestake", + "url": "https://explorer.nodestake.top/source-testnet", + "tx_page": "https://explorer.nodestake.top/source-testnet/tx/${txHash}" }, { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Source', - tx_page: 'https://explorer.stavr.tech/Source/tx/${txHash}' + "kind": "🔥STAVR🔥", + "url": "https://explorer.stavr.tech/Source", + "tx_page": "https://explorer.stavr.tech/Source/tx/${txHash}" }, { - kind: 'kjnodes', - url: 'https://explorer.kjnodes.com/source-testnet', - tx_page: 'https://explorer.kjnodes.com/source-testnet/txs/${txHash}' + "kind": "kjnodes", + "url": "https://explorer.kjnodes.com/source-testnet", + "tx_page": "https://explorer.kjnodes.com/source-testnet/txs/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'stargazetestnet', - status: 'live', - network_type: 'testnet', - website: 'https://stargaze.zone/', - pretty_name: 'Stargaze Testnet', - chain_id: 'elgafar-1', - bech32_prefix: 'stars', - daemon_name: 'starsd', - node_home: '$HOME/.starsd', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ustars', - low_gas_price: 0.03, - average_gas_price: 0.04, - high_gas_price: 0.05 - } - ] - }, - codebase: { - git_repo: 'https://github.com/public-awesome/stargaze', - recommended_version: 'v7.0.0', - compatible_versions: ['v7.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.28', - cosmwasm_enabled: true, - genesis: { - genesis_url: - 'https://github.com/public-awesome/testnets/blob/main/elgafar-1/genesis/genesis.tar.gz?raw=true' - }, - versions: [ + "$schema": "../../chain.schema.json", + "chain_name": "stargazetestnet", + "status": "live", + "network_type": "testnet", + "website": "https://stargaze.zone/", + "pretty_name": "Stargaze Testnet", + "chain_id": "elgafar-1", + "bech32_prefix": "stars", + "daemon_name": "starsd", + "node_home": "$HOME/.starsd", + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v7.0.0', - recommended_version: 'v7.0.0', - compatible_versions: ['v7.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.28', - cosmwasm_enabled: true + "denom": "ustars", + "low_gas_price": 0.03, + "average_gas_price": 0.04, + "high_gas_price": 0.05 } ] }, - peers: { - seeds: [], - persistent_peers: [ - { - id: 'e31886cba90a06e165b0df18cc5c8ae015ecd23e', - address: '209.159.152.82:26656', - provider: 'stargaze' - }, - { - id: 'de00d2d65594b672469ecd65826a94ec1be80b9f', - address: '208.73.205.226:26656', - provider: 'stargaze' - } - ] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.28" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.elgafar-1.stargaze-apis.com', - provider: 'Stargaze Foundation' + "address": "https://rpc.elgafar-1.stargaze-apis.com", + "provider": "Stargaze Foundation" } ], - rest: [ + "rest": [ { - address: 'https://rest.elgafar-1.stargaze-apis.com', - provider: 'Stargaze Foundation' + "address": "https://rest.elgafar-1.stargaze-apis.com", + "provider": "Stargaze Foundation" } ], - grpc: [ + "grpc": [ { - address: 'http://grpc-1.elgafar-1.stargaze-apis.com:26660', - provider: 'Stargaze Foundation' + "address": "http://grpc-1.elgafar-1.stargaze-apis.com:26660", + "provider": "Stargaze Foundation" }, { - address: 'http://grpc-2.elgafar-1.stargaze-apis.com:26660', - provider: 'Stargaze Foundation' + "address": "http://grpc-2.elgafar-1.stargaze-apis.com:26660", + "provider": "Stargaze Foundation" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://testnet-explorer.publicawesome.dev/stargaze', - tx_page: - 'https://testnet-explorer.publicawesome.dev/stargaze/tx/${txHash}' + "kind": "ping.pub", + "url": "https://testnet-explorer.publicawesome.dev/stargaze", + "tx_page": "https://testnet-explorer.publicawesome.dev/stargaze/tx/${txHash}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'statesettestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Stateset Testnet', - chain_id: 'stateset-1-testnet', - bech32_prefix: 'stateset', - daemon_name: 'statesetd', - node_home: '$HOME/.statesetd', - 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' - }, - genesis: { - genesis_url: 'https://rpc.stateset.zone/genesis' - }, - versions: [ - { - name: 'v1.0.0', - 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: [ + "$schema": "../chain.schema.json", + "chain_name": "statesettestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Stateset Testnet", + "chain_id": "stateset-1-testnet", + "bech32_prefix": "stateset", + "daemon_name": "statesetd", + "node_home": "$HOME/.statesetd", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - id: 'DBC49AA829D16329C1772F7EF76730939E606A41', - address: 'rpc.stateset.zone:26656', - provider: 'stateset' + "denom": "ustate", + "fixed_min_gas_price": 0 } - ], - persistent_peers: [] + ] }, - apis: { - rpc: [ + "codebase": {}, + "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: 'bigdipper', - url: 'https://explore.stateset.zone', - tx_page: 'https://explore.stateset.zone/transactions/${txHash}' + "kind": "bigdipper", + "url": "https://explore.stateset.zone", + "tx_page": "https://explore.stateset.zone/transactions/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'stridetestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Stride Testnet', - chain_id: 'stride-testnet-1', - bech32_prefix: 'stride', - daemon_name: 'strided', - node_home: '$HOME/.stride', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'ustrd', - fixed_min_gas_price: 0 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "stridetestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Stride Testnet", + "chain_id": "stride-testnet-1", + "bech32_prefix": "stride", + "daemon_name": "strided", + "node_home": "$HOME/.stride", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'ustrd' + "denom": "ustrd", + "fixed_min_gas_price": 0 } ] }, - codebase: { - git_repo: 'https://github.com/Stride-Labs/stride', - recommended_version: 'v8.0.0-testnet', - compatible_versions: ['v8.0.0-testnet'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '5.1.0', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/Stride-Labs/mainnet/main/testnet/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v8.0.0-testnet', - recommended_version: 'v8.0.0-testnet', - compatible_versions: ['v8.0.0-testnet'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '5.1.0' + "denom": "ustrd" } ] }, - peers: { - seeds: [], - persistent_peers: [] + "codebase": { + "cosmos_sdk_version": "0.46" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://stride.testnet-1.stridenet.co', - provider: 'Stride' + "address": "https://stride.testnet-1.stridenet.co", + "provider": "Stride" } ], - rest: [ + "rest": [ { - address: 'https://stride.testnet-1.stridenet.co/api', - provider: 'Stride' + "address": "https://stride.testnet-1.stridenet.co/api", + "provider": "Stride" } ], - grpc: [] + "grpc": [] }, - explorers: [ + "explorers": [ { - kind: 'PingPub', - url: 'https://testnet.ping.pub/stride', - tx_page: 'https://testnet.ping.pub/stride/tx/${txHash}' + "kind": "PingPub", + "url": "https://testnet.ping.pub/stride", + "tx_page": "https://testnet.ping.pub/stride/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'temporaltestnet', - chain_id: 'temporal-test-2', - pretty_name: 'Temporal Testnet', - status: 'killed', - network_type: 'testnet', - bech32_prefix: 'temporal', - daemon_name: 'temporald', - node_home: '$HOME/.temporal', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'utprl', - fixed_min_gas_price: 0 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'utprl' - } - ] - }, - codebase: { - git_repo: 'https://github.com/temporal-zone/temporal', - recommended_version: 'v0.4.0', - compatible_versions: ['v0.4.0'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/temporal-zone/temporal-testnet/main/genesis/genesis.json' - }, - versions: [ + "$schema": "../../chain.schema.json", + "chain_name": "temporaltestnet", + "chain_id": "temporal-test-2", + "pretty_name": "Temporal Testnet", + "status": "killed", + "network_type": "testnet", + "bech32_prefix": "temporal", + "daemon_name": "temporald", + "node_home": "$HOME/.temporal", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v0.4.0', - recommended_version: 'v0.4.0', - compatible_versions: ['v0.4.0'] + "denom": "utprl", + "fixed_min_gas_price": 0 } ] }, - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:24156' + "denom": "utprl" } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://rpc.yieldmos.com/temporal-test-2', - provider: 'Yieldmos' + "address": "https://rpc.yieldmos.com/temporal-test-2", + "provider": "Yieldmos" }, { - address: 'https://testnet-temporal-rpc.lavenderfive.com:443', - provider: 'Lavender.Five' + "address": "https://testnet-temporal-rpc.lavenderfive.com:443", + "provider": "Lavender.Five" } ], - rest: [ + "rest": [ { - address: 'https://lcd.yieldmos.com/temporal-test-2', - provider: 'Yieldmos' + "address": "https://lcd.yieldmos.com/temporal-test-2", + "provider": "Yieldmos" }, { - address: 'https://testnet-temporal-api.lavenderfive.com:443', - provider: 'Lavender.Five' + "address": "https://testnet-temporal-api.lavenderfive.com:443", + "provider": "Lavender.Five" } ], - grpc: [ + "grpc": [ { - address: '142.132.157.153:24190', - provider: 'Yieldmos' + "address": "142.132.157.153:24190", + "provider": "Yieldmos" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://testnet.explorer.thesilverfox.pro/temporal', - tx_page: - 'https://testnet.explorer.thesilverfox.pro/temporal/tx/${txHash}' + "kind": "ping.pub", + "url": "https://testnet.explorer.thesilverfox.pro/temporal", + "tx_page": "https://testnet.explorer.thesilverfox.pro/temporal/tx/${txHash}" }, { - kind: 'Nodes.Guru', - url: 'https://testnet.temporal.explorers.guru', - tx_page: 'https://testnet.temporal.explorers.guru/transaction/${txHash}' + "kind": "Nodes.Guru", + "url": "https://testnet.temporal.explorers.guru", + "tx_page": "https://testnet.temporal.explorers.guru/transaction/${txHash}" }, { - kind: 'ping.pub', - url: 'https://testnet.ping.pub/temporal', - tx_page: 'https://testnet.ping.pub/temporal/tx/${txHash}' + "kind": "ping.pub", + "url": "https://testnet.ping.pub/temporal", + "tx_page": "https://testnet.ping.pub/temporal/tx/${txHash}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'terpnettestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Terp-Network', - chain_id: '90u-2', - bech32_prefix: 'terp', - daemon_name: 'terpd', - node_home: '$HOME/.terp', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uthiolx', - fixed_min_gas_price: 0.5, - low_gas_price: 0.75, - average_gas_price: 1, - high_gas_price: 1.25 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uterpx' - } - ] - }, - codebase: { - git_repo: 'github.com/terpnetwork/terp-core.git', - recommended_version: 'v4.1.testnet', - consensus: { - type: 'cometbft', - version: 'v0.37.2' - }, - compatible_versions: ['v3-pigeonfall'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/terpnetwork/test-net/master/90u-2/genesis.json' - }, - binaries: { - 'linux/amd64': - 'https://github.com/terpnetwork/terp-core/releases/download/v4.1.testnet/terpd-linux-amd64', - 'linux/arm64': - 'https://github.com/terpnetwork/terp-core/releases/download/v4.1.testnet/terpd-linux-arm64' - }, - versions: [ - { - name: 'v1.0.0-stable', - recommended_version: 'v1.0.0-stable', - compatible_versions: ['v1.0.0', 'v1.0.0-stable'], - consensus: { - type: 'cometbft', - version: '0.37.0' - } - }, - { - name: 'huckleberry', - recommended_version: 'huckleberry', - compatible_versions: ['huckleberry'], - consensus: { - type: 'cometbft', - version: '0.37.0' - } - }, - { - name: 'barberry', - recommended_version: 'barberry', - compatible_versions: ['barberry'], - consensus: { - type: 'cometbft', - version: '0.37.1' - } - }, - { - name: 'v2.0.0', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - consensus: { - type: 'cometbft', - version: '0.37.2' - } - }, - { - name: 'v3.0.0', - recommended_version: 'v3.0.0', - compatible_versions: ['v3.0.0'], - consensus: { - type: 'cometbft', - version: '0.37.2' - } - }, - { - name: 'v2-pigeonfall', - recommended_version: 'v2-pigeonfall', - compatible_versions: ['v2-pigeonfall'], - consensus: { - type: 'cometbft', - version: '0.37.2' - } - }, - { - name: 'v3-pigeonfall', - recommended_version: 'v3-pigeonfall', - compatible_versions: ['v3-pigeonfall'], - consensus: { - type: 'cometbft', - version: '0.37.2' - } - }, + "$schema": "../chain.schema.json", + "chain_name": "terpnettestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Terp-Network", + "chain_id": "90u-2", + "bech32_prefix": "terp", + "daemon_name": "terpd", + "node_home": "$HOME/.terp", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v4.1.testnet', - recommended_version: 'v4.1.testnet', - compatible_versions: ['v4.1.testnet'], - consensus: { - type: 'cometbft', - version: '0.37.2' - } + "denom": "uthiolx", + "fixed_min_gas_price": 0.5, + "low_gas_price": 0.75, + "average_gas_price": 1, + "high_gas_price": 1.25 } ] }, - peers: { - seeds: [], - persistent_peers: [ - { - id: '15f5bc75be9746fd1f712ca046502cae8a0f6ce7', - address: 'terp-testnet.nodejumper.io:30656' - }, + "staking": { + "staking_tokens": [ { - id: '51d48be3809bb8907c1ef5f747e53cdd0c9ded1b', - address: 'terp-testnet-peer.itrocket.net:443' + "denom": "uterpx" } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://terp-testnet-rpc.itrocket.net:443/', - provider: 'itrocket' + "address": "https://terp-testnet-rpc.itrocket.net:443/", + "provider": "itrocket" } ], - rest: [ + "rest": [ { - address: 'https://terp-testnet-api.itrocket.net:443/', - provider: 'itrocket' + "address": "https://terp-testnet-api.itrocket.net:443/", + "provider": "itrocket" } ], - grpc: [ + "grpc": [ { - address: 'terp-testnet-grpc.itrocket.net/', - provider: 'itrocket' + "address": "terp-testnet-grpc.itrocket.net/", + "provider": "itrocket" } ] }, - explorers: [ + "explorers": [ { - kind: 'Ping Pub', - url: 'https://explorer.nodestake.top/terp-testnet', - tx_page: 'https://explorer.nodestake.top/terp-testnet/tx/${txHash}' + "kind": "Ping Pub", + "url": "https://explorer.nodestake.top/terp-testnet", + "tx_page": "https://explorer.nodestake.top/terp-testnet/tx/${txHash}" }, { - kind: 'NODEXPLORER', - url: 'https://explorer.nodexcapital.com', - tx_page: 'https://explorer.nodexcapital.com/terp/tx/${txHash}', - account_page: - 'https://explorer.nodexcapital.com/terp/account/{$accountAddress}' + "kind": "NODEXPLORER", + "url": "https://explorer.nodexcapital.com", + "tx_page": "https://explorer.nodexcapital.com/terp/tx/${txHash}", + "account_page": "https://explorer.nodexcapital.com/terp/account/{$accountAddress}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'terra2testnet', - status: 'live', - network_type: 'testnet', - website: 'https://www.terra.money/', - pretty_name: 'Terra 2.0', - chain_id: 'pisco-1', - daemon_name: 'terrad', - node_home: '$HOME/.terra', - bech32_prefix: 'terra', - slip44: 330, - fees: { - fee_tokens: [ - { - denom: 'uluna', - fixed_min_gas_price: 0.0125, - low_gas_price: 0.0125, - average_gas_price: 0.015, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uluna' - } - ] - }, - codebase: { - git_repo: 'https://github.com/terra-money/core/', - recommended_version: 'v2.4.0-rc5', - compatible_versions: ['v2.4.0-rc4', 'v2.4.0-rc5'], - genesis: { - name: 'v2.0', - genesis_url: 'https://tfl-pisco-1.s3.amazonaws.com/genesis.json' - }, - versions: [ - { - name: 'v2.0', - tag: 'v2.0.0-rc.1', - height: 1, - recommended_version: 'v2.0.0-rc.1', - next_version_name: 'v2.1', - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.0.0-rc.0/terra_2.0.0-rc.0_Linux_x86_64.tar.gz?checksum=sha256:2427cf3aa7934f591eac0708156d424f55d3dbb6062f6f111b770bee8f414c91', - 'darwin/amd64': - 'https://github.com/terra-money/core/releases/download/v2.0.0-rc.0/terra_2.0.0-rc.0_Darwin_x86_64.tar.gz?checksum=sha256:72869d7279362e8d63e2afb02c17e1eef0ad0cb6285a30dfa47c571fa5be1c30' - } - }, - { - name: 'v2.1', - tag: 'v2.1.0-beta.1', - height: 838500, - recommended_version: 'v2.1.0-beta.1', - cosmos_sdk_version: '0.46.9', - cosmwasm_enabled: true, - cosmwasm_version: '0.27.0', - ibc_go_version: '3.0.0', - consensus: { - type: 'tendermint', - version: '0.34.21' - }, - next_version_name: 'v2.2', - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.1.0-beta.1/terra_2.1.0-beta.1_Linux_x86_64.tar.gz?checksum=sha256:c6e6ace1d5b5f3f365f6d71489dbeda645f196ea10f8f03103fb9648131bfec1' - } - }, - { - name: 'v2.2', - tag: 'v2.2.1', - height: 2777777, - recommended_version: 'v2.2.1', - compatible_versions: ['v2.2.0', 'v2.2.1'], - cosmos_sdk_version: '0.46.11', - cosmwasm_enabled: true, - cosmwasm_version: '0.27.0', - ibc_go_version: '3.4.0', - consensus: { - type: 'tendermint', - version: '0.34.21' - }, - next_version_name: 'v2.3', - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.2.1/terra_2.2.1_Linux_x86_64.tar.gz?checksum=sha256:8a9353ae3c33a750ce2a9d236f00c12c5449c41fad96e9885a5c0b8678fcf8bc' - } - }, - { - name: 'v2.3', - tag: 'v2.3.4', - height: 4712048, - recommended_version: 'v2.3.4', - compatible_versions: ['v2.3.0', 'v2.3.1', 'v2.3.2', 'v2.3.4'], - cosmos_sdk_version: 'v0.46.11', - cosmwasm_enabled: true, - cosmwasm_version: 'v0.30.0', - ibc_go_version: 'v6.1.1', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.3.4/terra_2.3.4_Linux_x86_64.tar.gz?checksum=sha256:3e737e1f1f9b8640ef0e73f412e9e11bedd494ea2c130630a1f5586e00da9ae7' - } - }, + "$schema": "../../chain.schema.json", + "chain_name": "terra2testnet", + "status": "live", + "network_type": "testnet", + "website": "https://www.terra.money/", + "pretty_name": "Terra 2.0", + "chain_id": "pisco-1", + "daemon_name": "terrad", + "node_home": "$HOME/.terra", + "bech32_prefix": "terra", + "slip44": 330, + "fees": { + "fee_tokens": [ { - name: 'v2.4', - tag: 'v2.4.0-rc5', - height: 6272928, - recommended_version: 'v2.4.0-rc5', - compatible_versions: ['v2.4.0-rc5'], - cosmos_sdk_version: 'v0.46.11', - cosmwasm_enabled: true, - cosmwasm_version: 'v0.30.0', - ibc_go_version: 'v6.1.1', - consensus: { - type: 'cometbft', - version: 'v0.34.27' - }, - binaries: { - 'linux/amd64': - 'https://github.com/terra-money/core/releases/download/v2.4.0-rc5/terra_2.4.0-rc5_Linux_x86_64.tar.gz?checksum=sha256:c61c9c4ae8a0bcb9d7f9fc2197d84ba8b75b558c2cee3438ae2142eb97e0d771' - } + "denom": "uluna", + "fixed_min_gas_price": 0.0125, + "low_gas_price": 0.0125, + "average_gas_price": 0.015, + "high_gas_price": 0.04 } ] }, - peers: { - seeds: [ - { - id: '3bfc40d3d7f14b59c5943bf2d45ce103d42174c5', - address: 'seed-terra-testnet.moonshot.army:26655', - provider: 'Moonshot Army' - }, - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'testnet-seeds.polkachu.com:11756', - provider: 'Polkachu' - } - ], - persistent_peers: [ - { - id: '0d194f5236a420147b05d9556ac0cf928c36e647', - address: '65.109.23.114:11756', - provider: 'Polkachu' - }, + "staking": { + "staking_tokens": [ { - id: '5cc5e6506818a113387d92e0b60a7206845b4d7e', - address: 'pisco-1-sentinel.skip.money:26656', - provider: 'Skip.Money' + "denom": "uluna" } ] }, - apis: { - rpc: [ + "codebase": {}, + "apis": { + "rpc": [ { - address: 'https://pisco-rpc.terra.dev:443', - provider: 'Terraform Labs' + "address": "https://pisco-rpc.terra.dev:443", + "provider": "Terraform Labs" }, { - address: 'https://terra-testnet-rpc.polkachu.com:443', - provider: 'Polkachu' + "address": "https://terra-testnet-rpc.polkachu.com:443", + "provider": "Polkachu" } ], - rest: [ + "rest": [ { - address: 'https://pisco-lcd.terra.dev:443', - provider: 'Terraform Labs' + "address": "https://pisco-lcd.terra.dev:443", + "provider": "Terraform Labs" }, { - address: 'https://terra-testnet-api.polkachu.com:443', - provider: 'Polkachu' + "address": "https://terra-testnet-api.polkachu.com:443", + "provider": "Polkachu" } ], - grpc: [ + "grpc": [ { - address: 'terra-testnet-grpc.polkachu.com:11790', - provider: 'Polkachu' + "address": "terra-testnet-grpc.polkachu.com:11790", + "provider": "Polkachu" } ] }, - explorers: [ + "explorers": [ { - kind: 'finder', - url: 'http://finder.terra.money/testnet/', - tx_page: 'https://finder.terra.money/testnet/tx/${txHash}' + "kind": "finder", + "url": "http://finder.terra.money/testnet/", + "tx_page": "https://finder.terra.money/testnet/tx/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'ulastestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'ULAS', - chain_id: 'ulas', - bech32_prefix: 'ulas', - daemon_name: 'ulasd', - node_home: '$HOME/.ulas', - codebase: { - git_repo: 'https://github.com/ulasnetwork/ulas', - recommended_version: 'v0.0.1', - compatible_versions: ['v0.0.1'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/ulasnetwork/chain-config/main/ulas/genesis.json' - }, - versions: [ - { - name: 'v0.0.1', - recommended_version: 'v0.0.1', - compatible_versions: ['v0.0.1'] - } - ] - }, - apis: { - rpc: [ + "$schema": "../../chain.schema.json", + "chain_name": "ulastestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "ULAS", + "chain_id": "ulas", + "bech32_prefix": "ulas", + "daemon_name": "ulasd", + "node_home": "$HOME/.ulas", + "codebase": {}, + "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}" } ], - slip44: 118 + "slip44": 118 }, { - $schema: '../../chain.schema.json', - chain_name: 'uniontestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'union Testnet', - chain_id: 'union-testnet-4', - bech32_prefix: 'union', - daemon_name: 'uniond', - node_home: '$HOME/.uniond', - key_algos: ['bn254'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'muno', - fixed_min_gas_price: 0, - low_gas_price: 0.0025, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "uniontestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "union Testnet", + "chain_id": "union-testnet-4", + "bech32_prefix": "union", + "daemon_name": "uniond", + "node_home": "$HOME/.uniond", + "key_algos": [ + "bn254" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'muno' + "denom": "muno", + "fixed_min_gas_price": 0, + "low_gas_price": 0.0025, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - peers: { - seeds: [ - { - id: 'a069a341154484298156a56ace42b6e6a71e7b9d', - address: 'blazingbit.io:27656', - provider: '' - }, + "staking": { + "staking_tokens": [ { - id: '8a07752a234bb16471dbb577180de7805ba6b5d9', - address: 'union.testnet.4.seed.poisonphang.com:26656', - provider: '' + "denom": "muno" } ] }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.cryptware.io', - provider: 'cryptware' + "address": "https://rpc.cryptware.io", + "provider": "cryptware" }, { - address: 'https://union-testnet-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://union-testnet-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc-testnet-union.nodeist.net', - provider: 'Nodeist' + "address": "https://rpc-testnet-union.nodeist.net", + "provider": "Nodeist" } ], - rest: [ + "rest": [ { - address: 'https://api.cryptware.io', - provider: 'cryptware' + "address": "https://api.cryptware.io", + "provider": "cryptware" }, { - address: 'https://union-testnet-api.polkachu.com', - provider: 'Polkachu' + "address": "https://union-testnet-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://api-testnet-union.nodeist.net', - provider: 'Nodeist' + "address": "https://api-testnet-union.nodeist.net", + "provider": "Nodeist" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.cryptware.io', - provider: 'cryptware' + "address": "https://grpc.cryptware.io", + "provider": "cryptware" }, { - address: 'http://union-testnet-grpc.polkachu.com:24690', - provider: 'Polkachu' + "address": "http://union-testnet-grpc.polkachu.com:24690", + "provider": "Polkachu" }, { - address: 'https://grpc-testnet-union.nodeist.net', - provider: 'Nodeist' + "address": "https://grpc-testnet-union.nodeist.net", + "provider": "Nodeist" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://explorer.cryptware.io/union', - tx_page: 'https://explorer.cryptware.io/union/tx/${txHash}', - account_page: - 'https://explorer.cryptware.io/union/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://explorer.cryptware.io/union", + "tx_page": "https://explorer.cryptware.io/union/tx/${txHash}", + "account_page": "https://explorer.cryptware.io/union/account/${accountAddress}" } ], - keywords: ['testnet'], - images: [ + "keywords": [ + "testnet" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/union.png" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'upticktestnet', - status: 'live', - network_type: 'testnet', - website: 'https://www.uptickproject.com/', - pretty_name: 'Uptick', - chain_id: 'uptick_7000-2', - bech32_prefix: 'uptick', - daemon_name: 'uptickd', - node_home: '$HOME/.uptickd', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'auptick', - low_gas_price: 0, - average_gas_price: 0, - high_gas_price: 0 - } - ] - }, - codebase: { - git_repo: 'https://github.com/UptickNetwork/uptick', - recommended_version: 'v0.2.6', - compatible_versions: ['v0.2.6'], - cosmos_sdk_version: '0.46.5', - consensus: { - type: 'tendermint', - version: '0.34.23' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/UptickNetwork/uptick-testnet/main/uptick_7000-2/genesis.json' - }, - versions: [ - { - name: 'v0.2.6', - recommended_version: 'v0.2.6', - compatible_versions: ['v0.2.6'], - cosmos_sdk_version: '0.46.5', - consensus: { - type: 'tendermint', - version: '0.34.23' - }, - binaries: { - 'linux/amd64': - 'https://github.com/UptickNetwork/uptick/releases/download/v0.2.6/uptick-linux-amd64-v0.2.6.tar.gz' - } - } - ] - }, - peers: { - seeds: [], - persistent_peers: [ + "$schema": "../../chain.schema.json", + "chain_name": "upticktestnet", + "status": "live", + "network_type": "testnet", + "website": "https://www.uptickproject.com/", + "pretty_name": "Uptick", + "chain_id": "uptick_7000-2", + "bech32_prefix": "uptick", + "daemon_name": "uptickd", + "node_home": "$HOME/.uptickd", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - id: '67a39373f4b88156887e724a8e819b001823b663', - address: '65.108.195.29:26616', - provider: 'Staketab' + "denom": "auptick", + "low_gas_price": 0, + "average_gas_price": 0, + "high_gas_price": 0 } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46.5" + }, + "apis": { + "rpc": [ { - address: 'https://uptick-7000-2-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://uptick-7000-2-rpc.staketab.org:443", + "provider": "Staketab" } ], - rest: [ + "rest": [ { - address: 'https://uptick-7000-2-rest.staketab.org', - provider: 'Staketab' + "address": "https://uptick-7000-2-rest.staketab.org", + "provider": "Staketab" } ], - grpc: [ + "grpc": [ { - address: 'services.staketab.com:9004', - provider: 'Staketab' + "address": "services.staketab.com:9004", + "provider": "Staketab" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://explorer.testnet.uptick.network/uptick-network-testnet', - tx_page: - 'https://explorer.testnet.uptick.network/uptick-network-testnet/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explorer.testnet.uptick.network/uptick-network-testnet", + "tx_page": "https://explorer.testnet.uptick.network/uptick-network-testnet/tx/${txHash}" }, { - kind: 'Nodes.Guru', - url: 'https://uptick.explorers.guru/', - tx_page: 'https://uptick.explorers.guru/transaction/${txHash}' + "kind": "Nodes.Guru", + "url": "https://uptick.explorers.guru/", + "tx_page": "https://uptick.explorers.guru/transaction/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'vincechaintestnet', - status: 'killed', - network_type: 'testnet', - pretty_name: 'VinceChain Testnet', - chain_id: 'vince_1903-1', - bech32_prefix: 'vce', - node_home: '$HOME/.vinced', - slip44: 60, - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - fees: { - fee_tokens: [ - { - denom: 'avce', - fixed_min_gas_price: 250000000, - low_gas_price: 10000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'avce' - } - ] - }, - codebase: { - git_repo: 'https://github.com/AyrisDev/vinceChain_Blockchain', - recommended_version: '', - compatible_versions: ['', ''], - binaries: { - 'linux/amd64': '', - 'linux/arm64': '', - 'darwin/amd64': '', - 'darwin/arm64': '', - 'windows/amd64': '' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/AyrisDev/vinceChain_Blockchain/master/genesis.json' - }, - versions: [ - { - name: '', - recommended_version: '', - compatible_versions: ['', ''], - binaries: { - 'linux/amd64': '', - 'linux/arm64': '', - 'darwin/amd64': '', - 'darwin/arm64': '', - 'windows/amd64': '' - } + "$schema": "../../chain.schema.json", + "chain_name": "vincechaintestnet", + "status": "killed", + "network_type": "testnet", + "pretty_name": "VinceChain Testnet", + "chain_id": "vince_1903-1", + "bech32_prefix": "vce", + "node_home": "$HOME/.vinced", + "slip44": 60, + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "fees": { + "fee_tokens": [ + { + "denom": "avce", + "fixed_min_gas_price": 250000000, + "low_gas_price": 10000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png' - }, - peers: { - seeds: [ + "staking": { + "staking_tokens": [ { - id: 'e55544ae75edbce87a43e36e152d9fe1492de186', - address: 'http://154.53.47.14:26656', - provider: 'AyrisDev' + "denom": "avce" } - ], - persistent_peers: [] + ] + }, + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'http://api-testnet.vincechain.com/:26657/', - provider: 'vincescan.com' + "address": "http://api-testnet.vincechain.com/:26657/", + "provider": "vincescan.com" } ], - rest: [ + "rest": [ { - address: 'http://lcd-testnet.vincechain.com/:1317/', - provider: 'vincescan.com' + "address": "http://lcd-testnet.vincechain.com/:1317/", + "provider": "vincescan.com" } ], - grpc: [], - 'evm-http-jsonrpc': [ + "grpc": [], + "evm-http-jsonrpc": [ { - address: 'http://rpc-testnet.vincechain.com', - provider: 'vincescan.com' + "address": "http://rpc-testnet.vincechain.com", + "provider": "vincescan.com" } ] }, - explorers: [ + "explorers": [ { - kind: 'blockscout', - url: 'https://scan-testnet.vincechain.com', - tx_page: 'https://scan-testnet.vincechain.com/tx/${txHash}' + "kind": "blockscout", + "url": "https://scan-testnet.vincechain.com", + "tx_page": "https://scan-testnet.vincechain.com/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/vincechaintestnet/images/vince.png" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'wavehashtestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'wavehash Testnet', - chain_id: 'testnet-1', - bech32_prefix: 'wavehash', - daemon_name: 'wavehashd', - node_home: '$HOME/.wavehash', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uwahax', - low_gas_price: 0.0025, - average_gas_price: 0.0025, - high_gas_price: 0.0024 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "wavehashtestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "wavehash Testnet", + "chain_id": "testnet-1", + "bech32_prefix": "wavehash", + "daemon_name": "wavehashd", + "node_home": "$HOME/.wavehash", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'uwahax' + "denom": "uwahax", + "low_gas_price": 0.0025, + "average_gas_price": 0.0025, + "high_gas_price": 0.0024 } ] }, - codebase: { - git_repo: 'https://github.com/WaveHashProtocol/wavehash', - recommended_version: 'v6.0.0', - compatible_versions: ['v6.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/WaveHashProtocol/testnet/main/testnet-1/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v6.0.0', - recommended_version: 'v6.0.0', - compatible_versions: ['v6.0.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '4.3.0' + "denom": "uwahax" } ] }, - peers: { - seeds: [], - persistent_peers: [] + "codebase": { + "cosmos_sdk_version": "0.45", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.30" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://rpc.wavehash.online/', - provider: 'WaveHash Network' + "address": "https://rpc.wavehash.online/", + "provider": "WaveHash Network" } ], - rest: [ + "rest": [ { - address: 'https://lcd.wavehash.online/', - provider: 'WaveHash Network' + "address": "https://lcd.wavehash.online/", + "provider": "WaveHash Network" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.wavehash.online/', - provider: 'WaveHash Network' + "address": "https://grpc.wavehash.online/", + "provider": "WaveHash Network" } ] }, - explorers: [ + "explorers": [ { - kind: 'atomscan', - url: 'https://atomscan.com/directory/testnet/wavehashtestnet', - tx_page: - 'https://atomscan.com/directory/testnet/wavehashtestnet/transactions/${txHash}' + "kind": "atomscan", + "url": "https://atomscan.com/directory/testnet/wavehashtestnet", + "tx_page": "https://atomscan.com/directory/testnet/wavehashtestnet/transactions/${txHash}" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'xiontestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'Xion Testnet', - chain_id: 'xion-testnet-1', - bech32_prefix: 'xion', - daemon_name: 'xiond', - node_home: '$HOME/.xiond', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uxion', - fixed_min_gas_price: 0, - low_gas_price: 0, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uxion' - } - ] - }, - codebase: { - git_repo: 'https://github.com/burnt-labs/xion', - recommended_version: 'v0.3.2', - compatible_versions: ['v0.3.2'], - cosmos_sdk_version: '0.47.3', - consensus: { - type: 'cometbft', - version: '0.37.2' - }, - cosmwasm_version: '0.40.1', - cosmwasm_enabled: true, - genesis: { - genesis_url: 'https://files.xion-testnet-1.burnt.com/genesis.json' - }, - versions: [ - { - name: 'v0.1.0', - tag: 'v0.1.0', - recommended_version: 'v0.1.0', - cosmos_sdk_version: '0.47.0', - cosmwasm_enabled: true, - cosmwasm_version: '0.40.0-rc.0', - ibc_go_version: 'v7.0.0', - consensus: { - type: 'cometbft', - version: '0.37.0' - }, - next_version_name: 'v0.3.2' - }, - { - name: 'v0.3.2', - tag: 'v0.3.2', - height: 1929544, - recommended_version: 'v0.3.2', - cosmos_sdk_version: '0.47.3', - cosmwasm_enabled: true, - cosmwasm_version: '0.40.1', - ibc_go_version: 'v7.2.0', - consensus: { - type: 'cometbft', - version: '0.37.2' - } + "$schema": "../../chain.schema.json", + "chain_name": "xiontestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "Xion Testnet", + "chain_id": "xion-testnet-1", + "bech32_prefix": "xion", + "daemon_name": "xiond", + "node_home": "$HOME/.xiond", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uxion", + "fixed_min_gas_price": 0, + "low_gas_price": 0, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - peers: { - seeds: [ - { - id: '7900d5f177228def24170f9631db76afab20278e', - address: 'seed.xion-testnet-1.burnt.com:11656', - provider: 'burnt-labs' - } - ], - persistent_peers: [ - { - id: '93db3539d6cc9603bbb6b9e43bfb473bdaff7e4b', - address: 'sentry-use1a.xion-testnet-1.burnt.com:32656', - provider: 'burnt-labs' - }, - { - id: '0f2ccb6d7e8f233c03f91dee690f5ff714319fba', - address: 'sentry-use1b.xion-testnet-1.burnt.com:33656', - provider: 'burnt-labs' - }, + "staking": { + "staking_tokens": [ { - id: 'f684e3873191d62a74e5431202581d99fe3439b7', - address: 'sentry-use1c.xion-testnet-1.burnt.com:34656', - provider: 'burnt-labs' + "denom": "uxion" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.47.3", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.40.1" + }, + "apis": { + "rpc": [ { - address: 'https://rpc.xion-testnet-1.burnt.com', - provider: 'burnt-labs' + "address": "https://rpc.xion-testnet-1.burnt.com", + "provider": "burnt-labs" } ], - rest: [ + "rest": [ { - address: 'https://api.xion-testnet-1.burnt.com', - provider: 'burnt-labs' + "address": "https://api.xion-testnet-1.burnt.com", + "provider": "burnt-labs" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.xion-testnet-1.burnt.com:443', - provider: 'burnt-labs' + "address": "https://grpc.xion-testnet-1.burnt.com:443", + "provider": "burnt-labs" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png" }, - keywords: ['xion', 'burnt', 'testnet'], - images: [ + "keywords": [ + "xion", + "burnt", + "testnet" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png" } ] }, { - $schema: '../../chain.schema.json', - chain_name: 'zetachaintestnet', - status: 'live', - network_type: 'testnet', - pretty_name: 'ZetaChain Testnet', - chain_id: 'athens_7001-1', - bech32_prefix: 'zeta', - daemon_name: 'zetacored', - node_home: '$HOME/.zetacored', - key_algos: ['ethsecp256k1'], - extra_codecs: ['ethermint'], - slip44: 60, - fees: { - fee_tokens: [ + "$schema": "../../chain.schema.json", + "chain_name": "zetachaintestnet", + "status": "live", + "network_type": "testnet", + "pretty_name": "ZetaChain Testnet", + "chain_id": "athens_7001-1", + "bech32_prefix": "zeta", + "daemon_name": "zetacored", + "node_home": "$HOME/.zetacored", + "key_algos": [ + "ethsecp256k1" + ], + "extra_codecs": [ + "ethermint" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'azeta', - low_gas_price: 20000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 + "denom": "azeta", + "low_gas_price": 20000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - staking: { - staking_tokens: [ + "staking": { + "staking_tokens": [ { - denom: 'azeta' + "denom": "azeta" } ] }, - codebase: { - git_repo: 'https://github.com/zeta-chain/node', - recommended_version: 'v8.3.3', - compatible_versions: [], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: 'v6.1.0', - genesis: { - genesis_url: - 'https://zetachain-athens.blockpi.network/rpc/v1/public/genesis' - }, - versions: [] - }, - peers: { - seeds: [], - persistent_peers: [ - { - id: 'd5519e378247dfb61dfe90652d1fe3e2b3005a5b', - address: '65.109.68.190:16056', - provider: '' - }, - { - id: 'f96cf94d5eabaf554c9294e731b3994b4c532f3a', - address: '46.4.5.45:22556', - provider: 'Polkachu' - } - ] + "codebase": { + "cosmos_sdk_version": "0.46" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://zetachain-athens.blockpi.network/rpc/v1/public', - provider: 'BlockPI' + "address": "https://zetachain-athens.blockpi.network/rpc/v1/public", + "provider": "BlockPI" } ], - rest: [ + "rest": [ { - address: 'https://zetachain-athens.blockpi.network/lcd/v1/public', - provider: 'BlockPI' + "address": "https://zetachain-athens.blockpi.network/lcd/v1/public", + "provider": "BlockPI" } ], - grpc: [ + "grpc": [ { - address: 'https://zetachain-testnet.nodejumper.io:9090', - provider: 'NodeJumper' + "address": "https://zetachain-testnet.nodejumper.io:9090", + "provider": "NodeJumper" } ] }, - explorers: [ + "explorers": [ { - kind: 'ZetaScan', - url: 'https://explorer.zetachain.com/', - tx_page: 'https://explorer.zetachain.com/cc/tx/${txHash}' + "kind": "ZetaScan", + "url": "https://explorer.zetachain.com/", + "tx_page": "https://explorer.zetachain.com/cc/tx/${txHash}" }, { - kind: 'BlockScout', - url: 'https://zetachain-athens-3.blockscout.com/', - tx_page: 'https://zetachain-athens-3.blockscout.com/tx/${txHash}' + "kind": "BlockScout", + "url": "https://zetachain-athens-3.blockscout.com/", + "tx_page": "https://zetachain-athens-3.blockscout.com/tx/${txHash}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'tgrade', - status: 'live', - network_type: 'mainnet', - website: 'https://tgrade.finance/', - pretty_name: 'Tgrade', - chain_id: 'tgrade-mainnet-1', - bech32_prefix: 'tgrade', - daemon_name: 'tgrade', - node_home: '$HOME/.tgrade', - 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 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "tgrade", + "status": "live", + "network_type": "mainnet", + "website": "https://tgrade.finance/", + "pretty_name": "Tgrade", + "chain_id": "tgrade-mainnet-1", + "bech32_prefix": "tgrade", + "daemon_name": "tgrade", + "node_home": "$HOME/.tgrade", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ { - denom: 'utgd' + "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: 'v2.0.4', - compatible_versions: ['v2.0.4'], - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/confio/tgrade-networks/main/mainnet-1/config/genesis.json' - }, - cosmwasm_enabled: true, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'v2.0.4', - recommended_version: 'v2.0.4', - compatible_versions: ['v2.0.4'], - cosmwasm_enabled: true + "denom": "utgd" } ] }, - peers: { - seeds: [], - persistent_peers: [ - { - id: '0a63421f67d02e7fb823ea6d6ceb8acf758df24d', - address: '142.132.226.137:26656', - provider: 'Confio' - }, - { - id: '4a319eead699418e974e8eed47c2de6332c3f825', - address: '167.235.255.9:26656', - provider: 'Confio' - } - ] + "codebase": { + "cosmwasm_enabled": true }, - 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": [] }, - 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', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-logo-gradient_h.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg" }, - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-logo-gradient_h.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-logo-gradient_h.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'thorchain', - status: 'live', - network_type: 'mainnet', - website: 'https://thorchain.org/', - pretty_name: 'THORChain', - chain_id: 'thorchain-mainnet-v1', - bech32_prefix: 'thor', - daemon_name: 'thord', - node_home: '$HOME/.thornode', - slip44: 931, - codebase: { - git_repo: 'https://gitlab.com/thorchain/thornode', - recommended_version: 'chaosnet-multichain', - compatible_versions: ['chaosnet-multichain'], - genesis: { - genesis_url: 'https://rpc.thorchain.info/genesis' - }, - versions: [ - { - name: 'chaosnet-multichain', - recommended_version: 'chaosnet-multichain', - compatible_versions: ['chaosnet-multichain'] - } - ] - }, - peers: { - seeds: [ - { - id: '5e89caf0ca79e0fb3371d5892efd96d66042d0d6', - address: '157.90.34.75:27146' - }, - { - id: '6c7d780bb7384142f6943543ed4c3ba537f4a411', - address: '138.197.59.244:27146' - }, - { - id: '2d25606076036716a31611185d39880fe8237e97', - address: '3.230.67.253:27146' - } - ] - }, - apis: { - rpc: [], - rest: [] - }, - explorers: [ - { - 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}' + "$schema": "../chain.schema.json", + "chain_name": "thorchain", + "status": "live", + "network_type": "mainnet", + "website": "https://thorchain.org/", + "pretty_name": "THORChain", + "chain_id": "thorchain-mainnet-v1", + "bech32_prefix": "thor", + "daemon_name": "thord", + "node_home": "$HOME/.thornode", + "slip44": 931, + "codebase": {}, + "apis": { + "rpc": [], + "rest": [] + }, + "explorers": [ + { + "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}" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'umee', - status: 'live', - network_type: 'mainnet', - website: 'https://www.umee.cc/', - pretty_name: 'Umee', - chain_id: 'umee-1', - bech32_prefix: 'umee', - daemon_name: 'umeed', - node_home: '$HOME/.umee', - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uumee', - fixed_min_gas_price: 0.1, - low_gas_price: 0.1, - average_gas_price: 0.12, - high_gas_price: 0.2 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uumee' - } - ] - }, - codebase: { - git_repo: 'https://github.com/umee-network/umee', - recommended_version: 'v6.0.2', - compatible_versions: ['v6.0.2'], - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v6.0.2/umeed-v6.0.2-linux-amd64.tar.gz' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'cometbft', - version: '0.34' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '6.2.0', - genesis: { - name: 'v1.0.1', - genesis_url: - 'https://raw.githubusercontent.com/umee-network/mainnet/main/genesis.json' - }, - versions: [ - { - name: 'v1.0.1', - tag: 'v1.0.1', - height: 0, - next_version_name: 'v1.1.0', - recommended_version: 'v1.0.1', - compatible_versions: ['v1.0.1'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '2.0.3', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v1.0.1/umeed-v1.0.1-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/umee-network/umee/releases/download/v1.0.1/umeed-v1.0.1-linux-arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/umee-network/umee/releases/download/v1.0.1/umeed-v1.0.1-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/umee-network/umee/releases/download/v1.0.1/umeed-v1.0.1-darwin-arm64.tar.gz' - } - }, - { - name: 'v1.1.0', - tag: 'v1.1.0', - height: 3023282, - next_version_name: 'v1.1-v3.0', - recommended_version: 'v1.1.0', - compatible_versions: ['v1.1.0'], - cosmos_sdk_version: '0.45', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '2.0.3', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v1.1.0/umeed-v1.1.0-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/umee-network/umee/releases/download/v1.1.0/umeed-v1.1.0-linux-arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/umee-network/umee/releases/download/v1.1.0/umeed-v1.1.0-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/umee-network/umee/releases/download/v1.1.0/umeed-v1.1.0-darwin-arm64.tar.gz' - } - }, - { - name: 'v1.1-v3.0', - tag: 'v3.0.0', - height: 3215778, - next_version_name: 'v3.1.0', - recommended_version: 'v3.0.0', - compatible_versions: ['v3.0.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '5.0.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v3.0.0/umeed-v3.0.0-linux-amd64.tar.gz', - 'linux/arm64': - 'https://github.com/umee-network/umee/releases/download/v3.0.0/umeed-v3.0.0-linux-arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/umee-network/umee/releases/download/v3.0.0/umeed-v3.0.0-darwin-amd64.tar.gz', - 'darwin/arm64': - 'https://github.com/umee-network/umee/releases/download/v3.0.0/umeed-v3.0.0-darwin-arm64.tar.gz' - } - }, - { - name: 'v3.1.0', - tag: 'v3.1.0', - height: 3623090, - next_version_name: 'v3.1-v3.3', - recommended_version: 'v3.1.0', - compatible_versions: ['v3.1.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - ibc_go_version: '5.0.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v3.1.0/umeed-v3.1.0-linux-amd64', - 'linux/arm64': - 'https://github.com/umee-network/umee/releases/download/v3.1.0/umeed-v3.1.0-linux-arm64', - 'darwin/amd64': - 'https://github.com/umee-network/umee/releases/download/v3.1.0/umeed-v3.1.0-darwin-amd64', - 'darwin/arm64': - 'https://github.com/umee-network/umee/releases/download/v3.1.0/umeed-v3.1.0-darwin-arm64' - } - }, - { - name: 'v3.1-v3.3', - tag: 'v3.3.0', - height: 4513362, - next_version_name: 'v4.0', - recommended_version: 'v3.3.0', - compatible_versions: ['v3.3.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - ibc_go_version: '5.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v3.3.0/umeed-v3.3.0-linux-amd64' - } - }, - { - name: 'v4.0', - tag: 'v4.0.0', - height: 4949483, - next_version_name: 'v4.0.1', - recommended_version: 'v4.0.0', - compatible_versions: ['v4.0.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - ibc_go_version: '5.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v4.0.0/umeed-v4.0.0-linux-amd64' - } - }, - { - name: 'v4.0.1', - tag: 'v4.0.1', - height: 5243631, - next_version_name: 'v4.1.0', - recommended_version: 'v4.0.1', - compatible_versions: ['v4.0.1'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - ibc_go_version: '5.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v4.0.1/umeed-v4.0.1-linux-amd64' - } - }, - { - name: 'v4.1.0', - tag: 'v4.1.0', - height: 5433933, - next_version_name: 'v4.2', - recommended_version: 'v4.1.0', - compatible_versions: ['v4.1.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - ibc_go_version: '5.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v4.1.0/umeed-v4.1.0-linux-amd64' - } - }, - { - name: 'v4.2', - tag: 'v4.2.0', - height: 5741480, - next_version_name: 'v4.3', - recommended_version: 'v4.2.0', - compatible_versions: ['v4.2.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '0.29', - cosmwasm_enabled: true, - ibc_go_version: '5.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v4.2.0/umeed-v4.2.0-linux-amd64' - } - }, - { - name: 'v4.3', - tag: 'v4.3.0', - height: 6049552, - recommended_version: 'v4.3.0', - compatible_versions: ['v4.3.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'cometbft', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '6.1.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v4.3.0/umeed-v4.3.0-linux-amd64' - } - }, - { - name: 'v4.4', - tag: 'v4.4.1', - height: 6547400, - recommended_version: 'v4.4.1', - compatible_versions: ['v4.4.1', 'v4.4.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'cometbft', - version: '0.34' - }, - cosmwasm_version: '0.30', - cosmwasm_enabled: true, - ibc_go_version: '6.1.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v4.4.0/umeed-v4.4.0-linux-amd64' - } - }, - { - name: 'v5.0', - tag: 'v5.0.1', - height: 6986150, - recommended_version: 'v5.0.1', - compatible_versions: ['v5.0.1'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'cometbft', - version: '0.34' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '6.1.1', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v5.0.1/umeed-v5.0.1-linux-amd64.tar.gz' - } - }, - { - name: 'v5.1', - tag: 'v5.1.0', - height: 7428000, - recommended_version: 'v5.1.0', - compatible_versions: ['v5.1.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'cometbft', - version: '0.34' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '6.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v5.1.0/umeed-v5.1.0-linux-amd64.tar.gz' - } - }, - { - name: 'v5.2', - tag: 'v5.2.0', - height: 8220900, - recommended_version: 'v5.2.0', - compatible_versions: ['v5.2.0'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'cometbft', - version: '0.34' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '6.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v5.2.0/umeed-v5.2.0-linux-amd64.tar.gz' - } - }, + "$schema": "../chain.schema.json", + "chain_name": "umee", + "status": "live", + "network_type": "mainnet", + "website": "https://www.umee.cc/", + "pretty_name": "Umee", + "chain_id": "umee-1", + "bech32_prefix": "umee", + "daemon_name": "umeed", + "node_home": "$HOME/.umee", + "slip44": 118, + "fees": { + "fee_tokens": [ { - name: 'v6.0', - tag: 'v6.0.2', - height: 8427800, - recommended_version: 'v6.0.2', - compatible_versions: ['v6.0.2'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'cometbft', - version: '0.34' - }, - cosmwasm_version: '0.31', - cosmwasm_enabled: true, - ibc_go_version: '6.2.0', - binaries: { - 'linux/amd64': - 'https://github.com/umee-network/umee/releases/download/v6.0.2/umeed-v6.0.2-linux-amd64.tar.gz' - } + "denom": "uumee", + "fixed_min_gas_price": 0.1, + "low_gas_price": 0.1, + "average_gas_price": 0.12, + "high_gas_price": 0.2 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' - }, - peers: { - seeds: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:13656', - provider: 'Polkachu' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'umee-mainnet-seed.autostake.com:26756', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '86bd5cb6e762f673f1706e5889e039d5406b4b90', - address: 'umee.seed.node75.org:10656', - provider: 'Pro-Nodes75' - }, - { - id: '88373a3bf385c20ef0b4040f924cd99848012535', - address: 'seed-umee-01.stakeflow.io:26696', - provider: 'Stakeflow' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'umee.rpc.kjnodes.com:16259', - provider: 'kjnodes' - }, - { - id: '64cdbb45575825f764af7ff9d6c71471bc131f87', - address: 'seed-node.mms.team:32656', - provider: 'MMS' - }, - { - id: '9aa8a73ea9364aa3cf7806d4dd25b6aed88d8152', - address: 'umee.seed.mzonder.com:10256', - provider: 'MZONDER' - } - ], - persistent_peers: [ - { - id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', - address: 'seeds.polkachu.com:13656', - provider: 'Polkachu' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'umee-mainnet-peer.autostake.com:26756', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '345970b5bdac916d95d8c64243d901766aff5475', - address: '95.217.204.48:26656', - provider: '[NODERS]TEAM' - }, - { - id: '1b728581c6d308078e2b969a0c6243852f77d28d', - address: 'umee.peers.m.stavr.tech:10456', - provider: '🔥STAVR🔥' - }, - { - id: '88373a3bf385c20ef0b4040f924cd99848012535', - address: 'peer-umee-01.stakeflow.io:26696', - provider: 'Stakeflow' - }, - { - id: '5656c2e3f18ffeb2e21bacbc62ca10f890525cf6', - address: '65.21.91.99:16856', - provider: 'Staketab' - }, - { - id: '532ffd92d571900b56fd3ad97dad186f7601c2ca', - address: '159.69.110.238:46656', - provider: 'Stake-Take' - }, - { - id: '618b74f829cc2dc7eeccf647b3a25168289f30c3', - address: 'peer-umee.mms.team:56102', - provider: 'MMS' - }, - { - id: '635debe6c5cbcb6861b6c8b32c47d8ee84d99c16', - address: '138.201.21.197:29656', - provider: 'StakeTown' - }, + "staking": { + "staking_tokens": [ { - id: '09b99a210b93a4e66571d7fd745f2d52dfbf59f2', - address: 'umee.peer.stakevillage.net:11056', - provider: 'Stake Village' + "denom": "uumee" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46", + "cosmwasm_enabled": true, + "cosmwasm_version": "0.31" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg" + }, + "apis": { + "rpc": [ { - address: 'https://umee-rpc.polkachu.com', - provider: 'Polkachu' + "address": "https://umee-rpc.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://rpc-umee-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-umee-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://umee-mainnet-rpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://umee-mainnet-rpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'http://umee.rpc.m.stavr.tech:10457', - provider: '🔥STAVR🔥' + "address": "http://umee.rpc.m.stavr.tech:10457", + "provider": "🔥STAVR🔥" }, { - address: 'https://rpc-umee.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://rpc-umee.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'http://rpc-umee-0.node75.org:26657', - provider: 'Pro-Nodes75' + "address": "http://rpc-umee-0.node75.org:26657", + "provider": "Pro-Nodes75" }, { - address: 'https://umee-rpc.quantnode.tech', - provider: 'QuantNode' + "address": "https://umee-rpc.quantnode.tech", + "provider": "QuantNode" }, { - address: 'https://umee-rpc.tienthuattoan.ventures', - provider: 'TienThuatToan' + "address": "https://umee-rpc.tienthuattoan.ventures", + "provider": "TienThuatToan" }, { - address: 'https://rpc-umee-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://rpc-umee-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://umee-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://umee-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://umee-rpc.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://umee-rpc.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://umee.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://umee.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://umee-rpc.w3coins.io', - provider: 'w3coins' + "address": "https://umee-rpc.w3coins.io", + "provider": "w3coins" }, { - address: 'https://rpc-umee.mms.team', - provider: 'MMS' + "address": "https://rpc-umee.mms.team", + "provider": "MMS" }, { - address: 'https://rpc-umee.mzonder.com', - provider: 'MZONDER' + "address": "https://rpc-umee.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://umee-rpc.stake-town.com', - provider: 'StakeTown' + "address": "https://umee-rpc.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://umee-rpc.highstakes.ch:26657/', - provider: 'High Stakes 🇨🇭' + "address": "https://umee-rpc.highstakes.ch:26657/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://umee.rpc.stakevillage.net:443', - provider: 'Stake Village' + "address": "https://umee.rpc.stakevillage.net:443", + "provider": "Stake Village" } ], - rest: [ + "rest": [ { - address: 'https://api-umee-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-umee-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://umee.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://umee.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://api-umee.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' + "address": "https://api-umee.cosmos-spaces.cloud", + "provider": "Cosmos Spaces" }, { - address: 'https://umee-mainnet-lcd.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "https://umee-mainnet-lcd.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'https://umee-api.polkachu.com', - provider: 'Polkachu' + "address": "https://umee-api.polkachu.com", + "provider": "Polkachu" }, { - address: 'https://umee-lcd.quantnode.tech', - provider: 'QuantNode' + "address": "https://umee-lcd.quantnode.tech", + "provider": "QuantNode" }, { - address: 'https://umee-api.tienthuattoan.ventures', - provider: 'TienThuatToan' + "address": "https://umee-api.tienthuattoan.ventures", + "provider": "TienThuatToan" }, { - address: 'https://api-umee-01.stakeflow.io', - provider: 'Stakeflow' + "address": "https://api-umee-01.stakeflow.io", + "provider": "Stakeflow" }, { - address: 'https://umee-rest.staketab.org', - provider: 'Staketab' + "address": "https://umee-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://umee-api.theamsolutions.info', - provider: 'AM Solutions' + "address": "https://umee-api.theamsolutions.info", + "provider": "AM Solutions" }, { - address: 'https://umee.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://umee.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://umee-api.w3coins.io', - provider: 'w3coins' + "address": "https://umee-api.w3coins.io", + "provider": "w3coins" }, { - address: 'https://api-umee.mms.team', - provider: 'MMS' + "address": "https://api-umee.mms.team", + "provider": "MMS" }, { - address: 'https://api-umee.mzonder.com', - provider: 'MZONDER' + "address": "https://api-umee.mzonder.com", + "provider": "MZONDER" }, { - address: 'https://umee-api.stake-town.com', - provider: 'StakeTown' + "address": "https://umee-api.stake-town.com", + "provider": "StakeTown" }, { - address: 'https://umee-api.highstakes.ch:1317/', - provider: 'High Stakes 🇨🇭' + "address": "https://umee-api.highstakes.ch:1317/", + "provider": "High Stakes 🇨🇭" }, { - address: 'https://umee.api.stakevillage.net', - provider: 'Stake Village' + "address": "https://umee.api.stakevillage.net", + "provider": "Stake Village" } ], - grpc: [ + "grpc": [ { - address: 'grpc-umee-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-umee-ia.cosmosia.notional.ventures:443", + "provider": "Notional" }, { - address: 'umee-grpc.polkachu.com:13690', - provider: 'Polkachu' + "address": "umee-grpc.polkachu.com:13690", + "provider": "Polkachu" }, { - address: 'umee-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "umee-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc-umee.cosmos-spaces.cloud:2110', - provider: 'Cosmos Spaces' + "address": "grpc-umee.cosmos-spaces.cloud:2110", + "provider": "Cosmos Spaces" }, { - address: 'umee-grpc.quantnode.tech:9090', - provider: 'QuantNode gRPC' + "address": "umee-grpc.quantnode.tech:9090", + "provider": "QuantNode gRPC" }, { - address: 'umee.grpc.m.stavr.tech:9090', - provider: '🔥STAVR🔥' + "address": "umee.grpc.m.stavr.tech:9090", + "provider": "🔥STAVR🔥" }, { - address: 'umee-grpc.quantnode.tech:9091', - provider: 'QuantNode gRPCweb' + "address": "umee-grpc.quantnode.tech:9091", + "provider": "QuantNode gRPCweb" }, { - address: 'umee-grpc.tienthuattoan.ventures:9090', - provider: 'TienThuatToan' + "address": "umee-grpc.tienthuattoan.ventures:9090", + "provider": "TienThuatToan" }, { - address: 'grpc-umee-01.stakeflow.io:9990', - provider: 'Stakeflow' + "address": "grpc-umee-01.stakeflow.io:9990", + "provider": "Stakeflow" }, { - address: 'services.staketab.com:9020', - provider: 'Staketab' + "address": "services.staketab.com:9020", + "provider": "Staketab" }, { - address: 'umee.grpc.kjnodes.com:16290', - provider: 'kjnodes' + "address": "umee.grpc.kjnodes.com:16290", + "provider": "kjnodes" }, { - address: 'umee-grpc.w3coins.io:13690', - provider: 'w3coins' + "address": "umee-grpc.w3coins.io:13690", + "provider": "w3coins" }, { - address: 'grpc-umee.mms.team:443', - provider: 'MMS' + "address": "grpc-umee.mms.team:443", + "provider": "MMS" }, { - address: 'grpc-umee.mzonder.com:443', - provider: 'MZONDER' + "address": "grpc-umee.mzonder.com:443", + "provider": "MZONDER" }, { - address: 'umee-grpc.stake-town.com:443', - provider: 'StakeTown' + "address": "umee-grpc.stake-town.com:443", + "provider": "StakeTown" }, { - address: 'umee.grpc.stakevillage.net:11090', - provider: 'Stake Village' + "address": "umee.grpc.stakevillage.net:11090", + "provider": "Stake Village" } ] }, - explorers: [ + "explorers": [ { - kind: 'mintscan', - url: 'https://www.mintscan.io/umee/', - tx_page: 'https://www.mintscan.io/umee/transactions/${txHash}', - account_page: 'https://www.mintscan.io/umee/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/umee/", + "tx_page": "https://www.mintscan.io/umee/transactions/${txHash}", + "account_page": "https://www.mintscan.io/umee/accounts/${accountAddress}" }, { - 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: '🔥STAVR🔥 Explorer', - url: 'https://explorer.stavr.tech/umee', - tx_page: 'https://explorer.stavr.tech/umee/tx/${txHash}' + "kind": "🔥STAVR🔥 Explorer", + "url": "https://explorer.stavr.tech/umee", + "tx_page": "https://explorer.stavr.tech/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}', - account_page: 'https://atomscan.com/umee/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/umee", + "tx_page": "https://atomscan.com/umee/transactions/${txHash}", + "account_page": "https://atomscan.com/umee/accounts/${accountAddress}" }, { - kind: 'Stakeflow', - url: 'https://stakeflow.io/umee', - account_page: 'https://stakeflow.io/umee/accounts/${accountAddress}' + "kind": "Stakeflow", + "url": "https://stakeflow.io/umee", + "account_page": "https://stakeflow.io/umee/accounts/${accountAddress}" }, { - kind: 'Stake-Take', - url: 'https://explorer.stake-take.com/umee', - tx_page: 'https://explorer.stake-take.com/umee/transactions/${txHash}', - account_page: - 'https://explorer.stake-take.com/umee/account/${accountAddress}' + "kind": "Stake-Take", + "url": "https://explorer.stake-take.com/umee", + "tx_page": "https://explorer.stake-take.com/umee/transactions/${txHash}", + "account_page": "https://explorer.stake-take.com/umee/account/${accountAddress}" }, { - kind: 'Stake Village', - url: 'https://exp.stakevillage.net/umee', - tx_page: 'https://exp.stakevillage.net/umee/tx/${txHash}', - account_page: - 'https://exp.stakevillage.net/umee/account/${accountAddress}' + "kind": "Stake Village", + "url": "https://exp.stakevillage.net/umee", + "tx_page": "https://exp.stakevillage.net/umee/tx/${txHash}", + "account_page": "https://exp.stakevillage.net/umee/account/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'unification', - status: 'live', - network_type: 'mainnet', - website: 'https://unification.com/', - pretty_name: 'Unification', - chain_id: 'FUND-MainNet-2', - bech32_prefix: 'und', - daemon_name: 'und', - node_home: '$HOME/.und_mainchain', - key_algos: ['secp256k1'], - slip44: 5555, - fees: { - fee_tokens: [ - { - denom: 'nund', - fixed_min_gas_price: 25, - low_gas_price: 100, - average_gas_price: 200, - high_gas_price: 300 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'nund' - } - ], - lock_duration: { - time: '1814400s' - } - }, - codebase: { - git_repo: 'https://github.com/unification-com/mainchain', - recommended_version: 'v1.8.2', - compatible_versions: ['v1.8.1', 'v1.8.0'], - binaries: { - 'linux/amd64': - 'https://github.com/unification-com/mainchain/releases/download/v1.8.2/und_v1.8.2_linux_x86_64.tar.gz', - 'darwin/amd64': - 'https://github.com/unification-com/mainchain/releases/download/v1.8.2/und_v1.8.2_darwin_x86_64.tar.gz', - 'windows/amd64': - 'https://github.com/unification-com/mainchain/releases/download/v1.8.2/und_v1.8.2_windows_x86_64.tar.gz' - }, - cosmos_sdk_version: '0.46.15', - consensus: { - type: 'tendermint', - version: '0.34.29' - }, - cosmwasm_enabled: false, - ibc_go_version: '5.3.1', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/unification-com/mainnet/master/latest/genesis.json' - }, - versions: [ - { - name: '1-ibc', - tag: 'v1.6.3', - proposal: 6, - height: 2002620, - consensus: { - type: 'tendermint', - version: '0.34.21' - }, - cosmos_sdk_version: '0.45.9', - ibc_go_version: '3.1.0', - ics_enabled: ['ics20-1'], - cosmwasm_enabled: false, - next_version_name: 'v1.7.0' - }, - { - name: '2-grog', - tag: 'v1.7.0', - proposal: 13, - height: 4727000, - consensus: { - type: 'tendermint', - version: '0.34.26' - }, - cosmos_sdk_version: '0.45.14', - ibc_go_version: '3.4.0', - ics_enabled: ['ics20-1'], - cosmwasm_enabled: false, - next_version_name: 'v1.8.0' - }, + "$schema": "../chain.schema.json", + "chain_name": "unification", + "status": "live", + "network_type": "mainnet", + "website": "https://unification.com/", + "pretty_name": "Unification", + "chain_id": "FUND-MainNet-2", + "bech32_prefix": "und", + "daemon_name": "und", + "node_home": "$HOME/.und_mainchain", + "key_algos": [ + "secp256k1" + ], + "slip44": 5555, + "fees": { + "fee_tokens": [ { - name: '3-keyleth', - tag: 'v1.8.2', - proposal: 14, - height: 6943000, - consensus: { - type: 'tendermint', - version: '0.34.29' - }, - cosmos_sdk_version: '0.46.15', - ibc_go_version: '5.3.1', - ics_enabled: ['ics20-1'], - cosmwasm_enabled: false, - recommended_version: 'v1.8.2', - compatible_versions: ['v1.8.1', 'v1.8.0'] + "denom": "nund", + "fixed_min_gas_price": 25, + "low_gas_price": 100, + "average_gas_price": 200, + "high_gas_price": 300 } ] }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' - } - ], - peers: { - seeds: [ - { - id: '0c2b65bc604a18a490f5f55bb7b4140cfb512ced', - address: 'seed1.unification.io:26656', - provider: 'Unification' - }, + "staking": { + "staking_tokens": [ { - id: 'e66e0f89af19da09f676c85b262d591b8c2bb9d8', - address: 'seed2.unification.io:26656', - provider: 'Unification' + "denom": "nund" } ], - persistent_peers: [ - { - id: 'cbfbef01568737d2c7327bc198b8d929ea648b9c', - address: '162.55.32.89:26656', - provider: 'Chainmasters' - }, - { - id: '677060cb6a19cb2c2e9650c35abc509e8210022b', - address: '65.108.209.227:26656', - provider: 'Chainmasters' - } - ] + "lock_duration": { + "time": "1814400s" + } }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46.15", + "cosmwasm_enabled": false + }, + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg" + } + ], + "apis": { + "rpc": [ { - address: 'https://rpc1.unification.io:443', - provider: 'Unification' + "address": "https://rpc1.unification.io:443", + "provider": "Unification" }, { - address: 'https://rpc.unification.chainmasters.ninja/', - provider: 'Chainmasters' + "address": "https://rpc.unification.chainmasters.ninja/", + "provider": "Chainmasters" } ], - rest: [ + "rest": [ { - address: 'https://rest.unification.io', - provider: 'Unification' + "address": "https://rest.unification.io", + "provider": "Unification" }, { - address: 'https://rest.unification.chainmasters.ninja/', - provider: 'Chainmasters' + "address": "https://rest.unification.chainmasters.ninja/", + "provider": "Chainmasters" } ], - grpc: [ + "grpc": [ { - address: 'grpc.unification.io:443', - provider: 'Unification' + "address": "grpc.unification.io:443", + "provider": "Unification" }, { - address: 'grpc.unification.chainmasters.info', - provider: 'Chainmasters' + "address": "grpc.unification.chainmasters.info", + "provider": "Chainmasters" } ] }, - explorers: [ + "explorers": [ { - kind: 'bigdipper', - url: 'https://explorer.unification.io/', - tx_page: 'https://explorer.unification.io/transactions/${txHash}', - account_page: - 'https://explorer.unification.io/accounts/${accountAddress}' + "kind": "bigdipper", + "url": "https://explorer.unification.io/", + "tx_page": "https://explorer.unification.io/transactions/${txHash}", + "account_page": "https://explorer.unification.io/accounts/${accountAddress}" }, { - kind: 'ping.pub', - url: 'https://explorer.unification.chainmasters.ninja/unification', - tx_page: - 'https://explorer.unification.chainmasters.ninja/unification/tx/${txHash}', - account_page: - 'https://explorer.unification.chainmasters.ninja/Unification/account/${accountAddress}' + "kind": "ping.pub", + "url": "https://explorer.unification.chainmasters.ninja/unification", + "tx_page": "https://explorer.unification.chainmasters.ninja/unification/tx/${txHash}", + "account_page": "https://explorer.unification.chainmasters.ninja/Unification/account/${accountAddress}" }, { - kind: 'atomscan', - url: 'https://atomscan.com/unification', - tx_page: 'https://atomscan.com/unification/transactions/${txHash}', - account_page: - 'https://atomscan.com/unification/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/unification", + "tx_page": "https://atomscan.com/unification/transactions/${txHash}", + "account_page": "https://atomscan.com/unification/accounts/${accountAddress}" } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg" } }, { - $schema: '../chain.schema.json', - chain_name: 'ununifi', - status: 'live', - network_type: 'mainnet', - website: 'https://ununifi.io/', - pretty_name: 'UnUniFi', - chain_id: 'ununifi-beta-v1', - bech32_prefix: 'ununifi', - daemon_name: 'ununifid', - node_home: '$HOME/.ununifi', - key_algos: ['secp256k1'], - slip44: 118, - fees: { - fee_tokens: [ - { - denom: 'uguu', - fixed_min_gas_price: 0.0025, - low_gas_price: 0.0025, - average_gas_price: 0.025, - high_gas_price: 0.04 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uguu' - } - ], - lock_duration: { - time: '1209600s' - } - }, - codebase: { - git_repo: 'https://github.com/UnUniFi/chain', - recommended_version: 'v4.0.1', - compatible_versions: ['v4.0.1'], - binaries: { - 'linux/amd64': - 'https://github.com/UnUniFi/chain/releases/download/v4.0.1/ununifid' - }, - cosmos_sdk_version: 'v0.47.3-custom-bank-1', - consensus: { - type: 'cometbft', - version: '0.37.1' - }, - cosmwasm_version: 'v0.40.1', - cosmwasm_enabled: true, - ibc_go_version: 'v7.0.1', - ics_enabled: ['ics20-1'], - genesis: { - name: 'beta-v1', - genesis_url: - 'https://raw.githubusercontent.com/UnUniFi/network/main/launch/ununifi-beta-v1/genesis.json' - }, - versions: [ - { - name: 'v2', - recommended_version: 'v2.0.0', - compatible_versions: ['v2.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/UnUniFi/chain/releases/download/v2.0.0/ununifid' - }, - cosmos_sdk_version: '0.47', - consensus: { - type: 'cometbft', - version: '0.34' - }, - cosmwasm_version: '0.40', - cosmwasm_enabled: true, - ibc_go_version: '7.0.0', - ics_enabled: ['ics20-1'], - next_version_name: 'v2_1' - }, - { - name: 'v2_1', - recommended_version: 'v2.1.0', - compatible_versions: ['v2.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/UnUniFi/chain/releases/download/v2.1.0/ununifid' - }, - proposal: 12, - height: 5630000, - cosmos_sdk_version: '0.47', - consensus: { - type: 'cometbft', - version: '0.34' - }, - cosmwasm_version: '0.40', - cosmwasm_enabled: true, - ibc_go_version: '7.0.1', - ics_enabled: ['ics20-1'], - next_version_name: 'v2_2' - }, - { - name: 'v2_2', - recommended_version: 'v2.2.0', - compatible_versions: ['v2.2.0'], - binaries: { - 'linux/amd64': - 'https://github.com/UnUniFi/chain/releases/download/v2.2.0/ununifid' - }, - proposal: 13, - height: 5736100, - cosmos_sdk_version: 'v0.47.1-bank-rc2', - consensus: { - type: 'cometbft', - version: 'v0.37.1' - }, - cosmwasm_version: 'v0.40.1', - cosmwasm_enabled: true, - ibc_go_version: 'v7.0.1', - ics_enabled: ['ics20-1'], - next_version_name: 'v3' - }, - { - name: 'v3', - recommended_version: 'v3.0.0', - compatible_versions: ['v3.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/UnUniFi/chain/releases/download/v3.0.0/ununifid' - }, - proposal: 14, - height: 5807100, - cosmos_sdk_version: 'v0.47.3-custom-bank-1', - consensus: { - type: 'cometbft', - version: 'v0.37.1' - }, - cosmwasm_version: 'v0.40.1', - cosmwasm_enabled: true, - ibc_go_version: 'v7.0.1', - ics_enabled: ['ics20-1'], - next_version_name: 'v3_1' - }, - { - name: 'v3_1', - recommended_version: 'v3.1.0', - compatible_versions: ['v3.1.0'], - binaries: { - 'linux/amd64': - 'https://github.com/UnUniFi/chain/releases/download/v3.1.0/ununifid' - }, - proposal: 15, - height: 6577693, - cosmos_sdk_version: 'v0.47.3-custom-bank-1', - consensus: { - type: 'cometbft', - version: 'v0.37.1' - }, - cosmwasm_version: 'v0.40.1', - cosmwasm_enabled: true, - ibc_go_version: 'v7.0.1', - ics_enabled: ['ics20-1'], - next_version_name: 'v3_2_1' - }, - { - name: 'v3_2_1', - recommended_version: 'v3.2.1', - compatible_versions: ['v3.2.1'], - binaries: { - 'linux/amd64': - 'https://github.com/UnUniFi/chain/releases/download/v3.2.1/ununifid' - }, - proposal: 16, - height: 6754737, - cosmos_sdk_version: 'v0.47.3-custom-bank-1', - consensus: { - type: 'cometbft', - version: 'v0.37.1' - }, - cosmwasm_version: 'v0.40.1', - cosmwasm_enabled: true, - ibc_go_version: 'v7.0.1', - ics_enabled: ['ics20-1'], - next_version_name: 'v3_2_2' - }, - { - name: 'v3_2_2', - recommended_version: 'v3.2.2-query', - compatible_versions: ['v3.2.2', 'v3.2.2-query'], - binaries: { - 'linux/amd64': - 'https://github.com/UnUniFi/chain/releases/download/v3.2.2-query/ununifid' - }, - proposal: 18, - height: 7061394, - cosmos_sdk_version: 'v0.47.3-custom-bank-1', - consensus: { - type: 'cometbft', - version: 'v0.37.1' - }, - cosmwasm_version: 'v0.40.1', - cosmwasm_enabled: true, - ibc_go_version: 'v7.0.1', - ics_enabled: ['ics20-1'], - next_version_name: 'v4' - }, - { - name: 'v4', - recommended_version: 'v4.0.0', - compatible_versions: ['v4.0.0'], - binaries: { - 'linux/amd64': - 'https://github.com/UnUniFi/chain/releases/download/v4.0.0/ununifid' - }, - proposal: 24, - height: 8197583, - cosmos_sdk_version: 'v0.47.3-custom-bank-1', - consensus: { - type: 'cometbft', - version: 'v0.37.1' - }, - cosmwasm_version: 'v0.40.1', - cosmwasm_enabled: true, - ibc_go_version: 'v7.0.1', - ics_enabled: ['ics20-1'], - next_version_name: 'v4_0_1' - }, - { - name: 'v4_0_1', - recommended_version: 'v4.0.1', - compatible_versions: ['v4.0.1'], - binaries: { - 'linux/amd64': - 'https://github.com/UnUniFi/chain/releases/download/v4.0.1/ununifid' - }, - proposal: 25, - height: 8299656, - cosmos_sdk_version: 'v0.47.3-custom-bank-1', - consensus: { - type: 'cometbft', - version: 'v0.37.1' - }, - cosmwasm_version: 'v0.40.1', - cosmwasm_enabled: true, - ibc_go_version: 'v7.0.1', - ics_enabled: ['ics20-1'], - next_version_name: '' + "$schema": "../chain.schema.json", + "chain_name": "ununifi", + "status": "live", + "network_type": "mainnet", + "website": "https://ununifi.io/", + "pretty_name": "UnUniFi", + "chain_id": "ununifi-beta-v1", + "bech32_prefix": "ununifi", + "daemon_name": "ununifid", + "node_home": "$HOME/.ununifi", + "key_algos": [ + "secp256k1" + ], + "slip44": 118, + "fees": { + "fee_tokens": [ + { + "denom": "uguu", + "fixed_min_gas_price": 0.0025, + "low_gas_price": 0.0025, + "average_gas_price": 0.025, + "high_gas_price": 0.04 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.svg' - }, - peers: { - seeds: [], - persistent_peers: [ - { - id: 'fa38d2a851de43d34d9602956cd907eb3942ae89', - address: 'a.ununifi.cauchye.net:26656', - provider: 'CauchyE' - }, - { - id: '404ea79bd31b1734caacced7a057d78ae5b60348', - address: 'b.ununifi.cauchye.net:26656', - provider: 'CauchyE' - }, - { - id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', - address: 'ununifi-mainnet-seed.autostake.com:26746', - provider: 'AutoStake 🛡️ Slash Protected' - }, - { - id: '1357ac5cd92b215b05253b25d78cf485dd899d55', - address: '[2600:1f1c:534:8f02:7bf:6b31:3702:2265]:26656' - }, - { - id: '25006d6b85daeac2234bcb94dafaa73861b43ee3', - address: '[2600:1f1c:534:8f02:a407:b1c6:e8f5:94b]:26656' - }, - { - id: 'caf792ed396dd7e737574a030ae8eabe19ecdf5c', - address: '[2600:1f1c:534:8f02:b0a4:dbf6:e50b:d64e]:26656' - }, - { - id: '796c62bb2af411c140cf24ddc409dff76d9d61cf', - address: '[2600:1f1c:534:8f02:ca0e:14e9:8e60:989e]:26656' - }, - { - id: 'cea8d05b6e01188cf6481c55b7d1bc2f31de0eed', - address: '[2600:1f1c:534:8f02:ba43:1f69:e23a:df6b]:26656' - }, + "staking": { + "staking_tokens": [ { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:23256', - provider: 'Lavender.Five Nodes 🐝' + "denom": "uguu" } - ] + ], + "lock_duration": { + "time": "1209600s" + } }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "v0.47.3-custom-bank-1", + "cosmwasm_enabled": true, + "cosmwasm_version": "v0.40.1" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.svg" + }, + "apis": { + "rpc": [ { - address: 'http://a.lcd.ununifi.cauchye.net:26657', - provider: 'CauchyE' + "address": "http://a.lcd.ununifi.cauchye.net:26657", + "provider": "CauchyE" }, { - address: 'https://rpc.ununifi.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.ununifi.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://ununifi-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://ununifi-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://ununifi-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://ununifi-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://ununifi-rpc.genznodes.dev', - provider: 'genznodes' + "address": "https://ununifi-rpc.genznodes.dev", + "provider": "genznodes" } ], - rest: [ + "rest": [ { - address: 'https://a.lcd.ununifi.cauchye.net:1318', - provider: 'CauchyE' + "address": "https://a.lcd.ununifi.cauchye.net:1318", + "provider": "CauchyE" }, { - address: 'https://b.lcd.ununifi.cauchye.net:1318', - provider: 'CauchyE' + "address": "https://b.lcd.ununifi.cauchye.net:1318", + "provider": "CauchyE" }, { - address: 'https://api.ununifi.nodestake.top', - provider: 'NodeStake' + "address": "https://api.ununifi.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://ununifi-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://ununifi-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'https://ununifi-api.genznodes.dev', - provider: 'genznodes' + "address": "https://ununifi-api.genznodes.dev", + "provider": "genznodes" } ], - grpc: [ + "grpc": [ { - address: 'a.lcd.ununifi.cauchye.net:9092', - provider: 'CauchyE' + "address": "a.lcd.ununifi.cauchye.net:9092", + "provider": "CauchyE" }, { - address: 'b.lcd.ununifi.cauchye.net:9092', - provider: 'CauchyE' + "address": "b.lcd.ununifi.cauchye.net:9092", + "provider": "CauchyE" }, { - address: 'ununifi-mainnet-grpc.autostake.com:443', - provider: 'AutoStake 🛡️ Slash Protected' + "address": "ununifi-mainnet-grpc.autostake.com:443", + "provider": "AutoStake 🛡️ Slash Protected" }, { - address: 'grpc.ununifi.nodestake.top:9090', - provider: 'NodeStake' + "address": "grpc.ununifi.nodestake.top:9090", + "provider": "NodeStake" }, { - address: 'https://grpc-ununifi.nodeist.net', - provider: 'Nodeist' + "address": "https://grpc-ununifi.nodeist.net", + "provider": "Nodeist" }, { - address: 'https://ununifi-grpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://ununifi-grpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'ununifi-grpc.genznodes.dev:54090', - provider: 'genznodes' + "address": "ununifi-grpc.genznodes.dev:54090", + "provider": "genznodes" } ] }, - explorers: [ + "explorers": [ { - kind: 'UnUniFi Explorer', - url: 'https://ununifi.io/explorer', - tx_page: 'https://ununifi.io/explorer/txs/${txHash}' + "kind": "UnUniFi Explorer", + "url": "https://ununifi.io/explorer", + "tx_page": "https://ununifi.io/explorer/txs/${txHash}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/ununifi', - tx_page: 'https://explorer.nodestake.top/ununifi/tx/${txHash}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/ununifi", + "tx_page": "https://explorer.nodestake.top/ununifi/tx/${txHash}" }, { - kind: 'Nodeist Explorer', - url: 'https://exp.nodeist.net/Ununifi', - tx_page: 'https://exp.nodeist.net/Ununifi/tx/${txHash}' + "kind": "Nodeist Explorer", + "url": "https://exp.nodeist.net/Ununifi", + "tx_page": "https://exp.nodeist.net/Ununifi/tx/${txHash}" } ], - keywords: ['staking', 'wasm', 'assets', 'nft'], - images: [ + "keywords": [ + "staking", + "wasm", + "assets", + "nft" + ], + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'uptick', - status: 'live', - network_type: 'mainnet', - website: 'https://uptick.network/', - pretty_name: 'Uptick', - chain_id: 'uptick_117-1', - bech32_prefix: 'uptick', - daemon_name: 'uptickd', - node_home: '$HOME/.uptickd', - key_algos: ['secp256k1'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'auptick', - fixed_min_gas_price: 10000000000, - low_gas_price: 10000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'auptick' - } - ] - }, - codebase: { - git_repo: 'https://github.com/UptickNetwork/uptick', - recommended_version: 'v0.2.4', - compatible_versions: ['v0.2.4'], - binaries: { - 'linux/amd64': - 'https://github.com/UptickNetwork/uptick/releases/download/v0.2.4/uptick-linux-amd64-v0.2.4.tar.gz' - }, - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '', - cosmwasm_enabled: false, - ibc_go_version: '5.0.1', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/uptick-network/mainnet/main/genesis.json' - }, - versions: [ - { - name: 'v0.2.4', - recommended_version: 'v0.2.4', - compatible_versions: ['v0.2.4'], - cosmos_sdk_version: '0.46', - consensus: { - type: 'tendermint', - version: '0.34' - }, - cosmwasm_version: '', - cosmwasm_enabled: false, - ibc_go_version: '5.0.1', - binaries: { - 'linux/amd64': - 'https://github.com/UptickNetwork/uptick/releases/download/v0.2.4/uptick-linux-amd64-v0.2.4.tar.gz' - } + "$schema": "../chain.schema.json", + "chain_name": "uptick", + "status": "live", + "network_type": "mainnet", + "website": "https://uptick.network/", + "pretty_name": "Uptick", + "chain_id": "uptick_117-1", + "bech32_prefix": "uptick", + "daemon_name": "uptickd", + "node_home": "$HOME/.uptickd", + "key_algos": [ + "secp256k1" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ + { + "denom": "auptick", + "fixed_min_gas_price": 10000000000, + "low_gas_price": 10000000000, + "average_gas_price": 25000000000, + "high_gas_price": 40000000000 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.svg' - }, - peers: { - seeds: [ - { - id: 'f97a75fb69d3a5fe893dca7c8d238ccc0bd66a8f', - address: 'uptick.seed.brocha.in:30600', - provider: 'Brochain' - }, - { - id: '400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc', - address: 'uptick.rpc.kjnodes.com:11559', - provider: 'kjnodes' - }, - { - id: 'e71bae28852a0b603f7360ec17fe91e7f065f324', - address: 'uptick-mainnet-seed.itrocket.net:35656', - provider: 'itrocket' - }, - { - id: 'bfc5a787583ee52e9e5f2e160e6b32a9cfe213fd', - address: 'seed-node.mms.team:36656', - provider: 'MMS' - }, - { - id: 'df949a46ae6529ae1e09b034b49716468d5cc7e9', - address: 'seeds.stakerhouse.com:10656', - provider: 'StakerHouse' - } - ], - persistent_peers: [ - { - id: '94b63fddfc78230f51aeb7ac34b9fb86bd042a77', - address: 'uptick-rpc.p2p.brocha.in:30601', - provider: 'Brochain' - }, + "staking": { + "staking_tokens": [ { - id: 'dd482d080820020b144ca2efaf128d78261dea82', - address: 'uptick-mainnet-peer.itrocket.net:10656', - provider: 'itrocket' - }, - { - id: 'c65c6ecfb60635fc8a076b6f90fcd2607aceaa64', - address: 'uptick.peers.stavr.tech:3156', - provider: '🔥STAVR🔥' - }, - { - id: '37604dc6535a2f1b91e38c35f77b5be4a93c35b2', - address: '45.77.168.172:26656', - provider: '[NODERS]TEAM' - }, - { - id: '038aca614e49ec4e5e3a06c875976a94c478cb09', - address: '65.108.195.29:21656', - provider: 'Staketab' - }, - { - id: '3ffde1aaf638c681fb4bd3fa24f0786f68a16611', - address: 'peer-uptick.mms.team:56105', - provider: 'MMS' + "denom": "auptick" } ] }, - apis: { - rpc: [ + "codebase": { + "cosmos_sdk_version": "0.46", + "cosmwasm_enabled": false, + "cosmwasm_version": "" + }, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.svg" + }, + "apis": { + "rpc": [ { - address: 'https://uptick-rpc.brocha.in:443', - provider: 'Brochain' + "address": "https://uptick-rpc.brocha.in:443", + "provider": "Brochain" }, { - address: 'https://uptick.rpc.bccnodes.com:443', - provider: 'BccNodes' + "address": "https://uptick.rpc.bccnodes.com:443", + "provider": "BccNodes" }, { - address: 'https://rpc.uptick.nodestake.top', - provider: 'NodeStake' + "address": "https://rpc.uptick.nodestake.top", + "provider": "NodeStake" }, { - address: 'http://uptick.rpc.nodersteam.com:21657', - provider: '[NODERS]TEAM' + "address": "http://uptick.rpc.nodersteam.com:21657", + "provider": "[NODERS]TEAM" }, { - address: 'https://uptick.rpc.kjnodes.com', - provider: 'kjnodes' + "address": "https://uptick.rpc.kjnodes.com", + "provider": "kjnodes" }, { - address: 'http://uptick.rpc.m.stavr.tech:3157', - provider: '🔥STAVR🔥' + "address": "http://uptick.rpc.m.stavr.tech:3157", + "provider": "🔥STAVR🔥" }, { - address: 'https://m-uptick.rpc.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-uptick.rpc.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://uptick-mainnet-rpc.itrocket.net:443', - provider: 'itrocket' + "address": "https://uptick-mainnet-rpc.itrocket.net:443", + "provider": "itrocket" }, { - address: 'https://uptick.rpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://uptick.rpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://uptick-rpc.staketab.org:443', - provider: 'Staketab' + "address": "https://uptick-rpc.staketab.org:443", + "provider": "Staketab" }, { - address: 'https://uptick-rpc.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://uptick-rpc.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://rpc-uptick.cakralabs.site', - provider: 'Cakra Labs' + "address": "https://rpc-uptick.cakralabs.site", + "provider": "Cakra Labs" }, { - address: 'https://rpc-uptick.sr20de.xyz', - provider: 'Sr20de' + "address": "https://rpc-uptick.sr20de.xyz", + "provider": "Sr20de" } ], - rest: [ + "rest": [ { - address: 'https://uptick-rest.brocha.in:443', - provider: 'Brochain' + "address": "https://uptick-rest.brocha.in:443", + "provider": "Brochain" }, { - address: 'http://uptick.api.nodersteam.com:21017', - provider: '[NODERS]TEAM' + "address": "http://uptick.api.nodersteam.com:21017", + "provider": "[NODERS]TEAM" }, { - address: 'https://api.uptick.nodestake.top', - provider: 'NodeStake' + "address": "https://api.uptick.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://uptick.api.kjnodes.com', - provider: 'kjnodes' + "address": "https://uptick.api.kjnodes.com", + "provider": "kjnodes" }, { - address: 'https://uptick.api.m.stavr.tech', - provider: '🔥STAVR🔥' + "address": "https://uptick.api.m.stavr.tech", + "provider": "🔥STAVR🔥" }, { - address: 'https://m-uptick.api.utsa.tech', - provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀' + "address": "https://m-uptick.api.utsa.tech", + "provider": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀" }, { - address: 'https://uptick-mainnet-api.itrocket.net:443', - provider: 'itrocket' + "address": "https://uptick-mainnet-api.itrocket.net:443", + "provider": "itrocket" }, { - address: 'https://uptick.api.liveraven.net', - provider: 'LiveRaveN' + "address": "https://uptick.api.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://uptick-rest.staketab.org', - provider: 'Staketab' + "address": "https://uptick-rest.staketab.org", + "provider": "Staketab" }, { - address: 'https://uptick-rest.stakerhouse.com', - provider: 'StakerHouse' + "address": "https://uptick-rest.stakerhouse.com", + "provider": "StakerHouse" }, { - address: 'https://rest-uptick.cakralabs.site', - provider: 'Cakra Labs' + "address": "https://rest-uptick.cakralabs.site", + "provider": "Cakra Labs" }, { - address: 'https://api-uptick.sr20de.xyz', - provider: 'Sr20de' + "address": "https://api-uptick.sr20de.xyz", + "provider": "Sr20de" } ], - grpc: [ + "grpc": [ { - address: 'https://grpc.uptick.nodestake.top', - provider: 'NodeStake' + "address": "https://grpc.uptick.nodestake.top", + "provider": "NodeStake" }, { - address: 'uptick.rpc.bccnodes.com:9690', - provider: 'BccNodes' + "address": "uptick.rpc.bccnodes.com:9690", + "provider": "BccNodes" }, { - address: 'uptick.grpc.nodersteam.com:9211', - provider: '[NODERS]TEAM' + "address": "uptick.grpc.nodersteam.com:9211", + "provider": "[NODERS]TEAM" }, { - address: 'uptick.grpc.kjnodes.com:11590', - provider: 'kjnodes' + "address": "uptick.grpc.kjnodes.com:11590", + "provider": "kjnodes" }, { - address: 'uptick.grpc.m.stavr.tech:1901', - provider: '🔥STAVR🔥' + "address": "uptick.grpc.m.stavr.tech:1901", + "provider": "🔥STAVR🔥" }, { - address: 'uptick-mainnet-grpc.itrocket.net:10090', - provider: 'itrocket' + "address": "uptick-mainnet-grpc.itrocket.net:10090", + "provider": "itrocket" }, { - address: 'https://uptick.grpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://uptick.grpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'services.staketab.com:9190', - provider: 'Staketab' + "address": "services.staketab.com:9190", + "provider": "Staketab" }, { - address: 'uptick-grpc.stakerhouse.com:443', - provider: 'StakerHouse' + "address": "uptick-grpc.stakerhouse.com:443", + "provider": "StakerHouse" }, { - address: 'grpc-uptick.mms.team:443', - provider: 'MMS' + "address": "grpc-uptick.mms.team:443", + "provider": "MMS" }, { - address: 'https://grpc-uptick.sr20de.xyz', - provider: 'Sr20de' + "address": "https://grpc-uptick.sr20de.xyz", + "provider": "Sr20de" } ], - 'evm-http-jsonrpc': [ + "evm-http-jsonrpc": [ { - address: 'https://jsonrpc.uptick.nodestake.top', - provider: 'NodeStake' + "address": "https://jsonrpc.uptick.nodestake.top", + "provider": "NodeStake" }, { - address: 'https://uptick.jsonrpc.liveraven.net', - provider: 'LiveRaveN' + "address": "https://uptick.jsonrpc.liveraven.net", + "provider": "LiveRaveN" }, { - address: 'https://evm-uptick.sr20de.xyz', - provider: 'Sr20de' + "address": "https://evm-uptick.sr20de.xyz", + "provider": "Sr20de" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://explorers.brocha.in/uptick', - tx_page: 'https://explorers.brocha.in/uptick/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explorers.brocha.in/uptick", + "tx_page": "https://explorers.brocha.in/uptick/tx/${txHash}" }, { - kind: 'NodeStake Explorer', - url: 'https://explorer.nodestake.top/uptick', - tx_page: 'https://explorer.nodestake.top/uptick/tx/${txHash}' + "kind": "NodeStake Explorer", + "url": "https://explorer.nodestake.top/uptick", + "tx_page": "https://explorer.nodestake.top/uptick/tx/${txHash}" }, { - kind: 'BccNodes Explorer', - url: 'https://explorer.bccnodes.com/uptick-M', - tx_page: 'https://explorer.bccnodes.com/uptick-M/tx/${txHash}' + "kind": "BccNodes Explorer", + "url": "https://explorer.bccnodes.com/uptick-M", + "tx_page": "https://explorer.bccnodes.com/uptick-M/tx/${txHash}" }, { - kind: '🔥STAVR🔥 Explorer', - url: 'https://explorer.stavr.tech/uptick-mainnet', - tx_page: 'https://explorer.stavr.tech/uptick-mainnet/tx/${txHash}' + "kind": "🔥STAVR🔥 Explorer", + "url": "https://explorer.stavr.tech/uptick-mainnet", + "tx_page": "https://explorer.stavr.tech/uptick-mainnet/tx/${txHash}" }, { - kind: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 Explorer', - url: 'https://exp.utsa.tech/uptick', - tx_page: 'https://exp.utsa.tech/uptick/tx/${txHash}' + "kind": "𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀 Explorer", + "url": "https://exp.utsa.tech/uptick", + "tx_page": "https://exp.utsa.tech/uptick/tx/${txHash}" }, { - kind: 'cosmotracker', - url: 'https://cosmotracker.com/uptick', - tx_page: 'https://cosmotracker.com/uptick/tx/${txHash}' + "kind": "cosmotracker", + "url": "https://cosmotracker.com/uptick", + "tx_page": "https://cosmotracker.com/uptick/tx/${txHash}" }, { - kind: 'Upscan', - url: 'https://upscan.xyz/', - tx_page: 'https://upscan.xyz/uptick_117-1/tx/${txHash}' + "kind": "Upscan", + "url": "https://upscan.xyz/", + "tx_page": "https://upscan.xyz/uptick_117-1/tx/${txHash}" }, { - kind: 'Sr20de', - url: 'https://explorer.sr20de.xyz/uptick', - tx_page: 'https://explorer.sr20de.xyz/uptick/tx/${txHash}' + "kind": "Sr20de", + "url": "https://explorer.sr20de.xyz/uptick", + "tx_page": "https://explorer.sr20de.xyz/uptick/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'vidulum', - status: 'live', - network_type: 'mainnet', - website: 'https://vidulum.app/', - pretty_name: 'Vidulum', - chain_id: 'vidulum-1', - bech32_prefix: 'vdl', - daemon_name: 'vidulumd', - node_home: '$HOME/.vidulum', - key_algos: ['secp256k1'], - slip44: 370, - fees: { - fee_tokens: [ - { - denom: 'uvdl', - fixed_min_gas_price: 0.0002, - low_gas_price: 0.002, - average_gas_price: 0.005, - high_gas_price: 0.007 - } - ] - }, - staking: { - staking_tokens: [ - { - denom: 'uvdl' - } - ] - }, - codebase: { - git_repo: 'https://github.com/vidulum/mainnet', - recommended_version: 'v1.2.0', - compatible_versions: ['v1.2.0'], - binaries: { - 'linux/amd64': - 'https://github.com/vidulum/mainnet/releases/download/v1.2.0/vidulum_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/vidulum/mainnet/releases/download/v1.2.0/vidulum_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/vidulum/mainnet/releases/download/v1.2.0/vidulum_darwin_amd64.tar.gz', - 'windows/amd64': - 'https://github.com/vidulum/mainnet/releases/download/v1.2.0/vidulum_windows_amd64.zip' - }, - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/vidulum/mainnet/main/genesis.json' - }, - versions: [ - { - name: 'v1.2.0', - recommended_version: 'v1.2.0', - compatible_versions: ['v1.2.0'], - binaries: { - 'linux/amd64': - 'https://github.com/vidulum/mainnet/releases/download/v1.2.0/vidulum_linux_amd64.tar.gz', - 'linux/arm64': - 'https://github.com/vidulum/mainnet/releases/download/v1.2.0/vidulum_linux_arm64.tar.gz', - 'darwin/amd64': - 'https://github.com/vidulum/mainnet/releases/download/v1.2.0/vidulum_darwin_amd64.tar.gz', - 'windows/amd64': - 'https://github.com/vidulum/mainnet/releases/download/v1.2.0/vidulum_windows_amd64.zip' - } + "$schema": "../chain.schema.json", + "chain_name": "vidulum", + "status": "live", + "network_type": "mainnet", + "website": "https://vidulum.app/", + "pretty_name": "Vidulum", + "chain_id": "vidulum-1", + "bech32_prefix": "vdl", + "daemon_name": "vidulumd", + "node_home": "$HOME/.vidulum", + "key_algos": [ + "secp256k1" + ], + "slip44": 370, + "fees": { + "fee_tokens": [ + { + "denom": "uvdl", + "fixed_min_gas_price": 0.0002, + "low_gas_price": 0.002, + "average_gas_price": 0.005, + "high_gas_price": 0.007 } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' - }, - peers: { - seeds: [], - persistent_peers: [ - { - id: '52051fef449e76eb399966312f523e8e5e27490b', - address: '95.217.118.211:26656', - provider: 'minerpool' - }, + "staking": { + "staking_tokens": [ { - id: '209688f5bccb88f6397a97cc11ab545a014aa559', - address: '137.184.92.115:26656', - provider: '1square' + "denom": "uvdl" } ] }, - apis: { - rpc: [ + "codebase": {}, + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg" + }, + "apis": { + "rpc": [ { - address: 'https://mainnet-rpc.vidulum.app/', - provider: 'vidulum' + "address": "https://mainnet-rpc.vidulum.app/", + "provider": "vidulum" }, { - address: 'https://rpc-vidulum-ia.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://rpc-vidulum-ia.cosmosia.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.cosmosia.notional.ventures/', - provider: 'Notional' + "address": "https://api-vidulum-ia.cosmosia.notional.ventures/", + "provider": "Notional" }, { - address: 'https://api-vdl.nodine.id/', - provider: 'Nodine.ID' + "address": "https://api-vdl.nodine.id/", + "provider": "Nodine.ID" } ], - grpc: [ + "grpc": [ { - address: 'grpc-vidulum-ia.cosmosia.notional.ventures:443', - provider: 'Notional' + "address": "grpc-vidulum-ia.cosmosia.notional.ventures:443", + "provider": "Notional" } ] }, - explorers: [ + "explorers": [ { - kind: 'ping.pub', - url: 'https://explorers.vidulum.app/vidulum', - tx_page: 'https://explorers.vidulum.app/vidulum/tx/${txHash}' + "kind": "ping.pub", + "url": "https://explorers.vidulum.app/vidulum", + "tx_page": "https://explorers.vidulum.app/vidulum/tx/${txHash}" }, { - kind: 'ping.pub', - url: 'https://ping.pub/vidulum', - tx_page: 'https://ping.pub/vidulum/tx/${txHash}' + "kind": "ping.pub", + "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}', - account_page: 'https://atomscan.com/vidulum/accounts/${accountAddress}' + "kind": "atomscan", + "url": "https://atomscan.com/vidulum", + "tx_page": "https://atomscan.com/vidulum/transactions/${txHash}", + "account_page": "https://atomscan.com/vidulum/accounts/${accountAddress}" }, { - kind: 'Nodine Explorer', - url: 'https://explorer.co.id/vidulum', - tx_page: 'https://explorer.co.id/vidulum/tx/${txHash}' + "kind": "Nodine Explorer", + "url": "https://explorer.co.id/vidulum", + "tx_page": "https://explorer.co.id/vidulum/tx/${txHash}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg" } ] }, { - $schema: '../chain.schema.json', - chain_name: 'xpla', - status: 'live', - website: 'https://xpla.io', - network_type: 'mainnet', - pretty_name: 'XPLA', - chain_id: 'dimension_37-1', - bech32_prefix: 'xpla', - daemon_name: 'xplad', - node_home: '$HOME/.xpla', - key_algos: ['ethsecp256k1'], - slip44: 60, - fees: { - fee_tokens: [ - { - denom: 'axpla', - fixed_min_gas_price: 850000000000, - low_gas_price: 850000000000, - average_gas_price: 1147500000000, - high_gas_price: 1487500000000 - } - ] - }, - staking: { - staking_tokens: [ + "$schema": "../chain.schema.json", + "chain_name": "xpla", + "status": "live", + "website": "https://xpla.io", + "network_type": "mainnet", + "pretty_name": "XPLA", + "chain_id": "dimension_37-1", + "bech32_prefix": "xpla", + "daemon_name": "xplad", + "node_home": "$HOME/.xpla", + "key_algos": [ + "ethsecp256k1" + ], + "slip44": 60, + "fees": { + "fee_tokens": [ { - denom: 'axpla' + "denom": "axpla", + "fixed_min_gas_price": 850000000000, + "low_gas_price": 850000000000, + "average_gas_price": 1147500000000, + "high_gas_price": 1487500000000 } ] }, - codebase: { - git_repo: 'https://github.com/xpladev/xpla', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'], - cosmos_sdk_version: '0.45.16', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - cosmwasm_version: '0.33.0', - genesis: { - genesis_url: - 'https://raw.githubusercontent.com/xpladev/mainnet/main/dimension_37-1/genesis.json' - }, - versions: [ + "staking": { + "staking_tokens": [ { - name: 'evm', - recommended_version: 'v1.2.1', - compatible_versions: ['v1.2.1'], - cosmos_sdk_version: '0.45.9', - consensus: { - type: 'tendermint', - version: '0.34.21' - }, - cosmwasm_version: '0.28.0', - next_version_name: 'Volunteer' - }, - { - name: 'volunteer', - recommended_version: 'v1.3.0', - compatible_versions: ['v1.3.0'], - cosmos_sdk_version: '0.45.16', - consensus: { - type: 'cometbft', - version: '0.34.27' - }, - cosmwasm_version: '0.33.0', - next_version_name: '' + "denom": "axpla" } ] }, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + "codebase": { + "cosmos_sdk_version": "0.45.16", + "cosmwasm_version": "0.33.0" }, - peers: { - seeds: [ - { - id: 'e7b6016ce5663a69ba71a982072315545eb0d5f6', - address: 'seed.xpla.delightlabs.io:26656', - provider: 'DELIGHT' - }, - { - id: '20e1000e88125698264454a884812746c2eb4807', - address: 'seeds.lavenderfive.com:20157', - provider: 'Lavender.Five Nodes 🐝' - } - ], - persistent_peers: [ - { - id: '7364858f416c1890c85a83afedf1afecccb9a9de', - address: '34.86.128.71:26656', - provider: 'Holdings' - }, - { - id: 'd5c5908a5390b2278180ce975d94d4a43da4952b', - address: '34.89.191.254:26656', - provider: 'Com2verse' - }, - { - id: 'fa9585ef51316cda0125bb9bed1d35f59d7448b9', - address: '104.196.250.63:26656', - provider: 'Com2us' - }, - { - id: 'e6d30a1d191c64ff301c44f9ddd9d0b3d1f9ee7a', - address: '35.230.121.77:26656', - provider: 'Com2us' - }, - { - id: '88c62eea9c6229c26cd45d1f58cf48bfc1463b31', - address: '130.211.121.170:26656', - provider: 'Hive Platform Lab' - }, - { - id: '6592da1bfd8bea853b89946d4c502586e2712b4e', - address: '34.87.100.83:26656', - provider: 'Crossnode Labs' - }, - { - id: '15efa0a83dff372752369cc984492d9ee72f332b', - address: 'cdif46gvol8ecmg7jpqg.bdnodes.net:26656', - provider: 'DELIGHT' - }, - { - id: '15d365ce8bfaff27ad4260e5db3fba480d334c39', - address: '52.28.248.241:26656', - provider: 'Blockdaemon' - } - ] + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg" }, - apis: { - rpc: [ + "apis": { + "rpc": [ { - address: 'https://dimension-rpc.xpla.dev', - provider: 'Holdings' + "address": "https://dimension-rpc.xpla.dev", + "provider": "Holdings" }, { - address: 'https://xpla-rpc.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://xpla-rpc.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" } ], - rest: [ + "rest": [ { - address: 'https://dimension-lcd.xpla.io', - provider: 'ZenaAD' + "address": "https://dimension-lcd.xpla.io", + "provider": "ZenaAD" }, { - address: 'https://dimension-lcd.xpla.dev', - provider: 'Holdings' + "address": "https://dimension-lcd.xpla.dev", + "provider": "Holdings" }, { - address: 'https://xpla-api.lavenderfive.com:443', - provider: 'Lavender.Five Nodes 🐝' + "address": "https://xpla-api.lavenderfive.com:443", + "provider": "Lavender.Five Nodes 🐝" }, { - address: 'http://xpla.api.staking-explorer.com', - provider: 'staking-explorer.com' + "address": "http://xpla.api.staking-explorer.com", + "provider": "staking-explorer.com" } ], - grpc: [], - 'evm-http-jsonrpc': [ + "grpc": [], + "evm-http-jsonrpc": [ { - address: 'https://dimension-evm-rpc.xpla.dev', - provider: 'Holdings' + "address": "https://dimension-evm-rpc.xpla.dev", + "provider": "Holdings" } ] }, - explorers: [ + "explorers": [ { - kind: 'explorer.xpla', - url: 'https://explorer.xpla.io', - tx_page: 'https://explorer.xpla.io/mainnet/tx/${txHash}' + "kind": "explorer.xpla", + "url": "https://explorer.xpla.io", + "tx_page": "https://explorer.xpla.io/mainnet/tx/${txHash}" }, { - kind: 'finder', - url: 'https://finder.xpla.io', - tx_page: 'https://finder.xpla.io/mainnet/tx/${txHash}' + "kind": "finder", + "url": "https://finder.xpla.io", + "tx_page": "https://finder.xpla.io/mainnet/tx/${txHash}" }, { - kind: 'mintscan', - url: 'https://www.mintscan.io/xpla', - tx_page: 'https://www.mintscan.io/xpla/transactions/${txHash}', - account_page: 'https://www.mintscan.io/xpla/accounts/${accountAddress}' + "kind": "mintscan", + "url": "https://www.mintscan.io/xpla", + "tx_page": "https://www.mintscan.io/xpla/transactions/${txHash}", + "account_page": "https://www.mintscan.io/xpla/accounts/${accountAddress}" } ], - images: [ + "images": [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg" } ] } ]; 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 40ce6d3ba..e5a1243d9 100644 --- a/packages/chain-registry/src/ibc.ts +++ b/packages/chain-registry/src/ibc.ts @@ -1,17029 +1,16996 @@ import { IBCInfo } from '@chain-registry/types'; const ibc: IBCInfo[] = [ { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: '8ball', - client_id: '07-tendermint-2', - connection_id: 'connection-18' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "8ball", + "client_id": "07-tendermint-2", + "connection_id": "connection-18" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2668', - connection_id: 'connection-2163' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2668", + "connection_id": "connection-2163" }, - 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-641', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-641", + "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: 'acrechain', - client_id: '07-tendermint-6', - connection_id: 'connection-6' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "acrechain", + "client_id": "07-tendermint-6", + "connection_id": "connection-6" }, - chain_2: { - chain_name: 'axelar', - client_id: '07-tendermint-78', - connection_id: 'connection-65' + "chain_2": { + "chain_name": "axelar", + "client_id": "07-tendermint-78", + "connection_id": "connection-65" }, - 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-51', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-51", + "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: 'acrechain', - client_id: '07-tendermint-9', - connection_id: 'connection-9' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "acrechain", + "client_id": "07-tendermint-9", + "connection_id": "connection-9" }, - chain_2: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-1002', - connection_id: 'connection-701' + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1002", + "connection_id": "connection-701" }, - 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-457', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-457", + "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: 'acrechain', - client_id: '07-tendermint-18', - connection_id: 'connection-16' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "acrechain", + "client_id": "07-tendermint-18", + "connection_id": "connection-16" }, - chain_2: { - chain_name: 'evmos', - client_id: '07-tendermint-97', - connection_id: 'connection-55' + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-97", + "connection_id": "connection-55" }, - 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-40', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-40", + "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: 'acrechain', - client_id: '07-tendermint-7', - connection_id: 'connection-7' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "acrechain", + "client_id": "07-tendermint-7", + "connection_id": "connection-7" }, - chain_2: { - chain_name: 'gravitybridge', - client_id: '07-tendermint-201', - connection_id: 'connection-175' + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-201", + "connection_id": "connection-175" }, - 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-106', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-106", + "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: 'acrechain', - client_id: '07-tendermint-8', - connection_id: 'connection-8' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "acrechain", + "client_id": "07-tendermint-8", + "connection_id": "connection-8" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-61', - connection_id: 'connection-41' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-61", + "connection_id": "connection-41" }, - 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-47', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-47", + "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: 'acrechain', - client_id: '07-tendermint-12', - connection_id: 'connection-13' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "acrechain", + "client_id": "07-tendermint-12", + "connection_id": "connection-13" }, - chain_2: { - chain_name: 'oraichain', - client_id: '07-tendermint-74', - connection_id: 'connection-42' + "chain_2": { + "chain_name": "oraichain", + "client_id": "07-tendermint-74", + "connection_id": "connection-42" }, - 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-33', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-33", + "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: 'acrechain', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "acrechain", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2316', - connection_id: 'connection-1814' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2316", + "connection_id": "connection-1814" }, - 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-490', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-490", + "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: 'acrechain', - client_id: '07-tendermint-3', - connection_id: 'connection-4' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "acrechain", + "client_id": "07-tendermint-3", + "connection_id": "connection-4" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-222', - connection_id: 'connection-156' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-222", + "connection_id": "connection-156" }, - 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-121', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-121", + "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: 'acrechain', - client_id: '07-tendermint-14', - connection_id: 'connection-15' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "acrechain", + "client_id": "07-tendermint-14", + "connection_id": "connection-15" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-70', - connection_id: 'connection-48' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-70", + "connection_id": "connection-48" }, - 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-57', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-57", + "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: 'acrechain', - client_id: '07-tendermint-13', - connection_id: 'connection-14' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "acrechain", + "client_id": "07-tendermint-13", + "connection_id": "connection-14" }, - chain_2: { - chain_name: 'terra', - client_id: '07-tendermint-172', - connection_id: 'connection-99' + "chain_2": { + "chain_name": "terra", + "client_id": "07-tendermint-172", + "connection_id": "connection-99" }, - 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-69', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-69", + "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: 'acrechain', - client_id: '07-tendermint-11', - connection_id: 'connection-12' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "acrechain", + "client_id": "07-tendermint-11", + "connection_id": "connection-12" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-101', - connection_id: 'connection-89' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-101", + "connection_id": "connection-89" }, - 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-77', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-77", + "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: 'agoric', - client_id: '07-tendermint-75', - connection_id: 'connection-69' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-75", + "connection_id": "connection-69" }, - chain_2: { - chain_name: 'archway', - client_id: '07-tendermint-23', - connection_id: 'connection-21' + "chain_2": { + "chain_name": "archway", + "client_id": "07-tendermint-23", + "connection_id": "connection-21" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-60', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-60", + "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' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'agoric', - client_id: '07-tendermint-11', - connection_id: 'connection-14' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-11", + "connection_id": "connection-14" }, - chain_2: { - chain_name: 'axelar', - client_id: '07-tendermint-69', - connection_id: 'connection-51' + "chain_2": { + "chain_name": "axelar", + "client_id": "07-tendermint-69", + "connection_id": "connection-51" }, - 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-41', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-41", + "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: 'agoric', - client_id: '07-tendermint-70', - connection_id: 'connection-64' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-70", + "connection_id": "connection-64" }, - chain_2: { - chain_name: 'composable', - client_id: '07-tendermint-51', - connection_id: 'connection-20' + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-51", + "connection_id": "connection-20" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-55', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-55", + "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: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'agoric', - client_id: '07-tendermint-6', - connection_id: 'connection-8' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-6", + "connection_id": "connection-8" }, - chain_2: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-927', - connection_id: 'connection-649' + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-927", + "connection_id": "connection-649" }, - 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-405', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-405", + "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: 'agoric', - client_id: '07-tendermint-2', - connection_id: 'connection-2' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" }, - chain_2: { - chain_name: 'crescent', - client_id: '07-tendermint-19', - connection_id: 'connection-14' + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-19", + "connection_id": "connection-14" }, - 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-11', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-11", + "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: 'agoric', - client_id: '07-tendermint-72', - connection_id: 'connection-66' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-72", + "connection_id": "connection-66" }, - chain_2: { - chain_name: 'evmos', - client_id: '07-tendermint-116', - connection_id: 'connection-70' + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-116", + "connection_id": "connection-70" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-57', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-85', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-85", + "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: 'agoric', - client_id: '07-tendermint-4', - connection_id: 'connection-7' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-4", + "connection_id": "connection-7" }, - chain_2: { - chain_name: 'gravitybridge', - client_id: '07-tendermint-173', - connection_id: 'connection-154' + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-173", + "connection_id": "connection-154" }, - 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-91', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-91", + "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: 'agoric', - client_id: '07-tendermint-20', - connection_id: 'connection-20' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-20", + "connection_id": "connection-20" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-94', - connection_id: 'connection-64' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-94", + "connection_id": "connection-64" }, - 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-61', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-61", + "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: 'agoric', - client_id: '07-tendermint-77', - connection_id: 'connection-72' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-77", + "connection_id": "connection-72" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-32', - connection_id: 'connection-40' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-32", + "connection_id": "connection-40" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-62', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-62", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'agoric', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2109', - connection_id: 'connection-1649' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2109", + "connection_id": "connection-1649" }, - 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-320', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-320", + "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: 'agoric', - client_id: '07-tendermint-17', - connection_id: 'connection-17' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-17", + "connection_id": "connection-17" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-111', - connection_id: 'connection-80' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-111", + "connection_id": "connection-80" }, - 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-51', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-51", + "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: 'agoric', - client_id: '07-tendermint-74', - connection_id: 'connection-68' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "agoric", + "client_id": "07-tendermint-74", + "connection_id": "connection-68" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-129', - connection_id: 'connection-118' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-129", + "connection_id": "connection-118" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-59', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-59", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'aioz', - client_id: '07-tendermint-1', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "aioz", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-1121', - connection_id: 'connection-808' + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1121", + "connection_id": "connection-808" }, - 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-567', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-567", + "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: 'aioz', - client_id: '07-tendermint-2', - connection_id: 'connection-1' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "aioz", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2785', - connection_id: 'connection-2285' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2785", + "connection_id": "connection-2285" }, - 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-779', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-779", + "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-166', - connection_id: 'connection-146' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "akash", + "client_id": "07-tendermint-166", + "connection_id": "connection-146" }, - chain_2: { - chain_name: 'archway', - client_id: '07-tendermint-26', - connection_id: 'connection-28' + "chain_2": { + "chain_name": "archway", + "client_id": "07-tendermint-26", + "connection_id": "connection-28" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-109', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-109", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-26', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-26", + "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-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-132', - connection_id: 'connection-107' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "akash", + "client_id": "07-tendermint-132", + "connection_id": "connection-107" }, - chain_2: { - chain_name: 'crescent', - client_id: '07-tendermint-80', - connection_id: 'connection-71' + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-80", + "connection_id": "connection-71" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-70', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-70", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-44', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-44", + "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: '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-183', - connection_id: 'connection-171' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "akash", + "client_id": "07-tendermint-183", + "connection_id": "connection-171" }, - chain_2: { - chain_name: 'doravota', - client_id: '07-tendermint-17', - connection_id: 'connection-11' + "chain_2": { + "chain_name": "doravota", + "client_id": "07-tendermint-17", + "connection_id": "connection-11" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-125', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-125", + "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: '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-126', - connection_id: 'connection-103' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "akash", + "client_id": "07-tendermint-126", + "connection_id": "connection-103" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-103', - connection_id: 'connection-72' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-103", + "connection_id": "connection-72" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-63', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-63", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-64', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-64", + "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: 'akash', - client_id: '07-tendermint-173', - connection_id: 'connection-159' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "akash", + "client_id": "07-tendermint-173", + "connection_id": "connection-159" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-387', - connection_id: 'connection-364' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-387", + "connection_id": "connection-364" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-116', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-116", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-273', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-273", + "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: 'andromeda', - client_id: '07-tendermint-9', - connection_id: 'connection-9' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "andromeda", + "client_id": "07-tendermint-9", + "connection_id": "connection-9" }, - chain_2: { - chain_name: 'archway', - client_id: '07-tendermint-58', - connection_id: 'connection-68' + "chain_2": { + "chain_name": "archway", + "client_id": "07-tendermint-58", + "connection_id": "connection-68" }, - 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-97', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-97", + "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: 'andromeda', - client_id: '07-tendermint-6', - connection_id: 'connection-4' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "andromeda", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-164', - connection_id: 'connection-127' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-164", + "connection_id": "connection-127" }, - 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-123', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-123", + "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: 'andromeda', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "andromeda", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-176', - connection_id: 'connection-133' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-176", + "connection_id": "connection-133" }, - 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-97', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-97", + "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: 'andromeda', - client_id: '07-tendermint-15', - connection_id: 'connection-11' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "andromeda", + "client_id": "07-tendermint-15", + "connection_id": "connection-11" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-409', - connection_id: 'connection-413' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-409", + "connection_id": "connection-413" }, - 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-351', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-351", + "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: 'archway', - client_id: '07-tendermint-16', - connection_id: 'connection-17' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-16", + "connection_id": "connection-17" }, - chain_2: { - chain_name: 'axelar', - client_id: '07-tendermint-160', - connection_id: 'connection-145' + "chain_2": { + "chain_name": "axelar", + "client_id": "07-tendermint-160", + "connection_id": "connection-145" }, - 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-111', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-111", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-37', - connection_id: 'connection-40' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-37", + "connection_id": "connection-40" }, - chain_2: { - chain_name: 'bitcanna', - client_id: '07-tendermint-83', - connection_id: 'connection-74' + "chain_2": { + "chain_name": "bitcanna", + "client_id": "07-tendermint-83", + "connection_id": "connection-74" }, - 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-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: 'archway', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-1152', - connection_id: 'connection-873' + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1152", + "connection_id": "connection-873" }, - 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-623', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-623", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-38', - connection_id: 'connection-41' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-38", + "connection_id": "connection-41" }, - chain_2: { - chain_name: 'decentr', - client_id: '07-tendermint-21', - connection_id: 'connection-8' + "chain_2": { + "chain_name": "decentr", + "client_id": "07-tendermint-21", + "connection_id": "connection-8" }, - 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-7', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-7", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-40', - connection_id: 'connection-43' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-40", + "connection_id": "connection-43" }, - chain_2: { - chain_name: 'gravitybridge', - client_id: '07-tendermint-424', - connection_id: 'connection-406' + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-424", + "connection_id": "connection-406" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-38', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-38", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-145', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-145", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-17', - connection_id: 'connection-18' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-17", + "connection_id": "connection-18" }, - chain_2: { - chain_name: 'jackal', - client_id: '07-tendermint-61', - connection_id: 'connection-50' + "chain_2": { + "chain_name": "jackal", + "client_id": "07-tendermint-61", + "connection_id": "connection-50" }, - 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-41', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-41", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ], - operators: [ + "operators": [ { - chain_1: { - address: 'archway16l5ls4ajah6hethh374tpgn42r5q4sqeuw8udj' + "chain_1": { + "address": "archway16l5ls4ajah6hethh374tpgn42r5q4sqeuw8udj" }, - chain_2: { - address: 'jkl134a4es94hjqqej732cymf0w3988zh3c4yuqtf8' + "chain_2": { + "address": "jkl134a4es94hjqqej732cymf0w3988zh3c4yuqtf8" }, - memo: 'by AM Solutions | https://www.theamsolutions.info', - name: 'AM Solutions', - discord_handle: 'AlexeyM#5409' + "memo": "by AM Solutions | https://www.theamsolutions.info", + "name": "AM Solutions", + "discord_handle": "AlexeyM#5409" }, { - chain_1: { - address: 'archway1nms20r7jzaa4ms9exv90ckl2xfn0rd3rmqh7zm' + "chain_1": { + "address": "archway1nms20r7jzaa4ms9exv90ckl2xfn0rd3rmqh7zm" }, - chain_2: { - address: 'jkl1nms20r7jzaa4ms9exv90ckl2xfn0rd3rh49t3n' + "chain_2": { + "address": "jkl1nms20r7jzaa4ms9exv90ckl2xfn0rd3rh49t3n" }, - memo: 'Relayed by NodeStake', - name: 'NodeStake', - discord_handle: 'nodestake' + "memo": "Relayed by NodeStake", + "name": "NodeStake", + "discord_handle": "nodestake" } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-12', - connection_id: 'connection-12' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-12", + "connection_id": "connection-12" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-144', - connection_id: 'connection-110' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-144", + "connection_id": "connection-110" }, - 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-99', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-99", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-51', - connection_id: 'connection-58' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-51", + "connection_id": "connection-58" }, - chain_2: { - chain_name: 'neutron', - client_id: '07-tendermint-62', - connection_id: 'connection-43' + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-62", + "connection_id": "connection-43" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-61', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-61", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-41', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-41", + "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: 'archway', - client_id: '07-tendermint-28', - connection_id: 'connection-31' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-28", + "connection_id": "connection-31" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-17', - connection_id: 'connection-26' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-17", + "connection_id": "connection-26" }, - 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-12', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-12", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-22', - connection_id: 'connection-20' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-22", + "connection_id": "connection-20" }, - chain_2: { - chain_name: 'nois', - client_id: '07-tendermint-15', - connection_id: 'connection-9' + "chain_2": { + "chain_name": "nois", + "client_id": "07-tendermint-15", + "connection_id": "connection-9" }, - 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-21', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-21", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-19', - port_id: - 'wasm.archway10f3aasgsnpv84ymjyld50jayc4ecu267sdpjamauwm8nvxlzex9qj4dkwr' + "chain_1": { + "channel_id": "channel-19", + "port_id": "wasm.archway10f3aasgsnpv84ymjyld50jayc4ecu267sdpjamauwm8nvxlzex9qj4dkwr" }, - chain_2: { - channel_id: 'channel-22', - port_id: - 'wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp' + "chain_2": { + "channel_id": "channel-22", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" }, - ordering: 'unordered', - version: 'nois-v7', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-39', - connection_id: 'connection-42' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-39", + "connection_id": "connection-42" }, - chain_2: { - chain_name: 'omniflixhub', - client_id: '07-tendermint-49', - connection_id: 'connection-43' + "chain_2": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-49", + "connection_id": "connection-43" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-37', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-32', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-32", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-2', - connection_id: 'connection-1' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2850', - connection_id: 'connection-2362' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2850", + "connection_id": "connection-2362" }, - 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-1429', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-1429", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-36', - connection_id: 'connection-39' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-36", + "connection_id": "connection-39" }, - chain_2: { - chain_name: 'quicksilver', - client_id: '07-tendermint-83', - connection_id: 'connection-58' + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-83", + "connection_id": "connection-58" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-34', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-116', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-116", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-55', - connection_id: 'connection-65' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-55", + "connection_id": "connection-65" }, - chain_2: { - chain_name: 'qwoyn', - client_id: '07-tendermint-8', - connection_id: 'connection-5' + "chain_2": { + "chain_name": "qwoyn", + "client_id": "07-tendermint-8", + "connection_id": "connection-5" }, - 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-5', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true, - dex: 'astrovault' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "astrovault" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-24', - connection_id: 'connection-22' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-24", + "connection_id": "connection-22" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-169', - connection_id: 'connection-119' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-169", + "connection_id": "connection-119" }, - 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-84', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-84", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-42', - connection_id: 'connection-47' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-42", + "connection_id": "connection-47" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-384', - connection_id: 'connection-360' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-384", + "connection_id": "connection-360" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-50', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-50", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-265', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-265", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archway', - client_id: '07-tendermint-6', - connection_id: 'connection-5' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archway", + "client_id": "07-tendermint-6", + "connection_id": "connection-5" }, - chain_2: { - chain_name: 'umee', - client_id: '07-tendermint-228', - connection_id: 'connection-190' + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-228", + "connection_id": "connection-190" }, - 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-97', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-97", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'arkh', - client_id: '07-tendermint-34', - connection_id: 'connection-27' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "arkh", + "client_id": "07-tendermint-34", + "connection_id": "connection-27" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2697', - connection_id: 'connection-2235' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2697", + "connection_id": "connection-2235" }, - 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-648', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-648", + "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: '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-50', - connection_id: 'connection-31' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "assetmantle", + "client_id": "07-tendermint-50", + "connection_id": "connection-31" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-104', - connection_id: 'connection-73' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-104", + "connection_id": "connection-73" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-65', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-65", + "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: { - 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-42', - connection_id: 'connection-22' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "assetmantle", + "client_id": "07-tendermint-42", + "connection_id": "connection-22" }, - chain_2: { - chain_name: 'okexchain', - client_id: '07-tendermint-92', - connection_id: 'connection-35' + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-92", + "connection_id": "connection-35" }, - 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-30', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-30", + "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: 'aura', - client_id: '07-tendermint-17', - connection_id: 'connection-11' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "aura", + "client_id": "07-tendermint-17", + "connection_id": "connection-11" }, - chain_2: { - chain_name: 'axelar', - client_id: '07-tendermint-152', - connection_id: 'connection-137' + "chain_2": { + "chain_name": "axelar", + "client_id": "07-tendermint-152", + "connection_id": "connection-137" }, - 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-104', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-104", + "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: 'aura', - client_id: '07-tendermint-24', - connection_id: 'connection-14' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "aura", + "client_id": "07-tendermint-24", + "connection_id": "connection-14" }, - chain_2: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-1158', - connection_id: 'connection-880' + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1158", + "connection_id": "connection-880" }, - 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-646', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-646", + "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: 'aura', - client_id: '07-tendermint-26', - connection_id: 'connection-15' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "aura", + "client_id": "07-tendermint-26", + "connection_id": "connection-15" }, - chain_2: { - chain_name: 'kava', - client_id: '07-tendermint-133', - connection_id: 'connection-168' + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-133", + "connection_id": "connection-168" }, - 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-124', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-124", + "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: 'aura', - client_id: '07-tendermint-43', - connection_id: 'connection-27' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "aura", + "client_id": "07-tendermint-43", + "connection_id": "connection-27" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-66', - connection_id: 'connection-63' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-66", + "connection_id": "connection-63" }, - 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-41', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-41", + "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: 'aura', - client_id: '07-tendermint-13', - connection_id: 'connection-10' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "aura", + "client_id": "07-tendermint-13", + "connection_id": "connection-10" }, - chain_2: { - chain_name: 'nois', - client_id: '07-tendermint-4', - connection_id: 'connection-4' + "chain_2": { + "chain_name": "nois", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" }, - 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-16', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-16", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-8', - port_id: - 'wasm.aura1r3zgdsn3dcze07a4r60rxxx7ppvkxfshn9np0pwtkgarrld0786s72jtjt' + "chain_1": { + "channel_id": "channel-8", + "port_id": "wasm.aura1r3zgdsn3dcze07a4r60rxxx7ppvkxfshn9np0pwtkgarrld0786s72jtjt" }, - chain_2: { - channel_id: 'channel-35', - port_id: - 'wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp' + "chain_2": { + "channel_id": "channel-35", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" }, - ordering: 'unordered', - version: 'nois-v7', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'aura', - client_id: '07-tendermint-47', - connection_id: 'connection-33' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "aura", + "client_id": "07-tendermint-47", + "connection_id": "connection-33" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-3054', - connection_id: 'connection-2551' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3054", + "connection_id": "connection-2551" }, - 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-11304', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-11304", + "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: 'aura', - client_id: '07-tendermint-48', - connection_id: 'connection-47' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "aura", + "client_id": "07-tendermint-48", + "connection_id": "connection-47" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-339', - connection_id: 'connection-288' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-339", + "connection_id": "connection-288" }, - 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-270', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-270", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-24', - port_id: - 'wasm.aura1y3244guwexyvn6yx6kqkj5s0f56lzfdnuja3culygnuwxgrxyuqsaz4xvv' + "chain_1": { + "channel_id": "channel-24", + "port_id": "wasm.aura1y3244guwexyvn6yx6kqkj5s0f56lzfdnuja3culygnuwxgrxyuqsaz4xvv" }, - chain_2: { - channel_id: 'channel-271', - port_id: - 'wasm.stars1r0a8ygvnjfaegy4n5z9325e0ew9uy2s7rn4vt7qf4ltv49fj4tnsk6pvtv' + "chain_2": { + "channel_id": "channel-271", + "port_id": "wasm.stars1r0a8ygvnjfaegy4n5z9325e0ew9uy2s7rn4vt7qf4ltv49fj4tnsk6pvtv" }, - ordering: 'unordered', - version: 'ics721-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics721-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'axelar', - client_id: '07-tendermint-185', - connection_id: 'connection-163' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-185", + "connection_id": "connection-163" }, - chain_2: { - chain_name: 'celestia', - client_id: '07-tendermint-9', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "celestia", + "client_id": "07-tendermint-9", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-125', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-125", + "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: 'axelar', - client_id: '07-tendermint-187', - connection_id: 'connection-165' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-187", + "connection_id": "connection-165" }, - chain_2: { - chain_name: 'composable', - client_id: '07-tendermint-140', - connection_id: 'connection-58' + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-140", + "connection_id": "connection-58" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-127', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-127", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-46', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics-20', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics-20", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'axelar', - client_id: '07-tendermint-179', - connection_id: 'connection-157' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-179", + "connection_id": "connection-157" }, - chain_2: { - chain_name: 'coreum', - client_id: '07-tendermint-7', - connection_id: 'connection-7' + "chain_2": { + "chain_name": "coreum", + "client_id": "07-tendermint-7", + "connection_id": "connection-7" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-120', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-120", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'axelar', - client_id: '07-tendermint-3', - connection_id: 'connection-2' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" }, - chain_2: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-622', - connection_id: 'connection-481' + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-622", + "connection_id": "connection-481" }, - 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-293', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-293", + "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-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-158', - connection_id: 'connection-142' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-158", + "connection_id": "connection-142" }, - chain_2: { - chain_name: 'empowerchain', - client_id: '07-tendermint-2', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "empowerchain", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-109', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-109", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'axelar', - client_id: '07-tendermint-50', - connection_id: 'connection-31' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-50", + "connection_id": "connection-31" }, - chain_2: { - chain_name: 'evmos', - client_id: '07-tendermint-69', - connection_id: 'connection-27' + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-69", + "connection_id": "connection-27" }, - 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-21', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-21", + "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-188', - connection_id: 'connection-166' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-188", + "connection_id": "connection-166" }, - chain_2: { - chain_name: 'fxcore', - client_id: '07-tendermint-24', - connection_id: 'connection-23' + "chain_2": { + "chain_name": "fxcore", + "client_id": "07-tendermint-24", + "connection_id": "connection-23" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-128', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-128", + "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: 'axelar', - client_id: '07-tendermint-162', - connection_id: 'connection-148' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-162", + "connection_id": "connection-148" }, - chain_2: { - chain_name: 'haqq', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "haqq", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-113', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-113", + "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: 'axelar', - client_id: '07-tendermint-168', - connection_id: 'connection-150' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-168", + "connection_id": "connection-150" }, - chain_2: { - chain_name: 'impacthub', - client_id: '07-tendermint-54', - connection_id: 'connection-40' + "chain_2": { + "chain_name": "impacthub", + "client_id": "07-tendermint-54", + "connection_id": "connection-40" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-114', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-114", + "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: { - 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-37', - connection_id: 'connection-20' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-37", + "connection_id": "connection-20" }, - chain_2: { - chain_name: 'injective', - client_id: '07-tendermint-113', - connection_id: 'connection-93' + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-113", + "connection_id": "connection-93" }, - 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-84', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-84", + "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-69', - connection_id: 'connection-178' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-69", + "connection_id": "connection-178" }, - chain_2: { - chain_name: 'jackal', - client_id: '07-tendermint-69', - connection_id: 'connection-57' + "chain_2": { + "chain_name": "jackal", + "client_id": "07-tendermint-69", + "connection_id": "connection-57" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-137', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-137", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-49', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-49", + "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-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-42', - connection_id: 'connection-23' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-42", + "connection_id": "connection-23" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-11', - connection_id: 'connection-6' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-11", + "connection_id": "connection-6" }, - 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-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: 'axelar', - client_id: '07-tendermint-118', - connection_id: 'connection-107' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-118", + "connection_id": "connection-107" }, - chain_2: { - chain_name: 'kyve', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "kyve", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - 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-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: 'axelar', - client_id: '07-tendermint-180', - connection_id: 'connection-158' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-180", + "connection_id": "connection-158" }, - chain_2: { - chain_name: 'migaloo', - client_id: '07-tendermint-101', - connection_id: 'connection-80' + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-101", + "connection_id": "connection-80" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-121', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-121", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'axelar', - client_id: '07-tendermint-123', - connection_id: 'connection-110' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-123", + "connection_id": "connection-110" }, - chain_2: { - chain_name: 'neutron', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-78', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-78", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'axelar', - client_id: '07-tendermint-150', - connection_id: 'connection-135' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-150", + "connection_id": "connection-135" }, - chain_2: { - chain_name: 'odin', - client_id: '07-tendermint-66', - connection_id: 'connection-151' + "chain_2": { + "chain_name": "odin", + "client_id": "07-tendermint-66", + "connection_id": "connection-151" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-102', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-102", + "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: '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" } }, { - chain_1: { - channel_id: 'channel-69', - port_id: 'transfer', - client_id: '07-tendermint-103', - connection_id: 'connection-89' + "chain_1": { + "channel_id": "channel-69", + "port_id": "transfer", + "client_id": "07-tendermint-103", + "connection_id": "connection-89" }, - chain_2: { - channel_id: 'channel-61', - port_id: 'wasm.secret1yxjmepvyl2c25vnt53cr2dpn8amknwausxee83', - client_id: '07-tendermint-120', - connection_id: 'connection-93' + "chain_2": { + "channel_id": "channel-61", + "port_id": "wasm.secret1yxjmepvyl2c25vnt53cr2dpn8amknwausxee83", + "client_id": "07-tendermint-120", + "connection_id": "connection-93" }, - 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: 'axelar', - client_id: '07-tendermint-151', - connection_id: 'connection-136' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-151", + "connection_id": "connection-136" }, - chain_2: { - chain_name: 'sei', - client_id: '07-tendermint-8', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-8", + "connection_id": "connection-2" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-103', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-103", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'axelar', - client_id: '07-tendermint-109', - connection_id: 'connection-96' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-109", + "connection_id": "connection-96" }, - chain_2: { - chain_name: 'sommelier', - client_id: '07-tendermint-13', - connection_id: 'connection-10' + "chain_2": { + "chain_name": "sommelier", + "client_id": "07-tendermint-13", + "connection_id": "connection-10" }, - 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-5', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-5", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics-20', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics-20", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'axelar', - client_id: '07-tendermint-93', - connection_id: 'connection-78' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-93", + "connection_id": "connection-78" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-75', - connection_id: 'connection-60' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-75", + "connection_id": "connection-60" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-64', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-64", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-69', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-69", + "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-39', - connection_id: 'connection-21' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-39", + "connection_id": "connection-21" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-7', - connection_id: 'connection-10' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-7", + "connection_id": "connection-10" }, - 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-6', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-6", + "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-64', - connection_id: 'connection-43' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelar", + "client_id": "07-tendermint-64", + "connection_id": "connection-43" }, - chain_2: { - chain_name: 'umee', - client_id: '07-tendermint-63', - connection_id: 'connection-44' + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-63", + "connection_id": "connection-44" }, - 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-33', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'bandchain', - client_id: '07-tendermint-124', - connection_id: 'connection-107' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "bandchain", + "client_id": "07-tendermint-124", + "connection_id": "connection-107" }, - chain_2: { - chain_name: 'comdex', - client_id: '07-tendermint-81', - connection_id: 'connection-48' + "chain_2": { + "chain_name": "comdex", + "client_id": "07-tendermint-81", + "connection_id": "connection-48" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-96', - port_id: 'oracle' + "chain_1": { + "channel_id": "channel-96", + "port_id": "oracle" }, - chain_2: { - channel_id: 'channel-43', - port_id: 'bandoracleV1' + "chain_2": { + "channel_id": "channel-43", + "port_id": "bandoracleV1" }, - ordering: 'unordered', - version: 'bandchain-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "bandchain-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'bandchain', - client_id: '07-tendermint-162', - connection_id: 'connection-141' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "bandchain", + "client_id": "07-tendermint-162", + "connection_id": "connection-141" }, - chain_2: { - chain_name: 'coreum', - client_id: '07-tendermint-33', - connection_id: 'connection-22' + "chain_2": { + "chain_name": "coreum", + "client_id": "07-tendermint-33", + "connection_id": "connection-22" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-159', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-159", + "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: '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: 'beezee', - client_id: '07-tendermint-2', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "beezee", + "client_id": "07-tendermint-2", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2154', - connection_id: 'connection-1672' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2154", + "connection_id": "connection-1672" }, - 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-340', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-340", + "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-0', - connection_id: 'connection-19' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "bitcanna", + "client_id": "07-tendermint-0", + "connection_id": "connection-19" }, - chain_2: { - chain_name: 'bitsong', - client_id: '07-tendermint-1237', - connection_id: 'connection-1132' + "chain_2": { + "chain_name": "bitsong", + "client_id": "07-tendermint-1237", + "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-42', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-42", + "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-4', - connection_id: 'connection-3' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "bitcanna", + "client_id": "07-tendermint-4", + "connection_id": "connection-3" }, - chain_2: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-490', - connection_id: 'connection-399' + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-490", + "connection_id": "connection-399" }, - 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-232', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-232", + "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-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-1', - connection_id: 'connection-2' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "bitsong", + "client_id": "07-tendermint-1", + "connection_id": "connection-2" }, - chain_2: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-481', - connection_id: 'connection-395' + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-481", + "connection_id": "connection-395" }, - 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-229', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-229", + "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-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: 'bluzelle', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "bluzelle", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2754', - connection_id: 'connection-2273' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2754", + "connection_id": "connection-2273" }, - 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-763', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-763", + "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: '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: 'canto', - client_id: '07-tendermint-10', - connection_id: 'connection-10' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "canto", + "client_id": "07-tendermint-10", + "connection_id": "connection-10" }, - chain_2: { - chain_name: 'carbon', - client_id: '07-tendermint-40', - connection_id: 'connection-23' + "chain_2": { + "chain_name": "carbon", + "client_id": "07-tendermint-40", + "connection_id": "connection-23" }, - 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-18', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-18", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true, - dex: 'demex' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'canto', - client_id: '07-tendermint-38', - connection_id: 'connection-32' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "canto", + "client_id": "07-tendermint-38", + "connection_id": "connection-32" }, - chain_2: { - chain_name: 'composable', - client_id: '07-tendermint-50', - connection_id: 'connection-19' + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-50", + "connection_id": "connection-19" }, - 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-12', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-12", + "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: 'canto', - client_id: '07-tendermint-9', - connection_id: 'connection-9' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "canto", + "client_id": "07-tendermint-9", + "connection_id": "connection-9" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2481', - connection_id: 'connection-2017' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2481", + "connection_id": "connection-2017" }, - 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-550', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-550", + "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-6', - connection_id: 'connection-5' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "carbon", + "client_id": "07-tendermint-6", + "connection_id": "connection-5" }, - chain_2: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-765', - connection_id: 'connection-554' + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-765", + "connection_id": "connection-554" }, - 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-342', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-342", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true, - dex: 'demex' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'carbon', - client_id: '07-tendermint-11', - connection_id: 'connection-10' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "carbon", + "client_id": "07-tendermint-11", + "connection_id": "connection-10" }, - chain_2: { - chain_name: 'evmos', - client_id: '07-tendermint-73', - connection_id: 'connection-29' + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-73", + "connection_id": "connection-29" }, - 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-23', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-23", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true, - dex: 'demex' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'carbon', - client_id: '07-tendermint-53', - connection_id: 'connection-30' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "carbon", + "client_id": "07-tendermint-53", + "connection_id": "connection-30" }, - chain_2: { - chain_name: 'irisnet', - client_id: '07-tendermint-151', - connection_id: 'connection-114' + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-151", + "connection_id": "connection-114" }, - 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-68', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-68", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true, - dex: 'demex' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'carbon', - client_id: '07-tendermint-16', - connection_id: 'connection-13' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "carbon", + "client_id": "07-tendermint-16", + "connection_id": "connection-13" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-60', - connection_id: 'connection-40' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-60", + "connection_id": "connection-40" }, - 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-46', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-46", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true, - dex: 'demex' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" } } ] }, { - $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: 'carbon', - client_id: '07-tendermint-36', - connection_id: 'connection-19' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "carbon", + "client_id": "07-tendermint-36", + "connection_id": "connection-19" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-224', - connection_id: 'connection-158' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-224", + "connection_id": "connection-158" }, - 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-123', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-123", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true, - dex: 'demex' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'carbon', - client_id: '07-tendermint-13', - connection_id: 'connection-12' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "carbon", + "client_id": "07-tendermint-13", + "connection_id": "connection-12" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-40', - connection_id: 'connection-27' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-40", + "connection_id": "connection-27" }, - 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-47', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-47", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true, - dex: 'demex' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'carbon', - client_id: '07-tendermint-33', - connection_id: 'connection-16' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "carbon", + "client_id": "07-tendermint-33", + "connection_id": "connection-16" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-66', - connection_id: 'connection-54' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-66", + "connection_id": "connection-54" }, - 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-36', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-36", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true, - dex: 'demex' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "demex" } }, { - chain_1: { - channel_id: 'channel-16', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-16", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-41', - port_id: - 'wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au' + "chain_2": { + "channel_id": "channel-41", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" }, - 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: 'celestia', - client_id: '07-tendermint-35', - connection_id: 'connection-10' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-35", + "connection_id": "connection-10" }, - chain_2: { - chain_name: 'composable', - client_id: '07-tendermint-138', - connection_id: 'connection-55' + "chain_2": { + "chain_name": "composable", + "client_id": "07-tendermint-138", + "connection_id": "connection-55" }, - 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-38', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-38", + "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: 'celestia', - client_id: '07-tendermint-28', - connection_id: 'connection-6' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-28", + "connection_id": "connection-6" }, - chain_2: { - chain_name: 'injective', - client_id: '07-tendermint-226', - connection_id: 'connection-210' + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-226", + "connection_id": "connection-210" }, - 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-152', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-152", + "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: 'celestia', - client_id: '07-tendermint-49', - connection_id: 'connection-12' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-49", + "connection_id": "connection-12" }, - chain_2: { - chain_name: 'kava', - client_id: '07-tendermint-158', - connection_id: 'connection-198' + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-158", + "connection_id": "connection-198" }, - 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-140', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-140", + "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: 'celestia', - client_id: '07-tendermint-29', - connection_id: 'connection-7' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-29", + "connection_id": "connection-7" }, - chain_2: { - chain_name: 'neutron', - client_id: '07-tendermint-48', - connection_id: 'connection-36' + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-48", + "connection_id": "connection-36" }, - 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-35', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-35", + "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: 'celestia', - client_id: '07-tendermint-10', - connection_id: 'connection-2' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-10", + "connection_id": "connection-2" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-3012', - connection_id: 'connection-2503' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3012", + "connection_id": "connection-2503" }, - 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-6994', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-6994", + "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: 'celestia', - client_id: '07-tendermint-52', - connection_id: 'connection-15' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-52", + "connection_id": "connection-15" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-174', - connection_id: 'connection-131' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-174", + "connection_id": "connection-131" }, - 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-91', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-91", + "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: 'celestia', - client_id: '07-tendermint-0', - connection_id: 'connection-4' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-0", + "connection_id": "connection-4" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-137', - connection_id: 'connection-125' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-137", + "connection_id": "connection-125" }, - 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-162', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-162", + "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: 'celestia', - client_id: '07-tendermint-53', - connection_id: 'connection-16' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestia", + "client_id": "07-tendermint-53", + "connection_id": "connection-16" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-391', - connection_id: 'connection-381' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-391", + "connection_id": "connection-381" }, - 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-300', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-300", + "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: '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-13', - connection_id: 'connection-2' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cheqd", + "client_id": "07-tendermint-13", + "connection_id": "connection-2" }, - chain_2: { - chain_name: 'gravitybridge', - client_id: '07-tendermint-64', - connection_id: 'connection-74' + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-64", + "connection_id": "connection-74" }, - 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-43', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-43", + "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: '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: 'cheqd', - client_id: '07-tendermint-83', - connection_id: 'connection-61' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cheqd", + "client_id": "07-tendermint-83", + "connection_id": "connection-61" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-392', - connection_id: 'connection-382' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-392", + "connection_id": "connection-382" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-34', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-34", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-301', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-301", + "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-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-126', - connection_id: 'connection-81' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "chihuahua", + "client_id": "07-tendermint-126", + "connection_id": "connection-81" }, - chain_2: { - chain_name: 'migaloo', - client_id: '07-tendermint-21', - connection_id: 'connection-21' + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-21", + "connection_id": "connection-21" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-39', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-39", + "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: { - 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-191', - connection_id: 'connection-127' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "chihuahua", + "client_id": "07-tendermint-191", + "connection_id": "connection-127" }, - chain_2: { - chain_name: 'neutron', - client_id: '07-tendermint-74', - connection_id: 'connection-53' + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-74", + "connection_id": "connection-53" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-76', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-76", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-77', - port_id: - 'wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52' + "chain_1": { + "channel_id": "channel-77", + "port_id": "wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52" }, - chain_2: { - channel_id: 'channel-52', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-52", + "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-85', - connection_id: 'connection-54' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "chihuahua", + "client_id": "07-tendermint-85", + "connection_id": "connection-54" }, - chain_2: { - chain_name: 'okexchain', - client_id: '07-tendermint-5', - connection_id: 'connection-6' + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-5", + "connection_id": "connection-6" }, - 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-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: '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" } }, { - chain_1: { - channel_id: 'channel-73', - port_id: - 'wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52' + "chain_1": { + "channel_id": "channel-73", + "port_id": "wasm.chihuahua1jwkag4yvhyj9fuddtkygvavya8hmdjuzmgxwg9vp3lw9twv6lrcq9mgl52" }, - chain_2: { - channel_id: 'channel-11348', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-11348", + "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: 'chihuahua', - client_id: '07-tendermint-86', - connection_id: 'connection-55' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "chihuahua", + "client_id": "07-tendermint-86", + "connection_id": "connection-55" }, - chain_2: { - chain_name: 'stafihub', - client_id: '07-tendermint-2', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" }, - 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-4', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4", + "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-108', - connection_id: 'connection-54' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "comdex", + "client_id": "07-tendermint-108", + "connection_id": "connection-54" }, - chain_2: { - chain_name: 'crescent', - client_id: '07-tendermint-32', - connection_id: 'connection-33' + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-32", + "connection_id": "connection-33" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-49', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-26', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-26", + "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: '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-52', - connection_id: 'connection-34' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "comdex", + "client_id": "07-tendermint-52", + "connection_id": "connection-34" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-15', - connection_id: 'connection-20' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-15", + "connection_id": "connection-20" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-31', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-31", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'comdex', - client_id: '07-tendermint-139', - connection_id: 'connection-71' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "comdex", + "client_id": "07-tendermint-139", + "connection_id": "connection-71" }, - chain_2: { - chain_name: 'migaloo', - client_id: '07-tendermint-25', - connection_id: 'connection-24' + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-25", + "connection_id": "connection-24" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-63', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-63", + "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: { - 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: 'comdex', - client_id: '07-tendermint-123', - connection_id: 'connection-65' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "comdex", + "client_id": "07-tendermint-123", + "connection_id": "connection-65" }, - chain_2: { - chain_name: 'persistence', - client_id: '07-tendermint-94', - connection_id: 'connection-75' + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-94", + "connection_id": "connection-75" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-57', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-57", + "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: 'comdex', - client_id: '07-tendermint-142', - connection_id: 'connection-74' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "comdex", + "client_id": "07-tendermint-142", + "connection_id": "connection-74" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-125', - connection_id: 'connection-95' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-125", + "connection_id": "connection-95" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-65', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-65", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-63', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-63", + "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: 'comdex', - client_id: '07-tendermint-83', - connection_id: 'connection-50' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "comdex", + "client_id": "07-tendermint-83", + "connection_id": "connection-50" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-41', - connection_id: 'connection-28' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-41", + "connection_id": "connection-28" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-45', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-45", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-49', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-49", + "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-117', - connection_id: 'connection-56' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "comdex", + "client_id": "07-tendermint-117", + "connection_id": "connection-56" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-70', - connection_id: 'connection-59' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-70", + "connection_id": "connection-59" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-51', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-51", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'composable', - client_id: '07-tendermint-7', - connection_id: 'connection-7' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-7", + "connection_id": "connection-7" }, - chain_2: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-1150', - connection_id: 'connection-871' + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1150", + "connection_id": "connection-871" }, - 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-617', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-617", + "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: 'composable', - client_id: '07-tendermint-46', - connection_id: 'connection-18' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-46", + "connection_id": "connection-18" }, - chain_2: { - chain_name: 'crescent', - client_id: '07-tendermint-112', - connection_id: 'connection-98' + "chain_2": { + "chain_name": "crescent", + "client_id": "07-tendermint-112", + "connection_id": "connection-98" }, - 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-64', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-64", + "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: 'composable', - client_id: '07-tendermint-26', - connection_id: 'connection-14' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-26", + "connection_id": "connection-14" }, - chain_2: { - chain_name: 'evmos', - client_id: '07-tendermint-111', - connection_id: 'connection-66' + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-111", + "connection_id": "connection-66" }, - 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-82', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-82", + "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: 'composable', - client_id: '07-tendermint-123', - connection_id: 'connection-45' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-123", + "connection_id": "connection-45" }, - chain_2: { - chain_name: 'injective', - client_id: '07-tendermint-207', - connection_id: 'connection-191' + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-207", + "connection_id": "connection-191" }, - 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-145', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-145", + "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: 'composable', - client_id: '07-tendermint-30', - connection_id: 'connection-15' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-30", + "connection_id": "connection-15" }, - chain_2: { - chain_name: 'juno', - client_id: '07-tendermint-382', - connection_id: 'connection-376' + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-382", + "connection_id": "connection-376" }, - 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-280', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-280", + "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: 'composable', - client_id: '07-tendermint-110', - connection_id: 'connection-43' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-110", + "connection_id": "connection-43" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-147', - connection_id: 'connection-112' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-147", + "connection_id": "connection-112" }, - 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-101', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-101", + "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: 'composable', - client_id: '07-tendermint-66', - connection_id: 'connection-28' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-66", + "connection_id": "connection-28" }, - chain_2: { - chain_name: 'neutron', - client_id: '07-tendermint-29', - connection_id: 'connection-22' + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-29", + "connection_id": "connection-22" }, - 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-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: 'composable', - client_id: '07-tendermint-6', - connection_id: 'connection-6' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-6", + "connection_id": "connection-6" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2846', - connection_id: 'connection-2358' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2846", + "connection_id": "connection-2358" }, - 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-1279', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-1279", + "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: 'composable', - client_id: '08-wasm-5', - connection_id: 'connection-5' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "08-wasm-5", + "connection_id": "connection-5" }, - chain_2: { - chain_name: 'picasso', - client_id: '07-tendermint-32', - connection_id: 'connection-26' + "chain_2": { + "chain_name": "picasso", + "client_id": "07-tendermint-32", + "connection_id": "connection-26" }, - 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-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: 'composable', - client_id: '07-tendermint-31', - connection_id: 'connection-16' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-31", + "connection_id": "connection-16" }, - chain_2: { - chain_name: 'quicksilver', - client_id: '07-tendermint-78', - connection_id: 'connection-53' + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-78", + "connection_id": "connection-53" }, - 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-94', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-94", + "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: 'composable', - client_id: '07-tendermint-52', - connection_id: 'connection-21' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-52", + "connection_id": "connection-21" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-166', - connection_id: 'connection-116' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-166", + "connection_id": "connection-116" }, - 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-80', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-80", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-26', - port_id: 'transfer', - client_id: '07-tendermint-52', - connection_id: 'connection-21' + "chain_1": { + "channel_id": "channel-26", + "port_id": "transfer", + "client_id": "07-tendermint-52", + "connection_id": "connection-21" }, - chain_2: { - channel_id: 'channel-83', - port_id: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - client_id: '07-tendermint-166', - connection_id: 'connection-116' + "chain_2": { + "channel_id": "channel-83", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4", + "client_id": "07-tendermint-166", + "connection_id": "connection-116" }, - 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: 'composable', - client_id: '07-tendermint-25', - connection_id: 'connection-13' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-25", + "connection_id": "connection-13" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-279', - connection_id: 'connection-207' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-279", + "connection_id": "connection-207" }, - 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-184', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-184", + "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: 'composable', - client_id: '07-tendermint-14', - connection_id: 'connection-8' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composable", + "client_id": "07-tendermint-14", + "connection_id": "connection-8" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-126', - connection_id: 'connection-116' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-126", + "connection_id": "connection-116" }, - 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-134', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-134", + "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: 'composablepolkadot', - client_id: '10-grandpa-28', - connection_id: 'connection-23' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composablepolkadot", + "client_id": "10-grandpa-28", + "connection_id": "connection-23" }, - chain_2: { - chain_name: 'picasso', - client_id: '10-grandpa-28', - connection_id: 'connection-23' + "chain_2": { + "chain_name": "picasso", + "client_id": "10-grandpa-28", + "connection_id": "connection-23" }, - 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-15', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-15", + "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: 'coreum', - client_id: '07-tendermint-11', - connection_id: 'connection-11' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-11", + "connection_id": "connection-11" }, - chain_2: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-1162', - connection_id: 'connection-884' + "chain_2": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1162", + "connection_id": "connection-884" }, - 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-660', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-660", + "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: 'coreum', - client_id: '07-tendermint-12', - connection_id: 'connection-12' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-12", + "connection_id": "connection-12" }, - chain_2: { - chain_name: 'doravota', - client_id: '07-tendermint-12', - connection_id: 'connection-4' + "chain_2": { + "chain_name": "doravota", + "client_id": "07-tendermint-12", + "connection_id": "connection-4" }, - 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-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: 'coreum', - client_id: '07-tendermint-38', - connection_id: 'connection-26' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-38", + "connection_id": "connection-26" }, - chain_2: { - chain_name: 'dydx', - client_id: '07-tendermint-14', - connection_id: 'connection-20' + "chain_2": { + "chain_name": "dydx", + "client_id": "07-tendermint-14", + "connection_id": "connection-20" }, - 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-14', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-14", + "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: 'coreum', - client_id: '07-tendermint-9', - connection_id: 'connection-9' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-9", + "connection_id": "connection-9" }, - chain_2: { - chain_name: 'evmos', - client_id: '07-tendermint-117', - connection_id: 'connection-71' + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-117", + "connection_id": "connection-71" }, - 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-87', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-87", + "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: 'coreum', - client_id: '07-tendermint-8', - connection_id: 'connection-8' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-8", + "connection_id": "connection-8" }, - chain_2: { - chain_name: 'gravitybridge', - client_id: '07-tendermint-421', - connection_id: 'connection-399' + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-421", + "connection_id": "connection-399" }, - 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-142', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-142", + "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: 'coreum', - client_id: '07-tendermint-29', - connection_id: 'connection-20' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-29", + "connection_id": "connection-20" }, - chain_2: { - chain_name: 'kava', - client_id: '07-tendermint-160', - connection_id: 'connection-200' + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-160", + "connection_id": "connection-200" }, - 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-142', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-142", + "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: 'coreum', - client_id: '07-tendermint-28', - connection_id: 'connection-19' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-28", + "connection_id": "connection-19" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-163', - connection_id: 'connection-126' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-163", + "connection_id": "connection-126" }, - 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-122', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-122", + "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: 'coreum', - client_id: '07-tendermint-32', - connection_id: 'connection-21' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-32", + "connection_id": "connection-21" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-71', - connection_id: 'connection-72' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-71", + "connection_id": "connection-72" }, - 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-49', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-49", + "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: 'coreum', - client_id: '07-tendermint-3', - connection_id: 'connection-3' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-3", + "connection_id": "connection-3" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2929', - connection_id: 'connection-2426' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2929", + "connection_id": "connection-2426" }, - 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-2188', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-2188", + "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: 'coreum', - client_id: '07-tendermint-40', - connection_id: 'connection-27' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-40", + "connection_id": "connection-27" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-186', - connection_id: 'connection-138' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-186", + "connection_id": "connection-138" }, - 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-101', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-101", + "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: 'coreum', - client_id: '07-tendermint-41', - connection_id: 'connection-28' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "coreum", + "client_id": "07-tendermint-41", + "connection_id": "connection-28" }, - chain_2: { - chain_name: 'sei', - client_id: '07-tendermint-47', - connection_id: 'connection-79' + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-47", + "connection_id": "connection-79" }, - 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-47', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-47", + "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-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-1191', - connection_id: 'connection-920' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1191", + "connection_id": "connection-920" }, - chain_2: { - chain_name: 'doravota', - client_id: '07-tendermint-14', - connection_id: 'connection-8' + "chain_2": { + "chain_name": "doravota", + "client_id": "07-tendermint-14", + "connection_id": "connection-8" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-750', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-750", + "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: '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-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-1151', - connection_id: 'connection-872' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1151", + "connection_id": "connection-872" }, - chain_2: { - chain_name: 'empowerchain', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "empowerchain", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-621', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-621", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-620', - connection_id: 'connection-480' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-620", + "connection_id": "connection-480" }, - chain_2: { - chain_name: 'evmos', - client_id: '07-tendermint-3', - connection_id: 'connection-3' + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-3", + "connection_id": "connection-3" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-292', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-292", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-1141', - connection_id: 'connection-829' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1141", + "connection_id": "connection-829" }, - chain_2: { - chain_name: 'fxcore', - client_id: '07-tendermint-13', - connection_id: 'connection-13' + "chain_2": { + "chain_name": "fxcore", + "client_id": "07-tendermint-13", + "connection_id": "connection-13" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-585', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-585", + "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: { - 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-1153', - connection_id: 'connection-874' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1153", + "connection_id": "connection-874" }, - chain_2: { - chain_name: 'haqq', - client_id: '07-tendermint-2', - connection_id: 'connection-3' + "chain_2": { + "chain_name": "haqq", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-632', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-632", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $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-470', - connection_id: 'connection-388' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-470", + "connection_id": "connection-388" }, - chain_2: { - chain_name: 'injective', - client_id: '07-tendermint-5', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-5", + "connection_id": "connection-2" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-220', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-220", + "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: '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-557', - connection_id: 'connection-460' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-557", + "connection_id": "connection-460" }, - chain_2: { - chain_name: 'kava', - client_id: '07-tendermint-1', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-277', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-277", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-475', - connection_id: 'connection-392' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-475", + "connection_id": "connection-392" }, - chain_2: { - chain_name: 'kichain', - client_id: '07-tendermint-6', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "kichain", + "client_id": "07-tendermint-6", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-223', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-223", + "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-769', - connection_id: 'connection-555' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-769", + "connection_id": "connection-555" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-343', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-343", + "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 + "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-1120', - connection_id: 'connection-807' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1120", + "connection_id": "connection-807" }, - chain_2: { - chain_name: 'lumnetwork', - client_id: '07-tendermint-21', - connection_id: 'connection-22' + "chain_2": { + "chain_name": "lumnetwork", + "client_id": "07-tendermint-21", + "connection_id": "connection-22" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-566', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-566", + "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: { - 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-1119', - connection_id: 'connection-809' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1119", + "connection_id": "connection-809" }, - chain_2: { - chain_name: 'neutron', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-569', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-569", + "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-1116', - connection_id: 'connection-790' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1116", + "connection_id": "connection-790" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-4', - connection_id: 'connection-12' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-4", + "connection_id": "connection-12" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-536', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-536", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-656', - connection_id: 'connection-501' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-656", + "connection_id": "connection-501" }, - chain_2: { - chain_name: 'omniflixhub', - client_id: '07-tendermint-23', - connection_id: 'connection-19' + "chain_2": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-23", + "connection_id": "connection-19" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-306', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-306", + "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: { - 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-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-994', - connection_id: 'connection-693' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-994", + "connection_id": "connection-693" }, - chain_2: { - chain_name: 'planq', - client_id: '07-tendermint-5', - connection_id: 'connection-3' + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-5", + "connection_id": "connection-3" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-446', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-446", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-926', - connection_id: 'connection-648' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-926", + "connection_id": "connection-648" }, - chain_2: { - chain_name: 'point', - client_id: '07-tendermint-1', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "point", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-404', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-404", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-1018', - connection_id: 'connection-709' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1018", + "connection_id": "connection-709" }, - chain_2: { - chain_name: 'quicksilver', - client_id: '07-tendermint-2', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-467', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-467", + "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' + "ordering": "unordered", + "version": "ics20-1" } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-1157', - connection_id: 'connection-879' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1157", + "connection_id": "connection-879" }, - chain_2: { - chain_name: 'realio', - client_id: '07-tendermint-2', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "realio", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-645', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-645", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $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-1140', - connection_id: 'connection-827' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1140", + "connection_id": "connection-827" }, - chain_2: { - chain_name: 'sei', - client_id: '07-tendermint-3', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-584', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-584", + "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, - 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-892', - connection_id: 'connection-618' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-892", + "connection_id": "connection-618" }, - chain_2: { - chain_name: 'stafihub', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-369', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-369", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $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-913', - connection_id: 'connection-635' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-913", + "connection_id": "connection-635" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-391', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-391", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'cosmoshub', - client_id: '07-tendermint-962', - connection_id: 'connection-1710' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-962", + "connection_id": "connection-1710" }, - chain_2: { - chain_name: 'teritori', - client_id: '07-tendermint-32', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-32", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-431', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-431", + "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: { - 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-760', - connection_id: 'connection-551' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-760", + "connection_id": "connection-551" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-0', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-0", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-339', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-339", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $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: 'cosmoshub', - client_id: '07-tendermint-1115', - connection_id: 'connection-788' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshub", + "client_id": "07-tendermint-1115", + "connection_id": "connection-788" }, - chain_2: { - chain_name: 'uptick', - client_id: '07-tendermint-3', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "uptick", + "client_id": "07-tendermint-3", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-535', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-535", + "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' + "ordering": "unordered", + "version": "ics20-1" } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'crescent', - client_id: '07-tendermint-77', - connection_id: 'connection-65' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-77", + "connection_id": "connection-65" }, - chain_2: { - chain_name: 'cryptoorgchain', - client_id: '07-tendermint-1153', - connection_id: 'connection-277' + "chain_2": { + "chain_name": "cryptoorgchain", + "client_id": "07-tendermint-1153", + "connection_id": "connection-277" }, - 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-61', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-61", + "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-12', - connection_id: 'connection-10' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-12", + "connection_id": "connection-10" }, - chain_2: { - chain_name: 'evmos', - client_id: '07-tendermint-38', - connection_id: 'connection-15' + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-38", + "connection_id": "connection-15" }, - 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-11', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-11", + "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-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-26', - connection_id: 'connection-29' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-26", + "connection_id": "connection-29" }, - chain_2: { - chain_name: 'injective', - client_id: '07-tendermint-132', - connection_id: 'connection-105' + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-132", + "connection_id": "connection-105" }, - 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-90', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-90", + "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-67', - connection_id: 'connection-61' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-67", + "connection_id": "connection-61" }, - chain_2: { - chain_name: 'irisnet', - client_id: '07-tendermint-86', - connection_id: 'connection-70' + "chain_2": { + "chain_name": "irisnet", + "client_id": "07-tendermint-86", + "connection_id": "connection-70" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-37', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-37", + "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: '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-111', - connection_id: 'connection-97' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-111", + "connection_id": "connection-97" }, - chain_2: { - chain_name: 'jackal', - client_id: '07-tendermint-56', - connection_id: 'connection-46' + "chain_2": { + "chain_name": "jackal", + "client_id": "07-tendermint-56", + "connection_id": "connection-46" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-63', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-63", + "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: '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-5', - connection_id: 'connection-3' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-5", + "connection_id": "connection-3" }, - chain_2: { - chain_name: 'juno', - client_id: '07-tendermint-160', - connection_id: 'connection-107' + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-160", + "connection_id": "connection-107" }, - 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-81', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-81", + "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-78', - connection_id: 'connection-68' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-78", + "connection_id": "connection-68" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-105', - connection_id: 'connection-75' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-105", + "connection_id": "connection-75" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-42', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-42", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-67', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-67", + "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-53', - connection_id: 'connection-52' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-53", + "connection_id": "connection-52" }, - chain_2: { - chain_name: 'mars', - client_id: '07-tendermint-14', - connection_id: 'connection-9' + "chain_2": { + "chain_name": "mars", + "client_id": "07-tendermint-14", + "connection_id": "connection-9" }, - 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-5', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-5", + "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-68', - connection_id: 'connection-63' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-68", + "connection_id": "connection-63" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-38', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-38", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'crescent', - client_id: '07-tendermint-44', - connection_id: 'connection-46' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-44", + "connection_id": "connection-46" }, - chain_2: { - chain_name: 'okexchain', - client_id: '07-tendermint-116', - connection_id: 'connection-78' + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-116", + "connection_id": "connection-78" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-31', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-31", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-46', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-46", + "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-42', - connection_id: 'connection-41' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-42", + "connection_id": "connection-41" }, - chain_2: { - chain_name: 'persistence', - client_id: '07-tendermint-88', - connection_id: 'connection-72' + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-88", + "connection_id": "connection-72" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-30', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-30", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-68', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-68", + "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: '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: 'crescent', - client_id: '07-tendermint-24', - connection_id: 'connection-27' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-24", + "connection_id": "connection-27" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-180', - connection_id: 'connection-114' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-180", + "connection_id": "connection-114" }, - 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-51', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-51", + "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-38', - connection_id: 'connection-39' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-38", + "connection_id": "connection-39" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-44', - connection_id: 'connection-30' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-44", + "connection_id": "connection-30" }, - 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-51', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-51", + "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-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'terra', - client_id: '07-tendermint-101', - connection_id: 'connection-70' + "chain_2": { + "chain_name": "terra", + "client_id": "07-tendermint-101", + "connection_id": "connection-70" }, - 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-49', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-49", + "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-36', - connection_id: 'connection-37' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-36", + "connection_id": "connection-37" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-68', - connection_id: 'connection-57' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-68", + "connection_id": "connection-57" }, - 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-37', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-37", + "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-56', - connection_id: 'connection-53' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "crescent", + "client_id": "07-tendermint-56", + "connection_id": "connection-53" }, - chain_2: { - chain_name: 'umee', - client_id: '07-tendermint-170', - connection_id: 'connection-110' + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-170", + "connection_id": "connection-110" }, - 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-49', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-49", + "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: 'cronos', - client_id: '07-tendermint-33', - connection_id: 'connection-17' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cronos", + "client_id": "07-tendermint-33", + "connection_id": "connection-17" }, - chain_2: { - chain_name: 'kava', - client_id: '07-tendermint-134', - connection_id: 'connection-169' + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-134", + "connection_id": "connection-169" }, - 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-125', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-125", + "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: 'cryptoorgchain', - client_id: '07-tendermint-1136', - connection_id: 'connection-260' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cryptoorgchain", + "client_id": "07-tendermint-1136", + "connection_id": "connection-260" }, - chain_2: { - chain_name: 'evmos', - client_id: '07-tendermint-85', - connection_id: 'connection-43' + "chain_2": { + "chain_name": "evmos", + "client_id": "07-tendermint-85", + "connection_id": "connection-43" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-57', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-31', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-31", + "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-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: 'cudos', - client_id: '07-tendermint-2084', - connection_id: 'connection-1626' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cudos", + "client_id": "07-tendermint-2084", + "connection_id": "connection-1626" }, - 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-1', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-1", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-298', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-298", + "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: '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: 'decentr', - client_id: '07-tendermint-26', - connection_id: 'connection-10' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "decentr", + "client_id": "07-tendermint-26", + "connection_id": "connection-10" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-395', - connection_id: 'connection-385' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-395", + "connection_id": "connection-385" }, - 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-315', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-315", + "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: '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: 'doravota', - client_id: '07-tendermint-16', - connection_id: 'connection-10' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "doravota", + "client_id": "07-tendermint-16", + "connection_id": "connection-10" }, - chain_2: { - chain_name: 'dydx', - client_id: '07-tendermint-15', - connection_id: 'connection-21' + "chain_2": { + "chain_name": "dydx", + "client_id": "07-tendermint-15", + "connection_id": "connection-21" }, - 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-15', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-15", + "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: 'doravota', - client_id: '07-tendermint-15', - connection_id: 'connection-9' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "doravota", + "client_id": "07-tendermint-15", + "connection_id": "connection-9" }, - chain_2: { - chain_name: 'injective', - client_id: '07-tendermint-245', - connection_id: 'connection-239' + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-245", + "connection_id": "connection-239" }, - 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-182', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-182", + "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: 'doravota', - client_id: '07-tendermint-13', - connection_id: 'connection-5' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "doravota", + "client_id": "07-tendermint-13", + "connection_id": "connection-5" }, - chain_2: { - chain_name: 'nolus', - client_id: '07-tendermint-14', - connection_id: 'connection-12' + "chain_2": { + "chain_name": "nolus", + "client_id": "07-tendermint-14", + "connection_id": "connection-12" }, - 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-4092', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4092", + "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: 'doravota', - client_id: '07-tendermint-0', - connection_id: 'connection-1' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "doravota", + "client_id": "07-tendermint-0", + "connection_id": "connection-1" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2959', - connection_id: 'connection-2454' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2959", + "connection_id": "connection-2454" }, - 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-2694', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-2694", + "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: 'dydx', - client_id: '07-tendermint-7', - connection_id: 'connection-12' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-7", + "connection_id": "connection-12" }, - chain_2: { - chain_name: 'kava', - client_id: '07-tendermint-154', - connection_id: 'connection-195' + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-154", + "connection_id": "connection-195" }, - 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-137', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-137", + "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: 'dydx', - client_id: '07-tendermint-5', - connection_id: 'connection-9' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-5", + "connection_id": "connection-9" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-158', - connection_id: 'connection-122' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-158", + "connection_id": "connection-122" }, - 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-118', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-118", + "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: 'dydx', - client_id: '07-tendermint-11', - connection_id: 'connection-17' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-11", + "connection_id": "connection-17" }, - chain_2: { - chain_name: 'neutron', - client_id: '07-tendermint-72', - connection_id: 'connection-51' + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-72", + "connection_id": "connection-51" }, - 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-48', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-48", + "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: 'dydx', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-59', - connection_id: 'connection-57' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-59", + "connection_id": "connection-57" }, - 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-33', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-33", + "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: 'dydx', - client_id: '07-tendermint-3', - connection_id: 'connection-7' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-3", + "connection_id": "connection-7" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-3009', - connection_id: 'connection-2500' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3009", + "connection_id": "connection-2500" }, - 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-6787', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-6787", + "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: 'dydx', - client_id: '07-tendermint-4', - connection_id: 'connection-8' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-4", + "connection_id": "connection-8" }, - chain_2: { - chain_name: 'persistence', - client_id: '07-tendermint-159', - connection_id: 'connection-197' + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-159", + "connection_id": "connection-197" }, - 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-131', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-131", + "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: 'dydx', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-133', - connection_id: 'connection-123' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-133", + "connection_id": "connection-123" }, - 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-160', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-160", + "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: 'dydx', - client_id: '07-tendermint-9', - connection_id: 'connection-14' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dydx", + "client_id": "07-tendermint-9", + "connection_id": "connection-14" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-390', - connection_id: 'connection-380' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-390", + "connection_id": "connection-380" }, - 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-299', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-299", + "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: 'dyson', - client_id: '07-tendermint-2', - connection_id: 'connection-5' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "dyson", + "client_id": "07-tendermint-2", + "connection_id": "connection-5" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2407', - connection_id: 'connection-1895' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2407", + "connection_id": "connection-1895" }, - 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-526', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-526", + "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: 'echelon', - client_id: '07-tendermint-107', - connection_id: 'connection-29' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "echelon", + "client_id": "07-tendermint-107", + "connection_id": "connection-29" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2268', - connection_id: 'connection-1760' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2268", + "connection_id": "connection-1760" }, - 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-403', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-403", + "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: 'empowerchain', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "empowerchain", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2848', - connection_id: 'connection-2360' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2848", + "connection_id": "connection-2360" }, - 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-1411', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-1411", + "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: 'evmos', - client_id: '07-tendermint-10', - connection_id: 'connection-6' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "evmos", + "client_id": "07-tendermint-10", + "connection_id": "connection-6" }, - chain_2: { - chain_name: 'gateway', - client_id: '07-tendermint-119', - connection_id: 'connection-77' + "chain_2": { + "chain_name": "gateway", + "client_id": "07-tendermint-119", + "connection_id": "connection-77" }, - 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-94', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-94", + "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: 'evmos', - client_id: '07-tendermint-17', - connection_id: 'connection-11' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "evmos", + "client_id": "07-tendermint-17", + "connection_id": "connection-11" }, - chain_2: { - chain_name: 'gravitybridge', - client_id: '07-tendermint-108', - connection_id: 'connection-106' + "chain_2": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-108", + "connection_id": "connection-106" }, - 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-65', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-65", + "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: 'evmos', - client_id: '07-tendermint-19', - connection_id: 'connection-13' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "evmos", + "client_id": "07-tendermint-19", + "connection_id": "connection-13" }, - chain_2: { - chain_name: 'injective', - client_id: '07-tendermint-112', - connection_id: 'connection-92' + "chain_2": { + "chain_name": "injective", + "client_id": "07-tendermint-112", + "connection_id": "connection-92" }, - 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-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: 'evmos', - client_id: '07-tendermint-113', - connection_id: 'connection-67' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "evmos", + "client_id": "07-tendermint-113", + "connection_id": "connection-67" }, - chain_2: { - chain_name: 'kava', - client_id: '07-tendermint-120', - connection_id: 'connection-157' + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-120", + "connection_id": "connection-157" }, - 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-117', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-117", + "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: 'evmos', - client_id: '07-tendermint-53', - connection_id: 'connection-21' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "evmos", + "client_id": "07-tendermint-53", + "connection_id": "connection-21" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-25', - connection_id: 'connection-19' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-25", + "connection_id": "connection-19" }, - 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-23', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-23", + "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: 'evmos', - client_id: '07-tendermint-106', - connection_id: 'connection-63' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "evmos", + "client_id": "07-tendermint-106", + "connection_id": "connection-63" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-12', - connection_id: 'connection-19' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-12", + "connection_id": "connection-19" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-64', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-64", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $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: 'evmos', - client_id: '07-tendermint-41', - connection_id: 'connection-17' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "evmos", + "client_id": "07-tendermint-41", + "connection_id": "connection-17" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-173', - connection_id: 'connection-104' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-173", + "connection_id": "connection-104" }, - 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-46', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-46", + "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: 'evmos', - client_id: '07-tendermint-77', - connection_id: 'connection-33' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "evmos", + "client_id": "07-tendermint-77", + "connection_id": "connection-33" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-8', - connection_id: 'connection-7' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-8", + "connection_id": "connection-7" }, - 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-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: 'evmos', - client_id: '07-tendermint-88', - connection_id: 'connection-46' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "evmos", + "client_id": "07-tendermint-88", + "connection_id": "connection-46" }, - chain_2: { - chain_name: 'tgrade', - client_id: '07-tendermint-8', - connection_id: 'connection-11' + "chain_2": { + "chain_name": "tgrade", + "client_id": "07-tendermint-8", + "connection_id": "connection-11" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-34', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-34", + "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: '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: 'furya', - client_id: '07-tendermint-3', - connection_id: 'connection-2' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "furya", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" }, - chain_2: { - chain_name: 'juno', - client_id: '07-tendermint-501', - connection_id: 'connection-505' + "chain_2": { + "chain_name": "juno", + "client_id": "07-tendermint-501", + "connection_id": "connection-505" }, - 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-417', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-417", + "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: 'furya', - client_id: '07-tendermint-1', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "furya", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-160', - connection_id: 'connection-123' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-160", + "connection_id": "connection-123" }, - 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-119', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-119", + "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: 'furya', - client_id: '07-tendermint-4', - connection_id: 'connection-3' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "furya", + "client_id": "07-tendermint-4", + "connection_id": "connection-3" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-3029', - connection_id: 'connection-2515' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3029", + "connection_id": "connection-2515" }, - 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-8690', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-8690", + "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: 'furya', - client_id: '07-tendermint-2', - connection_id: 'connection-1' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "furya", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-385', - connection_id: 'connection-361' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-385", + "connection_id": "connection-361" }, - 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-271', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-271", + "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: 'fxcore', - client_id: '07-tendermint-23', - connection_id: 'connection-22' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "fxcore", + "client_id": "07-tendermint-23", + "connection_id": "connection-22" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2961', - connection_id: 'connection-2456' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2961", + "connection_id": "connection-2456" }, - 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-2716', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-2716", + "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: 'fxcore', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "fxcore", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'pundix', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "pundix", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - 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-0', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-0", + "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: '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: 'gateway', - client_id: '07-tendermint-13', - connection_id: 'connection-9' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gateway", + "client_id": "07-tendermint-13", + "connection_id": "connection-9" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-153', - connection_id: 'connection-117' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-153", + "connection_id": "connection-117" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-113', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-113", + "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: 'gateway', - client_id: '07-tendermint-8', - connection_id: 'connection-4' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gateway", + "client_id": "07-tendermint-8", + "connection_id": "connection-4" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2927', - connection_id: 'connection-2424' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2927", + "connection_id": "connection-2424" }, - 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-2186', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-2186", + "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: '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-253', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-253", + "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: 'gitopia', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gitopia", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2787', - connection_id: 'connection-2287' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2787", + "connection_id": "connection-2287" }, - 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-781', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-781", + "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-192', - connection_id: 'connection-163' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-192", + "connection_id": "connection-163" }, - chain_2: { - chain_name: 'haqq', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "haqq", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-100', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-100", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'gravitybridge', - client_id: '07-tendermint-225', - connection_id: 'connection-189' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-225", + "connection_id": "connection-189" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-69', - connection_id: 'connection-45' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-69", + "connection_id": "connection-45" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-107', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-107", + "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: 'gravitybridge', - client_id: '07-tendermint-33', - connection_id: 'connection-44' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-33", + "connection_id": "connection-44" }, - chain_2: { - chain_name: 'nyx', - client_id: '07-tendermint-1', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "nyx", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" }, - 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-0', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-0", + "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: '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-39', - connection_id: 'connection-50' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-39", + "connection_id": "connection-50" }, - chain_2: { - chain_name: 'persistence', - client_id: '07-tendermint-51', - connection_id: 'connection-49' + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-51", + "connection_id": "connection-49" }, - 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-38', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-38", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: {} + "ordering": "unordered", + "version": "ics20-1", + "tags": {} } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'gravitybridge', - client_id: '07-tendermint-195', - connection_id: 'connection-165' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-195", + "connection_id": "connection-165" }, - chain_2: { - chain_name: 'planq', - client_id: '07-tendermint-1', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-102', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-102", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $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: 'gravitybridge', - client_id: '07-tendermint-190', - connection_id: 'connection-161' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "gravitybridge", + "client_id": "07-tendermint-190", + "connection_id": "connection-161" }, - chain_2: { - chain_name: 'unification', - client_id: '07-tendermint-4', - connection_id: 'connection-4' + "chain_2": { + "chain_name": "unification", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-98', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-98", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'haqq', - client_id: '07-tendermint-5', - connection_id: 'connection-7' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "haqq", + "client_id": "07-tendermint-5", + "connection_id": "connection-7" }, - chain_2: { - chain_name: 'kava', - client_id: '07-tendermint-149', - connection_id: 'connection-193' + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-149", + "connection_id": "connection-193" }, - 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-135', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-135", + "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: 'haqq', - client_id: '07-tendermint-4', - connection_id: 'connection-4' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "haqq", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-58', - connection_id: 'connection-56' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-58", + "connection_id": "connection-56" }, - 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-32', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-32", + "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: 'haqq', - client_id: '07-tendermint-3', - connection_id: 'connection-2' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "haqq", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2871', - connection_id: 'connection-2388' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2871", + "connection_id": "connection-2388" }, - 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-1575', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-1575", + "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-59', - connection_id: 'connection-43' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "impacthub", + "client_id": "07-tendermint-59", + "connection_id": "connection-43" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-20', - connection_id: 'connection-29' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-20", + "connection_id": "connection-29" }, - 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-15', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-15", + "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: '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: 'imversed', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "imversed", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2366', - connection_id: 'connection-1866' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2366", + "connection_id": "connection-1866" }, - 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-517', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-517", + "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-205', - connection_id: 'connection-189' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-205", + "connection_id": "connection-189" }, - chain_2: { - chain_name: 'kava', - client_id: '07-tendermint-130', - connection_id: 'connection-166' + "chain_2": { + "chain_name": "kava", + "client_id": "07-tendermint-130", + "connection_id": "connection-166" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-143', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-143", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'injective', - client_id: '07-tendermint-144', - connection_id: 'connection-116' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-144", + "connection_id": "connection-116" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-77', - connection_id: 'connection-53' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-77", + "connection_id": "connection-53" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-98', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-98", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-54', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-54", + "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: 'injective', - client_id: '07-tendermint-154', - connection_id: 'connection-123' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-154", + "connection_id": "connection-123" }, - chain_2: { - chain_name: 'migaloo', - client_id: '07-tendermint-5', - connection_id: 'connection-8' + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-5", + "connection_id": "connection-8" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-102', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-102", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'injective', - client_id: '07-tendermint-223', - connection_id: 'connection-220' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-223", + "connection_id": "connection-220" }, - chain_2: { - chain_name: 'neutron', - client_id: '07-tendermint-78', - connection_id: 'connection-58' + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-78", + "connection_id": "connection-58" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-177', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-177", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-60', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-60", + "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: 'injective', - client_id: '07-tendermint-210', - connection_id: 'connection-193' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-210", + "connection_id": "connection-193" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-15', - connection_id: 'connection-24' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-15", + "connection_id": "connection-24" }, - 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-10', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-10", + "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: 'injective', - client_id: '07-tendermint-201', - connection_id: 'connection-184' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-201", + "connection_id": "connection-184" }, - chain_2: { - chain_name: 'nois', - client_id: '07-tendermint-13', - connection_id: 'connection-6' + "chain_2": { + "chain_name": "nois", + "client_id": "07-tendermint-13", + "connection_id": "connection-6" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-138', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-138", + "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 } }, { - chain_1: { - channel_id: 'channel-140', - port_id: 'wasm.inj1w9g3sk7lk8k0pdtctygupt6f3te7x4thvzz57a' + "chain_1": { + "channel_id": "channel-140", + "port_id": "wasm.inj1w9g3sk7lk8k0pdtctygupt6f3te7x4thvzz57a" }, - chain_2: { - channel_id: 'channel-20', - port_id: - 'wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp' + "chain_2": { + "channel_id": "channel-20", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" }, - ordering: 'unordered', - version: 'nois-v7', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $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-110', - connection_id: 'connection-91' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-110", + "connection_id": "connection-91" }, - chain_2: { - chain_name: 'persistence', - client_id: '07-tendermint-57', - connection_id: 'connection-53' + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-57", + "connection_id": "connection-53" }, - 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-41', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-41", + "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-88', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-88", + "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: { - 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: 'injective', - client_id: '07-tendermint-135', - connection_id: 'connection-108' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-135", + "connection_id": "connection-108" }, - chain_2: { - chain_name: 'sommelier', - client_id: '07-tendermint-4', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "sommelier", + "client_id": "07-tendermint-4", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-93', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-93", + "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: 'injective', - client_id: '07-tendermint-131', - connection_id: 'connection-103' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-131", + "connection_id": "connection-103" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-2', - connection_id: 'connection-3' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-89', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-89", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'injective', - client_id: '07-tendermint-216', - connection_id: 'connection-202' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-216", + "connection_id": "connection-202" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-369', - connection_id: 'connection-311' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-369", + "connection_id": "connection-311" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-151', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-151", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-255', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-255", + "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: 'injective', - client_id: '07-tendermint-197', - connection_id: 'connection-182' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injective", + "client_id": "07-tendermint-197", + "connection_id": "connection-182" }, - chain_2: { - chain_name: 'xpla', - client_id: '07-tendermint-6', - connection_id: 'connection-12' + "chain_2": { + "chain_name": "xpla", + "client_id": "07-tendermint-6", + "connection_id": "connection-12" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-137', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-137", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $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-63', - connection_id: 'connection-44' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "irisnet", + "client_id": "07-tendermint-63", + "connection_id": "connection-44" }, - chain_2: { - chain_name: 'stafihub', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - 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-3', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-3", + "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: '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: 'irisnet', - client_id: '07-tendermint-93', - connection_id: 'connection-72' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "irisnet", + "client_id": "07-tendermint-93", + "connection_id": "connection-72" }, - chain_2: { - chain_name: 'uptick', - client_id: '07-tendermint-8', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "uptick", + "client_id": "07-tendermint-8", + "connection_id": "connection-2" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-39', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-39", + "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' + "ordering": "unordered", + "version": "ics20-1" } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'jackal', - client_id: '07-tendermint-57', - connection_id: 'connection-47' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "jackal", + "client_id": "07-tendermint-57", + "connection_id": "connection-47" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-139', - connection_id: 'connection-105' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-139", + "connection_id": "connection-105" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-39', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-94', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-94", + "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: 'jackal', - client_id: '07-tendermint-2', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "jackal", + "client_id": "07-tendermint-2", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2273', - connection_id: 'connection-1762' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2273", + "connection_id": "connection-1762" }, - 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-412', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-412", + "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: 'jackal', - client_id: '07-tendermint-6', - connection_id: 'connection-3' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "jackal", + "client_id": "07-tendermint-6", + "connection_id": "connection-3" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-124', - connection_id: 'connection-94' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-124", + "connection_id": "connection-94" }, - 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: '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-198', - connection_id: 'connection-140' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-198", + "connection_id": "connection-140" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-2', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-87', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-87", + "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: 'juno', - client_id: '07-tendermint-300', - connection_id: 'connection-270' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-300", + "connection_id": "connection-270" }, - chain_2: { - chain_name: 'mars', - client_id: '07-tendermint-11', - connection_id: 'connection-7' + "chain_2": { + "chain_name": "mars", + "client_id": "07-tendermint-11", + "connection_id": "connection-7" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-209', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-209", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'juno', - client_id: '07-tendermint-310', - connection_id: 'connection-282' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-310", + "connection_id": "connection-282" }, - chain_2: { - chain_name: 'migaloo', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-210', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-210", + "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: 'juno', - client_id: '07-tendermint-334', - connection_id: 'connection-322' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-334", + "connection_id": "connection-322" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-3', - connection_id: 'connection-8' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-3", + "connection_id": "connection-8" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-224', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-224", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'juno', - client_id: '07-tendermint-335', - connection_id: 'connection-325' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-335", + "connection_id": "connection-325" }, - chain_2: { - chain_name: 'nois', - client_id: '07-tendermint-1', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "nois", + "client_id": "07-tendermint-1", + "connection_id": "connection-2" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-225', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-225", + "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 } }, { - chain_1: { - channel_id: 'channel-243', - port_id: - 'wasm.juno1qr84ktm57q5t02u04ddk5r8s79axdzglad6tfdd9g2xgt4hkh6jsgeq9x2' + "chain_1": { + "channel_id": "channel-243", + "port_id": "wasm.juno1qr84ktm57q5t02u04ddk5r8s79axdzglad6tfdd9g2xgt4hkh6jsgeq9x2" }, - chain_2: { - channel_id: 'channel-2', - port_id: - 'wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp' + "chain_2": { + "channel_id": "channel-2", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" }, - ordering: 'unordered', - version: 'nois-v7', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'juno', - client_id: '07-tendermint-314', - connection_id: 'connection-285' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-314", + "connection_id": "connection-285" }, - chain_2: { - chain_name: 'okexchain', - client_id: '07-tendermint-122', - connection_id: 'connection-92' + "chain_2": { + "chain_name": "okexchain", + "client_id": "07-tendermint-122", + "connection_id": "connection-92" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-212', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-212", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-52', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-52", + "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-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-318', - connection_id: 'connection-309' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-318", + "connection_id": "connection-309" }, - chain_2: { - chain_name: 'quicksilver', - client_id: '07-tendermint-17', - connection_id: 'connection-10' + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-17", + "connection_id": "connection-10" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-215', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-215", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-22', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-22", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1' + "ordering": "unordered", + "version": "ics20-1" } ] }, { - $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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-163', - port_id: 'transfer', - client_id: '07-tendermint-108', - connection_id: 'connection-68' + "chain_1": { + "channel_id": "channel-163", + "port_id": "transfer", + "client_id": "07-tendermint-108", + "connection_id": "connection-68" }, - chain_2: { - channel_id: 'channel-45', - port_id: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - client_id: '07-tendermint-23', - connection_id: 'connection-9' + "chain_2": { + "channel_id": "channel-45", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4", + "client_id": "07-tendermint-23", + "connection_id": "connection-9" }, - 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-263', - connection_id: 'connection-205' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-263", + "connection_id": "connection-205" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-31', - connection_id: 'connection-19' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-31", + "connection_id": "connection-19" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-139', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-139", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-202', - port_id: 'icahost' + "chain_1": { + "channel_id": "channel-202", + "port_id": "icahost" }, - chain_2: { - channel_id: 'channel-48', - port_id: 'icacontroller-juno-1.DELEGATION' + "chain_2": { + "channel_id": "channel-48", + "port_id": "icacontroller-juno-1.DELEGATION" }, - ordering: 'ordered', - version: 'ics27-1', - tags: { - status: 'live', - preferred: true, - properties: 'liquid staking' + "ordering": "ordered", + "version": "ics27-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "liquid staking" } }, { - chain_1: { - channel_id: 'channel-143', - port_id: 'icahost' + "chain_1": { + "channel_id": "channel-143", + "port_id": "icahost" }, - chain_2: { - channel_id: 'channel-26', - port_id: 'icacontroller-juno-1.FEE' + "chain_2": { + "channel_id": "channel-26", + "port_id": "icacontroller-juno-1.FEE" }, - ordering: 'ordered', - version: 'ics27-1', - tags: { - status: 'live', - preferred: true, - properties: 'liquid staking' + "ordering": "ordered", + "version": "ics27-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "liquid staking" } }, { - chain_1: { - channel_id: 'channel-142', - port_id: 'icahost' + "chain_1": { + "channel_id": "channel-142", + "port_id": "icahost" }, - chain_2: { - channel_id: 'channel-27', - port_id: 'icacontroller-juno-1.WITHDRAWAL' + "chain_2": { + "channel_id": "channel-27", + "port_id": "icacontroller-juno-1.WITHDRAWAL" }, - ordering: 'ordered', - version: 'ics27-1', - tags: { - status: 'live', - preferred: true, - properties: 'liquid staking' + "ordering": "ordered", + "version": "ics27-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "liquid staking" } }, { - chain_1: { - channel_id: 'channel-140', - port_id: 'icahost' + "chain_1": { + "channel_id": "channel-140", + "port_id": "icahost" }, - chain_2: { - channel_id: 'channel-28', - port_id: 'icacontroller-juno-1.REDEMPTION' + "chain_2": { + "channel_id": "channel-28", + "port_id": "icacontroller-juno-1.REDEMPTION" }, - ordering: 'ordered', - version: 'ics27-1', - tags: { - status: 'live', - preferred: true, - properties: 'liquid staking' + "ordering": "ordered", + "version": "ics27-1", + "tags": { + "status": "live", + "preferred": true, + "properties": "liquid staking" } } ] }, { - $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: 'juno', - client_id: '07-tendermint-185', - connection_id: 'connection-128' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "juno", + "client_id": "07-tendermint-185", + "connection_id": "connection-128" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-3', - connection_id: 'connection-6' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-3", + "connection_id": "connection-6" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-86', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-86", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kava', - client_id: '07-tendermint-119', - connection_id: 'connection-156' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-119", + "connection_id": "connection-156" }, - chain_2: { - chain_name: 'kujira', - client_id: '07-tendermint-140', - connection_id: 'connection-106' + "chain_2": { + "chain_name": "kujira", + "client_id": "07-tendermint-140", + "connection_id": "connection-106" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-116', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-116", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kava', - client_id: '07-tendermint-125', - connection_id: 'connection-162' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-125", + "connection_id": "connection-162" }, - chain_2: { - chain_name: 'migaloo', - client_id: '07-tendermint-90', - connection_id: 'connection-73' + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-90", + "connection_id": "connection-73" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-120', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-120", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kava', - client_id: '07-tendermint-151', - connection_id: 'connection-194' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-151", + "connection_id": "connection-194" }, - chain_2: { - chain_name: 'neutron', - client_id: '07-tendermint-54', - connection_id: 'connection-37' + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-54", + "connection_id": "connection-37" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-136', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-136", + "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: '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: 'kava', - client_id: '07-tendermint-148', - connection_id: 'connection-189' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-148", + "connection_id": "connection-189" }, - chain_2: { - chain_name: 'persistence', - client_id: '07-tendermint-156', - connection_id: 'connection-195' + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-156", + "connection_id": "connection-195" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-134', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-134", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-129', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-129", + "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-146', - connection_id: 'connection-181' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-146", + "connection_id": "connection-181" }, - chain_2: { - chain_name: 'sei', - client_id: '07-tendermint-38', - connection_id: 'connection-33' + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-38", + "connection_id": "connection-33" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-132', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-132", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kava', - client_id: '07-tendermint-156', - connection_id: 'connection-196' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-156", + "connection_id": "connection-196" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-386', - connection_id: 'connection-362' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-386", + "connection_id": "connection-362" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-138', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-138", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-272', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-272", + "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-124', - connection_id: 'connection-160' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kava", + "client_id": "07-tendermint-124", + "connection_id": "connection-160" }, - chain_2: { - chain_name: 'umee', - client_id: '07-tendermint-229', - connection_id: 'connection-191' + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-229", + "connection_id": "connection-191" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-119', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-119", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-98', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-98", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $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-78', - connection_id: 'connection-54' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-78", + "connection_id": "connection-54" }, - chain_2: { - chain_name: 'mars', - client_id: '07-tendermint-3', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "mars", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-55', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-55", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kujira', - client_id: '07-tendermint-82', - connection_id: 'connection-59' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-82", + "connection_id": "connection-59" }, - chain_2: { - chain_name: 'migaloo', - client_id: '07-tendermint-16', - connection_id: 'connection-19' + "chain_2": { + "chain_name": "migaloo", + "client_id": "07-tendermint-16", + "connection_id": "connection-19" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-58', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-58", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kujira', - client_id: '07-tendermint-112', - connection_id: 'connection-82' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-112", + "connection_id": "connection-82" }, - chain_2: { - chain_name: 'neutron', - client_id: '07-tendermint-2', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" }, - 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-3', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-3", + "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: 'kujira', - client_id: '07-tendermint-95', - connection_id: 'connection-65' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-95", + "connection_id": "connection-65" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-2', - connection_id: 'connection-4' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-2", + "connection_id": "connection-4" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-62', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-62", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kujira', - client_id: '07-tendermint-156', - connection_id: 'connection-120' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-156", + "connection_id": "connection-120" }, - chain_2: { - chain_name: 'nomic', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "nomic", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-116', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-116", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kujira', - client_id: '07-tendermint-108', - connection_id: 'connection-78' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-108", + "connection_id": "connection-78" }, - chain_2: { - chain_name: 'omniflixhub', - client_id: '07-tendermint-43', - connection_id: 'connection-36' + "chain_2": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-43", + "connection_id": "connection-36" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-70', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-70", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-26', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-26", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: {} + "ordering": "unordered", + "version": "ics20-1", + "tags": {} } ] }, { - $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: 'kujira', - client_id: '07-tendermint-155', - connection_id: 'connection-119' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-155", + "connection_id": "connection-119" }, - chain_2: { - chain_name: 'realio', - client_id: '07-tendermint-6', - connection_id: 'connection-4' + "chain_2": { + "chain_name": "realio", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-115', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-115", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kujira', - client_id: '07-tendermint-106', - connection_id: 'connection-76' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-106", + "connection_id": "connection-76" }, - chain_2: { - chain_name: 'regen', - client_id: '07-tendermint-115', - connection_id: 'connection-104' + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-115", + "connection_id": "connection-104" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-68', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-68", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-100', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-100", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: {} + "ordering": "unordered", + "version": "ics20-1", + "tags": {} } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kujira', - client_id: '07-tendermint-12', - connection_id: 'connection-7' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-12", + "connection_id": "connection-7" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-48', - connection_id: 'connection-29' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-48", + "connection_id": "connection-29" }, - 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-22', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-22", + "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-44', - port_id: 'transfer', - client_id: '07-tendermint-12', - connection_id: 'connection-7' + "chain_1": { + "channel_id": "channel-44", + "port_id": "transfer", + "client_id": "07-tendermint-12", + "connection_id": "connection-7" }, - chain_2: { - channel_id: 'channel-46', - port_id: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - client_id: '07-tendermint-48', - connection_id: 'connection-29' + "chain_2": { + "channel_id": "channel-46", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4", + "client_id": "07-tendermint-48", + "connection_id": "connection-29" }, - 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: 'kujira', - client_id: '07-tendermint-107', - connection_id: 'connection-77' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-107", + "connection_id": "connection-77" }, - chain_2: { - chain_name: 'sommelier', - client_id: '07-tendermint-12', - connection_id: 'connection-8' + "chain_2": { + "chain_name": "sommelier", + "client_id": "07-tendermint-12", + "connection_id": "connection-8" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-69', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-69", + "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: {} + "ordering": "unordered", + "version": "ics20-1", + "tags": {} } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kujira', - client_id: '07-tendermint-96', - connection_id: 'connection-68' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-96", + "connection_id": "connection-68" }, - chain_2: { - chain_name: 'stafihub', - client_id: '07-tendermint-4', - connection_id: 'connection-4' + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-63', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-63", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kujira', - client_id: '07-tendermint-9', - connection_id: 'connection-5' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-9", + "connection_id": "connection-5" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-178', - connection_id: 'connection-111' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-178", + "connection_id": "connection-111" }, - 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-49', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-49", + "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-37', - connection_id: 'connection-31' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-37", + "connection_id": "connection-31" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-5', - connection_id: 'connection-5' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-5", + "connection_id": "connection-5" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-32', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-32", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'kujira', - client_id: '07-tendermint-132', - connection_id: 'connection-100' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-132", + "connection_id": "connection-100" }, - chain_2: { - chain_name: 'teritori', - client_id: '07-tendermint-61', - connection_id: 'connection-38' + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-61", + "connection_id": "connection-38" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-89', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-89", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-30', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-30", + "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: 'kujira', - client_id: '07-tendermint-5', - connection_id: 'connection-3' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kujira", + "client_id": "07-tendermint-5", + "connection_id": "connection-3" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-11', - connection_id: 'connection-13' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-11", + "connection_id": "connection-13" }, - 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-10', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-10", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-36', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-36", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-28', - port_id: - 'wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au' + "chain_2": { + "channel_id": "channel-28", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" }, - 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: 'kyve', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kyve", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2757', - connection_id: 'connection-2274' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2757", + "connection_id": "connection-2274" }, - 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-767', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-767", + "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: 'lambda', - client_id: '07-tendermint-6', - connection_id: 'connection-5' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "lambda", + "client_id": "07-tendermint-6", + "connection_id": "connection-5" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2217', - connection_id: 'connection-1733' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2217", + "connection_id": "connection-1733" }, - 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-378', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-378", + "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: '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: 'mars', - client_id: '07-tendermint-64', - connection_id: 'connection-50' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "mars", + "client_id": "07-tendermint-64", + "connection_id": "connection-50" }, - chain_2: { - chain_name: 'neutron', - client_id: '07-tendermint-21', - connection_id: 'connection-21' + "chain_2": { + "chain_name": "neutron", + "client_id": "07-tendermint-21", + "connection_id": "connection-21" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-37', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-37", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'mars', - client_id: '07-tendermint-4', - connection_id: 'connection-3' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "mars", + "client_id": "07-tendermint-4", + "connection_id": "connection-3" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2602', - connection_id: 'connection-2114' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2602", + "connection_id": "connection-2114" }, - 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-557', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-557", + "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: 'mars', - client_id: '07-tendermint-10', - connection_id: 'connection-6' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "mars", + "client_id": "07-tendermint-10", + "connection_id": "connection-6" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-104', - connection_id: 'connection-91' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-104", + "connection_id": "connection-91" }, - 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-78', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-78", + "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: 'medasdigital', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "medasdigital", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2372', - connection_id: 'connection-1869' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2372", + "connection_id": "connection-1869" }, - 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-519', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-519", + "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: 'medasdigital', - client_id: '07-tendermint-4', - connection_id: 'connection-4' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "medasdigital", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" }, - chain_2: { - chain_name: 'sentinel', - client_id: '07-tendermint-110', - connection_id: 'connection-87' + "chain_2": { + "chain_name": "sentinel", + "client_id": "07-tendermint-110", + "connection_id": "connection-87" }, - 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-60', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-60", + "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: '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: 'migaloo', - client_id: '07-tendermint-113', - connection_id: 'connection-89' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "migaloo", + "client_id": "07-tendermint-113", + "connection_id": "connection-89" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-19', - connection_id: 'connection-28' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-19", + "connection_id": "connection-28" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-60', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-60", + "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: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'migaloo', - client_id: '07-tendermint-3', - connection_id: 'connection-11' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "migaloo", + "client_id": "07-tendermint-3", + "connection_id": "connection-11" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2669', - connection_id: 'connection-2171' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2669", + "connection_id": "connection-2171" }, - 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-642', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-642", + "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: 'migaloo', - client_id: '07-tendermint-6', - connection_id: 'connection-9' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "migaloo", + "client_id": "07-tendermint-6", + "connection_id": "connection-9" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-116', - connection_id: 'connection-87' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-116", + "connection_id": "connection-87" }, - 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-57', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-57", + "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: 'migaloo', - client_id: '07-tendermint-108', - connection_id: 'connection-84' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "migaloo", + "client_id": "07-tendermint-108", + "connection_id": "connection-84" }, - chain_2: { - chain_name: 'sei', - client_id: '07-tendermint-22', - connection_id: 'connection-13' + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-22", + "connection_id": "connection-13" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-57', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-57", + "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: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'migaloo', - client_id: '07-tendermint-118', - connection_id: 'connection-90' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "migaloo", + "client_id": "07-tendermint-118", + "connection_id": "connection-90" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-352', - connection_id: 'connection-287' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-352", + "connection_id": "connection-287" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-69', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-69", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-269', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-269", + "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: 'migaloo', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "migaloo", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-105', - connection_id: 'connection-93' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-105", + "connection_id": "connection-93" }, - 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-86', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-86", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-2', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-2", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-87', - port_id: - 'wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au' + "chain_2": { + "channel_id": "channel-87", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" }, - 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: 'migaloo', - client_id: '07-tendermint-104', - connection_id: 'connection-83' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "migaloo", + "client_id": "07-tendermint-104", + "connection_id": "connection-83" }, - chain_2: { - chain_name: 'umee', - client_id: '07-tendermint-234', - connection_id: 'connection-195' + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-234", + "connection_id": "connection-195" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-56', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-56", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-104', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-104", + "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: 'neutron', - client_id: '07-tendermint-40', - connection_id: 'connection-31' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-40", + "connection_id": "connection-31" }, - chain_2: { - chain_name: 'noble', - client_id: '07-tendermint-25', - connection_id: 'connection-34' + "chain_2": { + "chain_name": "noble", + "client_id": "07-tendermint-25", + "connection_id": "connection-34" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-30', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-30", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'neutron', - client_id: '07-tendermint-71', - connection_id: 'connection-50' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-71", + "connection_id": "connection-50" }, - chain_2: { - chain_name: 'nolus', - client_id: '07-tendermint-13', - connection_id: 'connection-11' + "chain_2": { + "chain_name": "nolus", + "client_id": "07-tendermint-13", + "connection_id": "connection-11" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-44', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-44", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-3839', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-3839", + "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: 'neutron', - client_id: '07-tendermint-64', - connection_id: 'connection-44' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-64", + "connection_id": "connection-44" }, - chain_2: { - chain_name: 'nomic', - client_id: '07-tendermint-3', - connection_id: 'connection-3' + "chain_2": { + "chain_name": "nomic", + "client_id": "07-tendermint-3", + "connection_id": "connection-3" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-42', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-42", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'neutron', - client_id: '07-tendermint-19', - connection_id: 'connection-18' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-19", + "connection_id": "connection-18" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2823', - connection_id: 'connection-2338' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2823", + "connection_id": "connection-2338" }, - 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-874', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-874", + "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: 'neutron', - client_id: '07-tendermint-73', - connection_id: 'connection-52' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-73", + "connection_id": "connection-52" }, - chain_2: { - chain_name: 'persistence', - client_id: '07-tendermint-161', - connection_id: 'connection-199' + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-161", + "connection_id": "connection-199" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-49', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-49", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-136', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-136", + "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: 'neutron', - client_id: '07-tendermint-75', - connection_id: 'connection-54' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-75", + "connection_id": "connection-54" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-19', - connection_id: 'connection-139' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-19", + "connection_id": "connection-139" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-57', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-57", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-104', - port_id: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4' + "chain_2": { + "channel_id": "channel-104", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" }, - 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: 'neutron', - client_id: '07-tendermint-37', - connection_id: 'connection-28' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-37", + "connection_id": "connection-28" }, - chain_2: { - chain_name: 'sei', - client_id: '07-tendermint-27', - connection_id: 'connection-16' + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-27", + "connection_id": "connection-16" }, - 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-15', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-15", + "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: 'neutron', - client_id: '07-tendermint-31', - connection_id: 'connection-23' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-31", + "connection_id": "connection-23" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-283', - connection_id: 'connection-211' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-283", + "connection_id": "connection-211" }, - 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-191', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-191", + "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: 'neutron', - client_id: '07-tendermint-18', - connection_id: 'connection-15' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-18", + "connection_id": "connection-15" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-125', - connection_id: 'connection-113' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-125", + "connection_id": "connection-113" }, - 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-123', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-123", + "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: 'neutron', - client_id: '07-tendermint-12', - connection_id: 'connection-9' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutron", + "client_id": "07-tendermint-12", + "connection_id": "connection-9" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-274', - connection_id: 'connection-192' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-274", + "connection_id": "connection-192" }, - 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-229', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-229", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-5', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-5", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-167', - port_id: - 'wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce' + "chain_2": { + "channel_id": "channel-167", + "port_id": "wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-6', - port_id: - 'wasm.neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07' + "chain_1": { + "channel_id": "channel-6", + "port_id": "wasm.neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07" }, - chain_2: { - channel_id: 'channel-168', - port_id: - 'wasm.terra1fkuhmq52pj08qqffp0elrvmzel8zz857x0pjjuuaar54mgcpe35s9km660' + "chain_2": { + "channel_id": "channel-168", + "port_id": "wasm.terra1fkuhmq52pj08qqffp0elrvmzel8zz857x0pjjuuaar54mgcpe35s9km660" }, - ordering: 'unordered', - version: 'astroport-ibc-v1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "astroport-ibc-v1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'noble', - client_id: '07-tendermint-68', - connection_id: 'connection-65' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-68", + "connection_id": "connection-65" }, - chain_2: { - chain_name: 'omniflixhub', - client_id: '07-tendermint-51', - connection_id: 'connection-49' + "chain_2": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-51", + "connection_id": "connection-49" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-44', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-44", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'noble', - client_id: '07-tendermint-0', - connection_id: 'connection-2' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-0", + "connection_id": "connection-2" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2704', - connection_id: 'connection-2241' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2704", + "connection_id": "connection-2241" }, - 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-750', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-750", + "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: 'noble', - client_id: '07-tendermint-61', - connection_id: 'connection-59' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-61", + "connection_id": "connection-59" }, - chain_2: { - chain_name: 'persistence', - client_id: '07-tendermint-160', - connection_id: 'connection-198' + "chain_2": { + "chain_name": "persistence", + "client_id": "07-tendermint-160", + "connection_id": "connection-198" }, - 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-132', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-132", + "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: 'noble', - client_id: '07-tendermint-24', - connection_id: 'connection-33' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-24", + "connection_id": "connection-33" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-170', - connection_id: 'connection-127' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-170", + "connection_id": "connection-127" }, - 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-88', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-88", + "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: 'noble', - client_id: '07-tendermint-45', - connection_id: 'connection-61' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-45", + "connection_id": "connection-61" }, - chain_2: { - chain_name: 'sei', - client_id: '07-tendermint-45', - connection_id: 'connection-77' + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-45", + "connection_id": "connection-77" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-39', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-39", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-45', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-45", + "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: 'noble', - client_id: '07-tendermint-16', - connection_id: 'connection-25' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-16", + "connection_id": "connection-25" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-287', - connection_id: 'connection-214' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-287", + "connection_id": "connection-214" }, - 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-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: 'noble', - client_id: '07-tendermint-76', - connection_id: 'connection-77' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-76", + "connection_id": "connection-77" }, - chain_2: { - chain_name: 'teritori', - client_id: '07-tendermint-97', - connection_id: 'connection-97' + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-97", + "connection_id": "connection-97" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-54', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-54", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'noble', - client_id: '07-tendermint-56', - connection_id: 'connection-54' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noble", + "client_id": "07-tendermint-56", + "connection_id": "connection-54" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-367', - connection_id: 'connection-302' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-367", + "connection_id": "connection-302" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-30', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-30", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-253', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-253", + "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: 'nois', - client_id: '07-tendermint-16', - connection_id: 'connection-10' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nois", + "client_id": "07-tendermint-16", + "connection_id": "connection-10" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-3017', - connection_id: 'connection-2507' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3017", + "connection_id": "connection-2507" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-37', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-8277', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-8277", + "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-11319', - port_id: - 'wasm.osmo1tvzr8ur0ynjhqftxpkl4qwel8ly7erhy6cu6ks426xmzf92vk6eqfp9wcl' + "chain_1": { + "channel_id": "channel-11319", + "port_id": "wasm.osmo1tvzr8ur0ynjhqftxpkl4qwel8ly7erhy6cu6ks426xmzf92vk6eqfp9wcl" }, - chain_2: { - channel_id: 'channel-41', - port_id: - 'wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp' + "chain_2": { + "channel_id": "channel-41", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" }, - ordering: 'unordered', - version: 'nois-v7', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'nois', - client_id: '07-tendermint-19', - connection_id: 'connection-11' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nois", + "client_id": "07-tendermint-19", + "connection_id": "connection-11" }, - chain_2: { - chain_name: 'sei', - client_id: '07-tendermint-106', - connection_id: 'connection-144' + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-106", + "connection_id": "connection-144" }, - 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-58', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-58", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-44', - port_id: - 'wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp' + "chain_1": { + "channel_id": "channel-44", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" }, - chain_2: { - channel_id: 'channel-59', - port_id: - 'wasm.sei1vxlzhn6qvf95syha2tgr0ct23sk5359s2vqzylgthuyy7kd7ql5qcxa4r0' + "chain_2": { + "channel_id": "channel-59", + "port_id": "wasm.sei1vxlzhn6qvf95syha2tgr0ct23sk5359s2vqzylgthuyy7kd7ql5qcxa4r0" }, - ordering: 'unordered', - version: 'nois-v7', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'nois', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nois", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-237', - connection_id: 'connection-171' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-237", + "connection_id": "connection-171" }, - 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-137', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-137", + "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-238', - port_id: - 'wasm.stars1mw5y55f53mnara7g3pn2pylxl8dpauscyn83c68442hz9nwktzrq8tjzyf' + "chain_1": { + "channel_id": "channel-238", + "port_id": "wasm.stars1mw5y55f53mnara7g3pn2pylxl8dpauscyn83c68442hz9nwktzrq8tjzyf" }, - chain_2: { - channel_id: 'channel-38', - port_id: - 'wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp' + "chain_2": { + "channel_id": "channel-38", + "port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" }, - ordering: 'unordered', - version: 'nois-v7', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'nolus', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nolus", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2791', - connection_id: 'connection-2289' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2791", + "connection_id": "connection-2289" }, - 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-783', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-783", + "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: 'nomic', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nomic", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-3010', - connection_id: 'connection-2501' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3010", + "connection_id": "connection-2501" }, - 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-6897', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-6897", + "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: 'nyx', - client_id: '07-tendermint-17', - connection_id: 'connection-8' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nyx", + "client_id": "07-tendermint-17", + "connection_id": "connection-8" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-3065', - connection_id: 'connection-2555' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3065", + "connection_id": "connection-2555" }, - 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-15464', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-15464", + "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: 'odin', - client_id: '07-tendermint-10', - connection_id: 'connection-9' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "odin", + "client_id": "07-tendermint-10", + "connection_id": "connection-9" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2007', - connection_id: 'connection-1551' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2007", + "connection_id": "connection-1551" }, - 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-258', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-258", + "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: 'okexchain', - client_id: '07-tendermint-100', - connection_id: 'connection-44' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "okexchain", + "client_id": "07-tendermint-100", + "connection_id": "connection-44" }, - chain_2: { - chain_name: 'vidulum', - client_id: '07-tendermint-5', - connection_id: 'connection-13' + "chain_2": { + "chain_name": "vidulum", + "client_id": "07-tendermint-5", + "connection_id": "connection-13" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-37', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-37", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'omniflixhub', - client_id: '07-tendermint-8', - connection_id: 'connection-8' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "omniflixhub", + "client_id": "07-tendermint-8", + "connection_id": "connection-8" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-1829', - connection_id: 'connection-1431' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1829", + "connection_id": "connection-1431" }, - 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-199', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-199", + "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: 'onomy', - client_id: '07-tendermint-0', - connection_id: 'connection-1' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "onomy", + "client_id": "07-tendermint-0", + "connection_id": "connection-1" }, - chain_2: { - chain_name: 'osmosis', - client_id: '07-tendermint-2405', - connection_id: 'connection-1892' + "chain_2": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2405", + "connection_id": "connection-1892" }, - 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-525', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-525", + "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: '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-2935', - connection_id: 'connection-2430' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2935", + "connection_id": "connection-2430" }, - chain_2: { - chain_name: 'passage', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "passage", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-2494', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-2494", + "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-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-2318', - connection_id: 'connection-1815' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2318", + "connection_id": "connection-1815" }, - chain_2: { - chain_name: 'planq', - client_id: '07-tendermint-3', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "planq", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-492', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-492", + "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-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-3059', - connection_id: 'connection-2554' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3059", + "connection_id": "connection-2554" }, - chain_2: { - chain_name: 'pundix', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "pundix", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-12618', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-12618", + "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-2703', - connection_id: 'connection-2240' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2703", + "connection_id": "connection-2240" }, - chain_2: { - chain_name: 'quasar', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "quasar", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-688', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-688", + "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: 'osmosis', - client_id: '07-tendermint-2400', - connection_id: 'connection-1889' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2400", + "connection_id": "connection-1889" }, - chain_2: { - chain_name: 'quicksilver', - client_id: '07-tendermint-6', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-6", + "connection_id": "connection-2" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-522', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-522", + "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-2831', - connection_id: 'connection-2345' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2831", + "connection_id": "connection-2345" }, - chain_2: { - chain_name: 'qwoyn', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "qwoyn", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-880', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-880", + "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-2849', - connection_id: 'connection-2361' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2849", + "connection_id": "connection-2361" }, - chain_2: { - chain_name: 'realio', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "realio", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-1424', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-1424", + "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: 'osmosis', - client_id: '07-tendermint-2173', - connection_id: 'connection-1692' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2173", + "connection_id": "connection-1692" }, - chain_2: { - chain_name: 'rebus', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "rebus", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-355', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-355", + "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-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" } }, { - chain_1: { - channel_id: 'channel-476', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-476", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-44', - port_id: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4' + "chain_2": { + "channel_id": "channel-44", + "port_id": "wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4" }, - 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-2790', - connection_id: 'connection-2288' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2790", + "connection_id": "connection-2288" }, - chain_2: { - chain_name: 'sei', - client_id: '07-tendermint-2', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-2", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-782', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-782", + "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-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-2972', - connection_id: 'connection-2468' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2972", + "connection_id": "connection-2468" }, - chain_2: { - chain_name: 'sge', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "sge", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-5485', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-5485", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'osmosis', - client_id: '07-tendermint-2680', - connection_id: 'connection-2182' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2680", + "connection_id": "connection-2182" }, - chain_2: { - chain_name: 'shareledger', - client_id: '07-tendermint-1', - connection_id: 'connection-5' + "chain_2": { + "chain_name": "shareledger", + "client_id": "07-tendermint-1", + "connection_id": "connection-5" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-647', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-647", + "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-3035', - connection_id: 'connection-2524' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-3035", + "connection_id": "connection-2524" }, - chain_2: { - chain_name: 'source', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "source", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-8945', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-8945", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'osmosis', - client_id: '07-tendermint-2969', - connection_id: 'connection-2465' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2969", + "connection_id": "connection-2465" }, - chain_2: { - chain_name: 'stafihub', - client_id: '07-tendermint-7', - connection_id: 'connection-6' + "chain_2": { + "chain_name": "stafihub", + "client_id": "07-tendermint-7", + "connection_id": "connection-6" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-5413', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-5413", + "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: { - 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-2119', - connection_id: 'connection-1657' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2119", + "connection_id": "connection-1657" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-1', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-1", + "connection_id": "connection-2" }, - 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-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: 'osmosis', - client_id: '07-tendermint-2192', - connection_id: 'connection-1710' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2192", + "connection_id": "connection-1710" }, - chain_2: { - chain_name: 'teritori', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-362', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-362", + "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-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-1979', - connection_id: 'connection-1536' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-1979", + "connection_id": "connection-1536" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-2', - connection_id: 'connection-3' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-251', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-251", + "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" } }, { - chain_1: { - channel_id: 'channel-559', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-559", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-85', - port_id: - 'wasm.terra1d90p5lacfxnqgjxjupu234lxnxyeu8fdeef4d0e0nqy3p30r7gss4myn9x' + "chain_2": { + "channel_id": "channel-85", + "port_id": "wasm.terra1d90p5lacfxnqgjxjupu234lxnxyeu8fdeef4d0e0nqy3p30r7gss4myn9x" }, - 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-341', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-341", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-26', - port_id: - 'wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au' + "chain_2": { + "channel_id": "channel-26", + "port_id": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au" }, - 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-2229', - connection_id: 'connection-1746' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2229", + "connection_id": "connection-1746" }, - chain_2: { - chain_name: 'unification', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "unification", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-382', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-382", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $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: 'osmosis', - client_id: '07-tendermint-2875', - connection_id: 'connection-2389' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosis", + "client_id": "07-tendermint-2875", + "connection_id": "connection-2389" }, - chain_2: { - chain_name: 'xpla', - client_id: '07-tendermint-11', - connection_id: 'connection-19' + "chain_2": { + "chain_name": "xpla", + "client_id": "07-tendermint-11", + "connection_id": "connection-19" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-1634', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-1634", + "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, - 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-96', - connection_id: 'connection-77' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "persistence", + "client_id": "07-tendermint-96", + "connection_id": "connection-77" }, - chain_2: { - chain_name: 'quicksilver', - client_id: '07-tendermint-15', - connection_id: 'connection-8' + "chain_2": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-15", + "connection_id": "connection-8" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-73', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-73", + "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: {} + "ordering": "unordered", + "version": "ics20-1", + "tags": {} } ] }, { - $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-106', - connection_id: 'connection-146' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "persistence", + "client_id": "07-tendermint-106", + "connection_id": "connection-146" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-126', - connection_id: 'connection-98' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-126", + "connection_id": "connection-98" }, - 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-64', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-64", + "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: 'persistence', - client_id: '07-tendermint-83', - connection_id: 'connection-71' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "persistence", + "client_id": "07-tendermint-83", + "connection_id": "connection-71" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-54', - connection_id: 'connection-33' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-54", + "connection_id": "connection-33" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-67', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-67", + "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: {} + "ordering": "unordered", + "version": "ics20-1", + "tags": {} } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'persistence', - client_id: '07-tendermint-105', - connection_id: 'connection-144' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "persistence", + "client_id": "07-tendermint-105", + "connection_id": "connection-144" }, - chain_2: { - chain_name: 'umee', - client_id: '07-tendermint-179', - connection_id: 'connection-119' + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-179", + "connection_id": "connection-119" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-81', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-81", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'planq', - client_id: '07-tendermint-545', - connection_id: 'connection-477' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "planq", + "client_id": "07-tendermint-545", + "connection_id": "connection-477" }, - chain_2: { - chain_name: 'sei', - client_id: '07-tendermint-21', - connection_id: 'connection-12' + "chain_2": { + "chain_name": "sei", + "client_id": "07-tendermint-21", + "connection_id": "connection-12" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-59', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-59", + "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: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'quicksilver', - client_id: '07-tendermint-16', - connection_id: 'connection-9' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-16", + "connection_id": "connection-9" }, - chain_2: { - chain_name: 'regen', - client_id: '07-tendermint-113', - connection_id: 'connection-102' + "chain_2": { + "chain_name": "regen", + "client_id": "07-tendermint-113", + "connection_id": "connection-102" }, - 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-61', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-61", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1' + "ordering": "unordered", + "version": "ics20-1" } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'quicksilver', - client_id: '07-tendermint-28', - connection_id: 'connection-14' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-28", + "connection_id": "connection-14" }, - chain_2: { - chain_name: 'secretnetwork', - client_id: '07-tendermint-138', - connection_id: 'connection-99' + "chain_2": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-138", + "connection_id": "connection-99" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-52', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-52", + "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' + "ordering": "unordered", + "version": "ics20-1" } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'quicksilver', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'stargaze', - client_id: '07-tendermint-225', - connection_id: 'connection-159' + "chain_2": { + "chain_name": "stargaze", + "client_id": "07-tendermint-225", + "connection_id": "connection-159" }, - 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-124', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-124", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1' + "ordering": "unordered", + "version": "ics20-1" } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'quicksilver', - client_id: '07-tendermint-27', - connection_id: 'connection-13' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "quicksilver", + "client_id": "07-tendermint-27", + "connection_id": "connection-13" }, - chain_2: { - chain_name: 'umee', - client_id: '07-tendermint-183', - connection_id: 'connection-122' + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-183", + "connection_id": "connection-122" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-49', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-49", + "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' + "ordering": "unordered", + "version": "ics20-1" } ] }, { - $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-75', - connection_id: 'connection-40' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-75", + "connection_id": "connection-40" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-37', - connection_id: 'connection-25' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-37", + "connection_id": "connection-25" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-37', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-37", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-40', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-40", + "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-192', - connection_id: 'connection-185' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "secretnetwork", + "client_id": "07-tendermint-192", + "connection_id": "connection-185" }, - chain_2: { - chain_name: 'teritori', - client_id: '07-tendermint-99', - connection_id: 'connection-122' + "chain_2": { + "chain_name": "teritori", + "client_id": "07-tendermint-99", + "connection_id": "connection-122" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-111', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-111", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-63', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-63", + "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: 'sei', - client_id: '07-tendermint-18', - connection_id: 'connection-11' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "sei", + "client_id": "07-tendermint-18", + "connection_id": "connection-11" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-130', - connection_id: 'connection-119' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-130", + "connection_id": "connection-119" }, - 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-149', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-149", + "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: '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": {} } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'sommelier', - client_id: '07-tendermint-60', - connection_id: 'connection-75' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "sommelier", + "client_id": "07-tendermint-60", + "connection_id": "connection-75" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-131', - connection_id: 'connection-122' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-131", + "connection_id": "connection-122" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-71', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-71", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-150', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-150", + "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: 'stafihub', - client_id: '07-tendermint-5', - connection_id: 'connection-5' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "stafihub", + "client_id": "07-tendermint-5", + "connection_id": "connection-5" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-317', - connection_id: 'connection-233' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-317", + "connection_id": "connection-233" }, - 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-204', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-204", + "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: 'stargaze', - client_id: '07-tendermint-195', - connection_id: 'connection-128' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "stargaze", + "client_id": "07-tendermint-195", + "connection_id": "connection-128" }, - chain_2: { - chain_name: 'stride', - client_id: '07-tendermint-30', - connection_id: 'connection-18' + "chain_2": { + "chain_name": "stride", + "client_id": "07-tendermint-30", + "connection_id": "connection-18" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-106', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-106", + "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: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'stargaze', - client_id: '07-tendermint-337', - connection_id: 'connection-275' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "stargaze", + "client_id": "07-tendermint-337", + "connection_id": "connection-275" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-405', - connection_id: 'connection-408' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-405", + "connection_id": "connection-408" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-266', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-266", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-324', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-324", + "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: 'stride', - client_id: '07-tendermint-51', - connection_id: 'connection-32' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "stride", + "client_id": "07-tendermint-51", + "connection_id": "connection-32" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-87', - connection_id: 'connection-72' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-87", + "connection_id": "connection-72" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-52', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-52", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-46', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-46", + "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: 'stride', - client_id: '07-tendermint-32', - connection_id: 'connection-20' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "stride", + "client_id": "07-tendermint-32", + "connection_id": "connection-20" }, - chain_2: { - chain_name: 'umee', - client_id: '07-tendermint-64', - connection_id: 'connection-45' + "chain_2": { + "chain_name": "umee", + "client_id": "07-tendermint-64", + "connection_id": "connection-45" }, - 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-34', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-34", + "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: 'terra', - client_id: '07-tendermint-235', - connection_id: 'connection-142' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "terra", + "client_id": "07-tendermint-235", + "connection_id": "connection-142" }, - chain_2: { - chain_name: 'terra2', - client_id: '07-tendermint-394', - connection_id: 'connection-384' + "chain_2": { + "chain_name": "terra2", + "client_id": "07-tendermint-394", + "connection_id": "connection-384" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-85', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-85", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-314', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-314", + "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: 'akashtestnet', - client_id: '07-tendermint-4', - connection_id: 'connection-4' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "akashtestnet", + "client_id": "07-tendermint-4", + "connection_id": "connection-4" }, - chain_2: { - chain_name: 'archwaytestnet', - client_id: '07-tendermint-45', - connection_id: 'connection-39' + "chain_2": { + "chain_name": "archwaytestnet", + "client_id": "07-tendermint-45", + "connection_id": "connection-39" }, - 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-34', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-34", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'akashtestnet', - client_id: '07-tendermint-6', - connection_id: 'connection-6' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "akashtestnet", + "client_id": "07-tendermint-6", + "connection_id": "connection-6" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1271', - connection_id: 'connection-1171' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1271", + "connection_id": "connection-1171" }, - 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-4171', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4171", + "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: 'archwaytestnet', - client_id: '07-tendermint-70', - connection_id: 'connection-60' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archwaytestnet", + "client_id": "07-tendermint-70", + "connection_id": "connection-60" }, - chain_2: { - chain_name: 'axelartestnet', - client_id: '07-tendermint-603', - connection_id: 'connection-418' + "chain_2": { + "chain_name": "axelartestnet", + "client_id": "07-tendermint-603", + "connection_id": "connection-418" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-50', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-50", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-305', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-305", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'archwaytestnet', - client_id: '07-tendermint-77', - connection_id: 'connection-73' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "archwaytestnet", + "client_id": "07-tendermint-77", + "connection_id": "connection-73" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1195', - connection_id: 'connection-1101' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1195", + "connection_id": "connection-1101" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-58', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-58", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-3938', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-3938", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'axelartestnet', - client_id: '07-tendermint-594', - connection_id: 'connection-410' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelartestnet", + "client_id": "07-tendermint-594", + "connection_id": "connection-410" }, - chain_2: { - chain_name: 'dydxtestnet', - client_id: '07-tendermint-6', - connection_id: 'connection-4' + "chain_2": { + "chain_name": "dydxtestnet", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-297', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-297", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'axelartestnet', - client_id: '07-tendermint-685', - connection_id: 'connection-538' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelartestnet", + "client_id": "07-tendermint-685", + "connection_id": "connection-538" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1270', - connection_id: 'connection-1169' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1270", + "connection_id": "connection-1169" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-339', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-339", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-4170', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4170", + "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: 'axelartestnet', - client_id: '07-tendermint-213', - connection_id: 'connection-151' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelartestnet", + "client_id": "07-tendermint-213", + "connection_id": "connection-151" }, - chain_2: { - chain_name: 'osmosistestnet4', - client_id: '07-tendermint-3319', - connection_id: 'connection-2807' + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-3319", + "connection_id": "connection-2807" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-135', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-135", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-1946', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-1946", + "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: 'axelartestnet', - client_id: '07-tendermint-522', - connection_id: 'connection-372' + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelartestnet", + "client_id": "07-tendermint-522", + "connection_id": "connection-372" }, - chain_2: { - chain_name: 'persistencetestnet2', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "chain_2": { + "chain_name": "persistencetestnet2", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-261', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-261", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'axelartestnet', - client_id: '07-tendermint-767', - connection_id: 'connection-581' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelartestnet", + "client_id": "07-tendermint-767", + "connection_id": "connection-581" }, - chain_2: { - chain_name: 'sagatestnet', - client_id: '07-tendermint-11', - connection_id: 'connection-10' + "chain_2": { + "chain_name": "sagatestnet", + "client_id": "07-tendermint-11", + "connection_id": "connection-10" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-370', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-370", + "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: 'axelartestnet', - client_id: '07-tendermint-585', - connection_id: 'connection-402' + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "axelartestnet", + "client_id": "07-tendermint-585", + "connection_id": "connection-402" }, - chain_2: { - chain_name: 'xiontestnet', - client_id: '07-tendermint-10', - connection_id: 'connection-5' + "chain_2": { + "chain_name": "xiontestnet", + "client_id": "07-tendermint-10", + "connection_id": "connection-5" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-283', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-283", + "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' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'celestiatestnet3', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestiatestnet3", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'cosmoshubtestnet', - client_id: '07-tendermint-2382', - connection_id: 'connection-2727' + "chain_2": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-2382", + "connection_id": "connection-2727" }, - 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-3152', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-3152", + "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: 'celestiatestnet3', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestiatestnet3", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'neutrontestnet', - client_id: '07-tendermint-113', - connection_id: 'connection-101' + "chain_2": { + "chain_name": "neutrontestnet", + "client_id": "07-tendermint-113", + "connection_id": "connection-101" }, - 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-160', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-160", + "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: 'celestiatestnet3', - client_id: '07-tendermint-118', - connection_id: 'connection-98' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "celestiatestnet3", + "client_id": "07-tendermint-118", + "connection_id": "connection-98" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1445', - connection_id: 'connection-1350' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1445", + "connection_id": "connection-1350" }, - 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-4370', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4370", + "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: 'chain4energytestnet', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "chain4energytestnet", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-104', - connection_id: 'connection-122' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-104", + "connection_id": "connection-122" }, - 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-111', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-111", + "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: 'composabletestnet', - client_id: '07-tendermint-23', - connection_id: 'connection-18' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "composabletestnet", + "client_id": "07-tendermint-23", + "connection_id": "connection-18" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-273', - connection_id: 'connection-237' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-273", + "connection_id": "connection-237" }, - 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-329', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-329", + "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: 'cosmoshubtestnet', - client_id: '07-tendermint-2073', - connection_id: 'connection-2418' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-2073", + "connection_id": "connection-2418" }, - chain_2: { - chain_name: 'empowertestnet', - client_id: '07-tendermint-3', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "empowertestnet", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-2765', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-2765", + "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 + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'cosmoshubtestnet', - client_id: '07-tendermint-2528', - connection_id: 'connection-2886' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-2528", + "connection_id": "connection-2886" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1262', - connection_id: 'connection-1157' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1262", + "connection_id": "connection-1157" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-3306', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-3306", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-4156', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4156", + "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: 'cosmoshubtestnet', - client_id: '07-tendermint-2100', - connection_id: 'connection-2447' + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "cosmoshubtestnet", + "client_id": "07-tendermint-2100", + "connection_id": "connection-2447" }, - chain_2: { - chain_name: 'persistencetestnet2', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "persistencetestnet2", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-2777', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-2777", + "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: 'doravotatestnet', - client_id: '07-tendermint-2', - connection_id: 'connection-3' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "doravotatestnet", + "client_id": "07-tendermint-2", + "connection_id": "connection-3" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-2', - connection_id: 'connection-611' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-2", + "connection_id": "connection-611" }, - 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-1260', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-1260", + "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: 'empowertestnet', - client_id: '07-tendermint-1', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "empowertestnet", + "client_id": "07-tendermint-1", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-146', - connection_id: 'connection-157' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-146", + "connection_id": "connection-157" }, - 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-155', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-155", + "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: 'empowertestnet', - client_id: '07-tendermint-2', - connection_id: 'connection-1' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "empowertestnet", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" }, - chain_2: { - chain_name: 'stargazetestnet', - client_id: '07-tendermint-450', - connection_id: 'connection-469' + "chain_2": { + "chain_name": "stargazetestnet", + "client_id": "07-tendermint-450", + "connection_id": "connection-469" }, - 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-459', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-459", + "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: 'entrypointtestnet', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "entrypointtestnet", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-930', - connection_id: 'connection-840' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-930", + "connection_id": "connection-840" }, - 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-1543', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-1543", + "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: 'impacthubtestnet', - client_id: '07-tendermint-53', - connection_id: 'connection-23' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "impacthubtestnet", + "client_id": "07-tendermint-53", + "connection_id": "connection-23" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1010', - connection_id: 'connection-911' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1010", + "connection_id": "connection-911" }, - 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-1637', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-1637", + "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: 'injectivetestnet', - client_id: '07-tendermint-123', - connection_id: 'connection-98' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injectivetestnet", + "client_id": "07-tendermint-123", + "connection_id": "connection-98" }, - chain_2: { - chain_name: 'noistestnet', - client_id: '07-tendermint-26', - connection_id: 'connection-13' + "chain_2": { + "chain_name": "noistestnet", + "client_id": "07-tendermint-26", + "connection_id": "connection-13" }, - 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-33', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-33", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-77', - port_id: 'wasm.inj14nendtsz0c40n7xtzwkjmdc8dkuz835jdydxhn' + "chain_1": { + "channel_id": "channel-77", + "port_id": "wasm.inj14nendtsz0c40n7xtzwkjmdc8dkuz835jdydxhn" }, - chain_2: { - channel_id: 'channel-36', - port_id: - 'wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc' + "chain_2": { + "channel_id": "channel-36", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" }, - ordering: 'unordered', - version: 'nois-v7', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'injectivetestnet', - client_id: '07-tendermint-189', - connection_id: 'connection-180' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "injectivetestnet", + "client_id": "07-tendermint-189", + "connection_id": "connection-180" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1273', - connection_id: 'connection-1173' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1273", + "connection_id": "connection-1173" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-129', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-129", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-4174', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4174", + "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: 'junotestnet', - client_id: '07-tendermint-170', - connection_id: 'connection-178' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "junotestnet", + "client_id": "07-tendermint-170", + "connection_id": "connection-178" }, - chain_2: { - chain_name: 'noistestnet', - client_id: '07-tendermint-16', - connection_id: 'connection-5' + "chain_2": { + "chain_name": "noistestnet", + "client_id": "07-tendermint-16", + "connection_id": "connection-5" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-877', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-877", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-69', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-69", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-198', - port_id: - 'wasm.juno1pjpntyvkxeuxd709jlupuea3xzxlzsfq574kqefv77fr2kcg4mcqvwqedq' + "chain_1": { + "channel_id": "channel-198", + "port_id": "wasm.juno1pjpntyvkxeuxd709jlupuea3xzxlzsfq574kqefv77fr2kcg4mcqvwqedq" }, - chain_2: { - channel_id: 'channel-17', - port_id: - 'wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc' + "chain_2": { + "channel_id": "channel-17", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" }, - ordering: 'unordered', - version: 'nois-v7', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'junotestnet', - client_id: '07-tendermint-682', - connection_id: 'connection-774' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "junotestnet", + "client_id": "07-tendermint-682", + "connection_id": "connection-774" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1268', - connection_id: 'connection-1166' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1268", + "connection_id": "connection-1166" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-811', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-811", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-4167', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4167", + "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: 'junotestnet', - client_id: '07-tendermint-135', - connection_id: 'connection-151' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "junotestnet", + "client_id": "07-tendermint-135", + "connection_id": "connection-151" }, - chain_2: { - chain_name: 'osmosistestnet4', - client_id: '07-tendermint-4413', - connection_id: 'connection-3814' + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-4413", + "connection_id": "connection-3814" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-140', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-140", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-3316', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-3316", + "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: 'kyvetestnet', - client_id: '07-tendermint-2', - connection_id: 'connection-2' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "kyvetestnet", + "client_id": "07-tendermint-2", + "connection_id": "connection-2" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-11', - connection_id: 'connection-11' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-11", + "connection_id": "connection-11" }, - 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-10', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-10", + "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: 'likecointestnet', - client_id: '07-tendermint-5', - connection_id: 'connection-2' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "likecointestnet", + "client_id": "07-tendermint-5", + "connection_id": "connection-2" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1431', - connection_id: 'connection-1336' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1431", + "connection_id": "connection-1336" }, - 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-4357', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4357", + "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: 'marstestnet', - client_id: '07-tendermint-31', - connection_id: 'connection-29' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "marstestnet", + "client_id": "07-tendermint-31", + "connection_id": "connection-29" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1269', - connection_id: 'connection-1167' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1269", + "connection_id": "connection-1167" }, - 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-4168', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4168", + "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: 'marstestnet', - client_id: '07-tendermint-3', - connection_id: 'connection-2' + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "marstestnet", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" }, - chain_2: { - chain_name: 'osmosistestnet4', - client_id: '07-tendermint-3419', - connection_id: 'connection-2887' + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-3419", + "connection_id": "connection-2887" }, - 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-2083', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-2083", + "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: 'neutrontestnet', - client_id: '07-tendermint-102', - connection_id: 'connection-93' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutrontestnet", + "client_id": "07-tendermint-102", + "connection_id": "connection-93" }, - chain_2: { - chain_name: 'noistestnet', - client_id: '07-tendermint-30', - connection_id: 'connection-17' + "chain_2": { + "chain_name": "noistestnet", + "client_id": "07-tendermint-30", + "connection_id": "connection-17" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-133', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-133", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-40', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-40", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-135', - port_id: - 'wasm.neutron1tw9sg9e4l09l5rjglf4qfvcft470ljk5grdq3luagysyk83nzfusw2sxgq' + "chain_1": { + "channel_id": "channel-135", + "port_id": "wasm.neutron1tw9sg9e4l09l5rjglf4qfvcft470ljk5grdq3luagysyk83nzfusw2sxgq" }, - chain_2: { - channel_id: 'channel-42', - port_id: - 'wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc' + "chain_2": { + "channel_id": "channel-42", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" }, - ordering: 'unordered', - version: 'nois-v7', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../../ibc_data.schema.json', - chain_1: { - chain_name: 'neutrontestnet', - client_id: '07-tendermint-143', - connection_id: 'connection-130' + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutrontestnet", + "client_id": "07-tendermint-143", + "connection_id": "connection-130" }, - chain_2: { - chain_name: 'nolustestnet', - client_id: '07-tendermint-2', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "nolustestnet", + "client_id": "07-tendermint-2", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-208', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-208", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-1990', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-1990", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'neutrontestnet', - client_id: '07-tendermint-133', - connection_id: 'connection-123' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "neutrontestnet", + "client_id": "07-tendermint-133", + "connection_id": "connection-123" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1272', - connection_id: 'connection-1172' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1272", + "connection_id": "connection-1172" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-196', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-196", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-4172', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4172", + "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: 'nobletestnet', - client_id: '07-tendermint-42', - connection_id: 'connection-31' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nobletestnet", + "client_id": "07-tendermint-42", + "connection_id": "connection-31" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-1374', - connection_id: 'connection-1275' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1374", + "connection_id": "connection-1275" }, - 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-4280', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-4280", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'nobletestnet', - client_id: '07-tendermint-6', - connection_id: 'connection-6' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "nobletestnet", + "client_id": "07-tendermint-6", + "connection_id": "connection-6" }, - chain_2: { - chain_name: 'osmosistestnet4', - client_id: '07-tendermint-4504', - connection_id: 'connection-3905' + "chain_2": { + "chain_name": "osmosistestnet4", + "client_id": "07-tendermint-4504", + "connection_id": "connection-3905" }, - 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-3651', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-3651", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../../ibc_data.schema.json', - chain_1: { - chain_name: 'nobletestnet', - client_id: '07-tendermint-25', - connection_id: 'connection-24' + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "nobletestnet", + "client_id": "07-tendermint-25", + "connection_id": "connection-24" }, - chain_2: { - chain_name: 'xiontestnet', - client_id: '07-tendermint-17', - connection_id: 'connection-9' + "chain_2": { + "chain_name": "xiontestnet", + "client_id": "07-tendermint-17", + "connection_id": "connection-9" }, - 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: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'noistestnet', - client_id: '07-tendermint-39', - connection_id: 'connection-23' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "noistestnet", + "client_id": "07-tendermint-39", + "connection_id": "connection-23" }, - chain_2: { - chain_name: 'stargazetestnet', - client_id: '07-tendermint-483', - connection_id: 'connection-500' + "chain_2": { + "chain_name": "stargazetestnet", + "client_id": "07-tendermint-483", + "connection_id": "connection-500" }, - 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-485', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-485", + "port_id": "transfer" }, - ordering: 'unordered', - version: 'ics20-1', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true } }, { - chain_1: { - channel_id: 'channel-49', - port_id: - 'wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc' + "chain_1": { + "channel_id": "channel-49", + "port_id": "wasm.nois1xwde9rzqk5u36fke0r9ddmtwvh43n4fv53c5vc462wz8xlnqjhls6d90xc" }, - chain_2: { - channel_id: 'channel-486', - port_id: - 'wasm.stars1h99p7u2tvz79jppjwdddmkplvcpnsh0pmatl7dqkmdhnkgx59y2q6s0x9s' + "chain_2": { + "channel_id": "channel-486", + "port_id": "wasm.stars1h99p7u2tvz79jppjwdddmkplvcpnsh0pmatl7dqkmdhnkgx59y2q6s0x9s" }, - ordering: 'unordered', - version: 'nois-v7', - tags: { - status: 'live', - preferred: true + "ordering": "unordered", + "version": "nois-v7", + "tags": { + "status": "live", + "preferred": true } } ] }, { - $schema: '../../ibc_data.schema.json', - chain_1: { - chain_name: 'nolustestnet', - client_id: '07-tendermint-0', - connection_id: 'connection-0' + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "nolustestnet", + "client_id": "07-tendermint-0", + "connection_id": "connection-0" }, - chain_2: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-102', - connection_id: 'connection-120' + "chain_2": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-102", + "connection_id": "connection-120" }, - 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-110', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-110", + "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: 'osmosistestnet', - client_id: '07-tendermint-595', - connection_id: 'connection-529' + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-595", + "connection_id": "connection-529" }, - chain_2: { - chain_name: 'persistencetestnet2', - client_id: '07-tendermint-3', - connection_id: 'connection-2' + "chain_2": { + "chain_name": "persistencetestnet2", + "client_id": "07-tendermint-3", + "connection_id": "connection-2" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-1037', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-1037", + "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: 'osmosistestnet', - client_id: '07-tendermint-19', - connection_id: 'connection-14' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-19", + "connection_id": "connection-14" }, - chain_2: { - chain_name: 'quicksilvertestnet', - client_id: '07-tendermint-6', - connection_id: 'connection-4' + "chain_2": { + "chain_name": "quicksilvertestnet", + "client_id": "07-tendermint-6", + "connection_id": "connection-4" }, - 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-20', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-20", + "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: 'osmosistestnet', - client_id: '07-tendermint-1448', - connection_id: 'connection-1552' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1448", + "connection_id": "connection-1552" }, - chain_2: { - chain_name: 'sagatestnet', - client_id: '07-tendermint-26', - connection_id: 'connection-21' + "chain_2": { + "chain_name": "sagatestnet", + "client_id": "07-tendermint-26", + "connection_id": "connection-21" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-4946', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-4946", + "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, - dex: 'osmosis' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live", + "preferred": true, + "dex": "osmosis" } } ] }, { - $schema: '../ibc_data.schema.json', - chain_1: { - chain_name: 'osmosistestnet', - client_id: '07-tendermint-965', - connection_id: 'connection-865' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-965", + "connection_id": "connection-865" }, - chain_2: { - chain_name: 'sgetestnet', - client_id: '07-tendermint-1', - connection_id: 'connection-1' + "chain_2": { + "chain_name": "sgetestnet", + "client_id": "07-tendermint-1", + "connection_id": "connection-1" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-1568', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-1568", + "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: 'osmosistestnet', - client_id: '07-tendermint-1274', - connection_id: 'connection-1175' + "$schema": "../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1274", + "connection_id": "connection-1175" }, - chain_2: { - chain_name: 'stargazetestnet', - client_id: '07-tendermint-621', - connection_id: 'connection-633' + "chain_2": { + "chain_name": "stargazetestnet", + "client_id": "07-tendermint-621", + "connection_id": "connection-633" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-4175', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-4175", + "port_id": "transfer" }, - chain_2: { - channel_id: 'channel-638', - port_id: 'transfer' + "chain_2": { + "channel_id": "channel-638", + "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: 'osmosistestnet', - client_id: '07-tendermint-1474', - connection_id: 'connection-1380' + "$schema": "../../ibc_data.schema.json", + "chain_1": { + "chain_name": "osmosistestnet", + "client_id": "07-tendermint-1474", + "connection_id": "connection-1380" }, - chain_2: { - chain_name: 'xiontestnet', - client_id: '07-tendermint-22', - connection_id: 'connection-12' + "chain_2": { + "chain_name": "xiontestnet", + "client_id": "07-tendermint-22", + "connection_id": "connection-12" }, - channels: [ + "channels": [ { - chain_1: { - channel_id: 'channel-4410', - port_id: 'transfer' + "chain_1": { + "channel_id": "channel-4410", + "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: { - status: 'live' + "ordering": "unordered", + "version": "ics20-1", + "tags": { + "status": "live" } } ] } ]; export default ibc; + \ No newline at end of file diff --git a/packages/utils/__tests__/__snapshots__/special.assets.test.js.snap b/packages/utils/__tests__/__snapshots__/special.assets.test.js.snap index 17023cd5f..f502622ad 100644 --- a/packages/utils/__tests__/__snapshots__/special.assets.test.js.snap +++ b/packages/utils/__tests__/__snapshots__/special.assets.test.js.snap @@ -1582,45 +1582,6 @@ exports[`getAssetLists 1`] = ` }, ], }, - { - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "base": "ibc/F41168F3687219CC7D83965B601BAAB30E61A6B4E268A5DE0C88522C700E6EB3", - "coingecko_id": "neta", - "denom_units": [ - { - "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - ], - "denom": "ibc/F41168F3687219CC7D83965B601BAAB30E61A6B4E268A5DE0C88522C700E6EB3", - "exponent": 0, - }, - { - "denom": "neta", - "exponent": 6, - }, - ], - "description": "The native token cw20 for Neta on Juno Chain", - "display": "neta", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png", - }, - "name": "Neta", - "symbol": "NETA", - "traces": [ - { - "chain": { - "channel_id": "channel-37", - }, - "counterparty": { - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "chain_name": "juno", - "channel_id": "channel-33", - }, - "type": "ibc", - }, - ], - "type_asset": "cw20", - }, { "base": "ibc/1D1218E270EC508BAF00AEA3EB24E6FA50C19D93AFABD406886633098D0B76B0", "coingecko_id": "kava",